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

Annotation of src/usr.bin/ssh/readconf.c, Revision 1.180

1.180   ! stevesk     1: /* $OpenBSD: readconf.c,v 1.179 2009/10/28 16:38:18 reyk Exp $ */
1.1       deraadt     2: /*
1.18      deraadt     3:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      4:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      5:  *                    All rights reserved
                      6:  * Functions for reading the configuration files.
1.26      markus      7:  *
1.46      deraadt     8:  * As far as I am concerned, the code I have written for this software
                      9:  * can be used freely for any purpose.  Any derived versions of this
                     10:  * software must be clearly marked as such, and if the derived work is
                     11:  * incompatible with the protocol description in the RFC file, it must be
                     12:  * called by a name other than "ssh" or "Secure Shell".
1.18      deraadt    13:  */
1.1       deraadt    14:
1.147     stevesk    15: #include <sys/types.h>
                     16: #include <sys/stat.h>
1.152     stevesk    17: #include <sys/socket.h>
                     18:
                     19: #include <netinet/in.h>
1.148     stevesk    20:
                     21: #include <ctype.h>
1.154     stevesk    22: #include <errno.h>
1.155     stevesk    23: #include <netdb.h>
1.159     deraadt    24: #include <signal.h>
1.158     stevesk    25: #include <stdio.h>
1.157     stevesk    26: #include <string.h>
1.156     stevesk    27: #include <unistd.h>
1.1       deraadt    28:
1.159     deraadt    29: #include "xmalloc.h"
1.1       deraadt    30: #include "ssh.h"
1.25      markus     31: #include "compat.h"
1.58      markus     32: #include "cipher.h"
1.55      markus     33: #include "pathnames.h"
1.58      markus     34: #include "log.h"
1.159     deraadt    35: #include "key.h"
1.58      markus     36: #include "readconf.h"
                     37: #include "match.h"
                     38: #include "misc.h"
1.159     deraadt    39: #include "buffer.h"
1.62      markus     40: #include "kex.h"
                     41: #include "mac.h"
1.1       deraadt    42:
                     43: /* Format of the configuration file:
                     44:
                     45:    # Configuration data is parsed as follows:
                     46:    #  1. command line options
                     47:    #  2. user-specific file
                     48:    #  3. system-wide file
                     49:    # Any configuration value is only changed the first time it is set.
                     50:    # Thus, host-specific definitions should be at the beginning of the
                     51:    # configuration file, and defaults at the end.
                     52:
                     53:    # Host-specific declarations.  These may override anything above.  A single
                     54:    # host may match multiple declarations; these are processed in the order
                     55:    # that they are given in.
                     56:
                     57:    Host *.ngs.fi ngs.fi
1.96      markus     58:      User foo
1.1       deraadt    59:
                     60:    Host fake.com
                     61:      HostName another.host.name.real.org
                     62:      User blaah
                     63:      Port 34289
                     64:      ForwardX11 no
                     65:      ForwardAgent no
                     66:
                     67:    Host books.com
                     68:      RemoteForward 9999 shadows.cs.hut.fi:9999
                     69:      Cipher 3des
                     70:
                     71:    Host fascist.blob.com
                     72:      Port 23123
                     73:      User tylonen
                     74:      PasswordAuthentication no
                     75:
                     76:    Host puukko.hut.fi
                     77:      User t35124p
                     78:      ProxyCommand ssh-proxy %h %p
                     79:
                     80:    Host *.fr
1.96      markus     81:      PublicKeyAuthentication no
1.1       deraadt    82:
                     83:    Host *.su
                     84:      Cipher none
                     85:      PasswordAuthentication no
                     86:
1.144     reyk       87:    Host vpn.fake.com
                     88:      Tunnel yes
                     89:      TunnelDevice 3
                     90:
1.1       deraadt    91:    # Defaults for various options
                     92:    Host *
                     93:      ForwardAgent no
1.50      markus     94:      ForwardX11 no
1.1       deraadt    95:      PasswordAuthentication yes
                     96:      RSAAuthentication yes
                     97:      RhostsRSAAuthentication yes
                     98:      StrictHostKeyChecking yes
1.126     markus     99:      TcpKeepAlive no
1.1       deraadt   100:      IdentityFile ~/.ssh/identity
                    101:      Port 22
                    102:      EscapeChar ~
                    103:
                    104: */
                    105:
                    106: /* Keyword tokens. */
                    107:
1.17      markus    108: typedef enum {
                    109:        oBadOption,
1.123     markus    110:        oForwardAgent, oForwardX11, oForwardX11Trusted, oGatewayPorts,
1.153     markus    111:        oExitOnForwardFailure,
1.100     deraadt   112:        oPasswordAuthentication, oRSAAuthentication,
1.59      markus    113:        oChallengeResponseAuthentication, oXAuthLocation,
1.17      markus    114:        oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
                    115:        oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
                    116:        oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
                    117:        oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
1.126     markus    118:        oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
1.62      markus    119:        oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
1.50      markus    120:        oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
1.67      markus    121:        oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
1.76      markus    122:        oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
1.90      stevesk   123:        oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
1.96      markus    124:        oClearAllForwardings, oNoHostAuthenticationForLocalhost,
1.111     djm       125:        oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
1.118     markus    126:        oAddressFamily, oGssAuthentication, oGssDelegateCreds,
1.128     markus    127:        oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
1.136     djm       128:        oSendEnv, oControlPath, oControlMaster, oHashKnownHosts,
1.144     reyk      129:        oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
1.179     reyk      130:        oVisualHostKey, oUseRoaming, oRDomain,
                    131:        oZeroKnowledgePasswordAuthentication, oDeprecated, oUnsupported
1.1       deraadt   132: } OpCodes;
                    133:
                    134: /* Textual representations of the tokens. */
                    135:
1.17      markus    136: static struct {
                    137:        const char *name;
                    138:        OpCodes opcode;
                    139: } keywords[] = {
                    140:        { "forwardagent", oForwardAgent },
                    141:        { "forwardx11", oForwardX11 },
1.123     markus    142:        { "forwardx11trusted", oForwardX11Trusted },
1.153     markus    143:        { "exitonforwardfailure", oExitOnForwardFailure },
1.34      markus    144:        { "xauthlocation", oXAuthLocation },
1.17      markus    145:        { "gatewayports", oGatewayPorts },
                    146:        { "useprivilegedport", oUsePrivilegedPort },
1.116     markus    147:        { "rhostsauthentication", oDeprecated },
1.17      markus    148:        { "passwordauthentication", oPasswordAuthentication },
1.48      markus    149:        { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
                    150:        { "kbdinteractivedevices", oKbdInteractiveDevices },
1.17      markus    151:        { "rsaauthentication", oRSAAuthentication },
1.50      markus    152:        { "pubkeyauthentication", oPubkeyAuthentication },
1.59      markus    153:        { "dsaauthentication", oPubkeyAuthentication },             /* alias */
1.72      markus    154:        { "rhostsrsaauthentication", oRhostsRSAAuthentication },
1.73      markus    155:        { "hostbasedauthentication", oHostbasedAuthentication },
1.59      markus    156:        { "challengeresponseauthentication", oChallengeResponseAuthentication },
                    157:        { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
                    158:        { "tisauthentication", oChallengeResponseAuthentication },  /* alias */
1.110     jakob     159:        { "kerberosauthentication", oUnsupported },
                    160:        { "kerberostgtpassing", oUnsupported },
                    161:        { "afstokenpassing", oUnsupported },
1.118     markus    162: #if defined(GSSAPI)
                    163:        { "gssapiauthentication", oGssAuthentication },
                    164:        { "gssapidelegatecredentials", oGssDelegateCreds },
                    165: #else
                    166:        { "gssapiauthentication", oUnsupported },
                    167:        { "gssapidelegatecredentials", oUnsupported },
                    168: #endif
1.96      markus    169:        { "fallbacktorsh", oDeprecated },
                    170:        { "usersh", oDeprecated },
1.17      markus    171:        { "identityfile", oIdentityFile },
1.174     stevesk   172:        { "identityfile2", oIdentityFile },                     /* obsolete */
1.128     markus    173:        { "identitiesonly", oIdentitiesOnly },
1.17      markus    174:        { "hostname", oHostName },
1.52      markus    175:        { "hostkeyalias", oHostKeyAlias },
1.17      markus    176:        { "proxycommand", oProxyCommand },
                    177:        { "port", oPort },
                    178:        { "cipher", oCipher },
1.25      markus    179:        { "ciphers", oCiphers },
1.62      markus    180:        { "macs", oMacs },
1.25      markus    181:        { "protocol", oProtocol },
1.17      markus    182:        { "remoteforward", oRemoteForward },
                    183:        { "localforward", oLocalForward },
                    184:        { "user", oUser },
                    185:        { "host", oHost },
                    186:        { "escapechar", oEscapeChar },
                    187:        { "globalknownhostsfile", oGlobalKnownHostsFile },
1.174     stevesk   188:        { "globalknownhostsfile2", oGlobalKnownHostsFile2 },    /* obsolete */
                    189:        { "userknownhostsfile", oUserKnownHostsFile },
1.81      markus    190:        { "userknownhostsfile2", oUserKnownHostsFile2 },        /* obsolete */
1.17      markus    191:        { "connectionattempts", oConnectionAttempts },
                    192:        { "batchmode", oBatchMode },
                    193:        { "checkhostip", oCheckHostIP },
                    194:        { "stricthostkeychecking", oStrictHostKeyChecking },
                    195:        { "compression", oCompression },
                    196:        { "compressionlevel", oCompressionLevel },
1.126     markus    197:        { "tcpkeepalive", oTCPKeepAlive },
                    198:        { "keepalive", oTCPKeepAlive },                         /* obsolete */
1.17      markus    199:        { "numberofpasswordprompts", oNumberOfPasswordPrompts },
                    200:        { "loglevel", oLogLevel },
1.71      markus    201:        { "dynamicforward", oDynamicForward },
1.67      markus    202:        { "preferredauthentications", oPreferredAuthentications },
1.76      markus    203:        { "hostkeyalgorithms", oHostKeyAlgorithms },
1.77      markus    204:        { "bindaddress", oBindAddress },
1.110     jakob     205: #ifdef SMARTCARD
1.85      jakob     206:        { "smartcarddevice", oSmartcardDevice },
1.110     jakob     207: #else
                    208:        { "smartcarddevice", oUnsupported },
                    209: #endif
1.93      deraadt   210:        { "clearallforwardings", oClearAllForwardings },
1.101     markus    211:        { "enablesshkeysign", oEnableSSHKeysign },
1.107     jakob     212:        { "verifyhostkeydns", oVerifyHostKeyDNS },
1.93      deraadt   213:        { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
1.105     markus    214:        { "rekeylimit", oRekeyLimit },
1.111     djm       215:        { "connecttimeout", oConnectTimeout },
1.112     djm       216:        { "addressfamily", oAddressFamily },
1.127     markus    217:        { "serveraliveinterval", oServerAliveInterval },
                    218:        { "serveralivecountmax", oServerAliveCountMax },
1.130     djm       219:        { "sendenv", oSendEnv },
1.132     djm       220:        { "controlpath", oControlPath },
                    221:        { "controlmaster", oControlMaster },
1.136     djm       222:        { "hashknownhosts", oHashKnownHosts },
1.144     reyk      223:        { "tunnel", oTunnel },
                    224:        { "tunneldevice", oTunnelDevice },
                    225:        { "localcommand", oLocalCommand },
                    226:        { "permitlocalcommand", oPermitLocalCommand },
1.167     grunk     227:        { "visualhostkey", oVisualHostKey },
1.177     andreas   228:        { "useroaming", oUseRoaming },
1.179     reyk      229:        { "rdomain", oRDomain },
1.171     djm       230: #ifdef JPAKE
                    231:        { "zeroknowledgepasswordauthentication",
                    232:            oZeroKnowledgePasswordAuthentication },
                    233: #else
                    234:        { "zeroknowledgepasswordauthentication", oUnsupported },
                    235: #endif
                    236:
1.92      stevesk   237:        { NULL, oBadOption }
1.13      markus    238: };
                    239:
1.19      markus    240: /*
                    241:  * Adds a local TCP/IP port forward to options.  Never returns if there is an
                    242:  * error.
                    243:  */
1.1       deraadt   244:
1.26      markus    245: void
1.135     djm       246: add_local_forward(Options *options, const Forward *newfwd)
1.1       deraadt   247: {
1.17      markus    248:        Forward *fwd;
                    249:        extern uid_t original_real_uid;
1.135     djm       250:        if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
1.64      millert   251:                fatal("Privileged ports can only be forwarded by root.");
1.17      markus    252:        if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
                    253:                fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
                    254:        fwd = &options->local_forwards[options->num_local_forwards++];
1.135     djm       255:
1.172     stevesk   256:        fwd->listen_host = newfwd->listen_host;
1.135     djm       257:        fwd->listen_port = newfwd->listen_port;
1.172     stevesk   258:        fwd->connect_host = newfwd->connect_host;
1.135     djm       259:        fwd->connect_port = newfwd->connect_port;
1.1       deraadt   260: }
                    261:
1.19      markus    262: /*
                    263:  * Adds a remote TCP/IP port forward to options.  Never returns if there is
                    264:  * an error.
                    265:  */
1.1       deraadt   266:
1.26      markus    267: void
1.135     djm       268: add_remote_forward(Options *options, const Forward *newfwd)
1.1       deraadt   269: {
1.17      markus    270:        Forward *fwd;
                    271:        if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
                    272:                fatal("Too many remote forwards (max %d).",
1.93      deraadt   273:                    SSH_MAX_FORWARDS_PER_DIRECTION);
1.17      markus    274:        fwd = &options->remote_forwards[options->num_remote_forwards++];
1.135     djm       275:
1.172     stevesk   276:        fwd->listen_host = newfwd->listen_host;
1.135     djm       277:        fwd->listen_port = newfwd->listen_port;
1.172     stevesk   278:        fwd->connect_host = newfwd->connect_host;
1.135     djm       279:        fwd->connect_port = newfwd->connect_port;
1.1       deraadt   280: }
                    281:
1.90      stevesk   282: static void
                    283: clear_forwardings(Options *options)
                    284: {
                    285:        int i;
                    286:
1.135     djm       287:        for (i = 0; i < options->num_local_forwards; i++) {
1.138     dtucker   288:                if (options->local_forwards[i].listen_host != NULL)
                    289:                        xfree(options->local_forwards[i].listen_host);
1.135     djm       290:                xfree(options->local_forwards[i].connect_host);
                    291:        }
1.90      stevesk   292:        options->num_local_forwards = 0;
1.135     djm       293:        for (i = 0; i < options->num_remote_forwards; i++) {
1.138     dtucker   294:                if (options->remote_forwards[i].listen_host != NULL)
                    295:                        xfree(options->remote_forwards[i].listen_host);
1.135     djm       296:                xfree(options->remote_forwards[i].connect_host);
                    297:        }
1.90      stevesk   298:        options->num_remote_forwards = 0;
1.145     reyk      299:        options->tun_open = SSH_TUNMODE_NO;
1.90      stevesk   300: }
                    301:
1.19      markus    302: /*
1.70      stevesk   303:  * Returns the number of the token pointed to by cp or oBadOption.
1.19      markus    304:  */
1.1       deraadt   305:
1.26      markus    306: static OpCodes
1.17      markus    307: parse_token(const char *cp, const char *filename, int linenum)
1.1       deraadt   308: {
1.51      markus    309:        u_int i;
1.1       deraadt   310:
1.17      markus    311:        for (i = 0; keywords[i].name; i++)
1.20      markus    312:                if (strcasecmp(cp, keywords[i].name) == 0)
1.17      markus    313:                        return keywords[i].opcode;
                    314:
1.75      stevesk   315:        error("%s: line %d: Bad configuration option: %s",
                    316:            filename, linenum, cp);
1.17      markus    317:        return oBadOption;
1.1       deraadt   318: }
                    319:
1.19      markus    320: /*
                    321:  * Processes a single option line as used in the configuration files. This
                    322:  * only sets those values that have not already been set.
                    323:  */
1.102     markus    324: #define WHITESPACE " \t\r\n"
1.1       deraadt   325:
1.14      markus    326: int
                    327: process_config_line(Options *options, const char *host,
1.17      markus    328:                    char *line, const char *filename, int linenum,
                    329:                    int *activep)
1.1       deraadt   330: {
1.135     djm       331:        char *s, **charptr, *endofnumber, *keyword, *arg, *arg2, fwdarg[256];
1.146     djm       332:        int opcode, *intptr, value, value2, scale;
1.164     dtucker   333:        LogLevel *log_level_ptr;
1.146     djm       334:        long long orig, val64;
1.102     markus    335:        size_t len;
1.135     djm       336:        Forward fwd;
1.106     djm       337:
                    338:        /* Strip trailing whitespace */
1.139     deraadt   339:        for (len = strlen(line) - 1; len > 0; len--) {
1.106     djm       340:                if (strchr(WHITESPACE, line[len]) == NULL)
                    341:                        break;
                    342:                line[len] = '\0';
                    343:        }
1.1       deraadt   344:
1.42      provos    345:        s = line;
                    346:        /* Get the keyword. (Each line is supposed to begin with a keyword). */
1.149     djm       347:        if ((keyword = strdelim(&s)) == NULL)
                    348:                return 0;
1.42      provos    349:        /* Ignore leading whitespace. */
                    350:        if (*keyword == '\0')
1.43      markus    351:                keyword = strdelim(&s);
1.56      deraadt   352:        if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
1.17      markus    353:                return 0;
                    354:
1.38      provos    355:        opcode = parse_token(keyword, filename, linenum);
1.17      markus    356:
                    357:        switch (opcode) {
                    358:        case oBadOption:
1.19      markus    359:                /* don't panic, but count bad options */
                    360:                return -1;
1.17      markus    361:                /* NOTREACHED */
1.111     djm       362:        case oConnectTimeout:
                    363:                intptr = &options->connection_timeout;
1.127     markus    364: parse_time:
1.111     djm       365:                arg = strdelim(&s);
                    366:                if (!arg || *arg == '\0')
                    367:                        fatal("%s line %d: missing time value.",
                    368:                            filename, linenum);
                    369:                if ((value = convtime(arg)) == -1)
                    370:                        fatal("%s line %d: invalid time value.",
                    371:                            filename, linenum);
1.160     dtucker   372:                if (*activep && *intptr == -1)
1.111     djm       373:                        *intptr = value;
                    374:                break;
                    375:
1.17      markus    376:        case oForwardAgent:
                    377:                intptr = &options->forward_agent;
                    378: parse_flag:
1.42      provos    379:                arg = strdelim(&s);
1.40      ho        380:                if (!arg || *arg == '\0')
1.17      markus    381:                        fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
                    382:                value = 0;      /* To avoid compiler warning... */
1.38      provos    383:                if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1.17      markus    384:                        value = 1;
1.38      provos    385:                else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1.17      markus    386:                        value = 0;
                    387:                else
                    388:                        fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
                    389:                if (*activep && *intptr == -1)
                    390:                        *intptr = value;
                    391:                break;
                    392:
                    393:        case oForwardX11:
                    394:                intptr = &options->forward_x11;
                    395:                goto parse_flag;
                    396:
1.123     markus    397:        case oForwardX11Trusted:
                    398:                intptr = &options->forward_x11_trusted;
                    399:                goto parse_flag;
                    400:
1.17      markus    401:        case oGatewayPorts:
                    402:                intptr = &options->gateway_ports;
                    403:                goto parse_flag;
                    404:
1.153     markus    405:        case oExitOnForwardFailure:
                    406:                intptr = &options->exit_on_forward_failure;
                    407:                goto parse_flag;
                    408:
1.17      markus    409:        case oUsePrivilegedPort:
                    410:                intptr = &options->use_privileged_port;
                    411:                goto parse_flag;
                    412:
                    413:        case oPasswordAuthentication:
                    414:                intptr = &options->password_authentication;
                    415:                goto parse_flag;
                    416:
1.171     djm       417:        case oZeroKnowledgePasswordAuthentication:
                    418:                intptr = &options->zero_knowledge_password_authentication;
                    419:                goto parse_flag;
                    420:
1.48      markus    421:        case oKbdInteractiveAuthentication:
                    422:                intptr = &options->kbd_interactive_authentication;
                    423:                goto parse_flag;
                    424:
                    425:        case oKbdInteractiveDevices:
                    426:                charptr = &options->kbd_interactive_devices;
                    427:                goto parse_string;
                    428:
1.50      markus    429:        case oPubkeyAuthentication:
                    430:                intptr = &options->pubkey_authentication;
1.30      markus    431:                goto parse_flag;
                    432:
1.17      markus    433:        case oRSAAuthentication:
                    434:                intptr = &options->rsa_authentication;
                    435:                goto parse_flag;
                    436:
                    437:        case oRhostsRSAAuthentication:
                    438:                intptr = &options->rhosts_rsa_authentication;
                    439:                goto parse_flag;
                    440:
1.72      markus    441:        case oHostbasedAuthentication:
                    442:                intptr = &options->hostbased_authentication;
                    443:                goto parse_flag;
                    444:
1.59      markus    445:        case oChallengeResponseAuthentication:
1.78      markus    446:                intptr = &options->challenge_response_authentication;
1.17      markus    447:                goto parse_flag;
1.108     jakob     448:
1.118     markus    449:        case oGssAuthentication:
                    450:                intptr = &options->gss_authentication;
                    451:                goto parse_flag;
                    452:
                    453:        case oGssDelegateCreds:
                    454:                intptr = &options->gss_deleg_creds;
                    455:                goto parse_flag;
                    456:
1.17      markus    457:        case oBatchMode:
                    458:                intptr = &options->batch_mode;
                    459:                goto parse_flag;
                    460:
                    461:        case oCheckHostIP:
                    462:                intptr = &options->check_host_ip;
1.167     grunk     463:                goto parse_flag;
1.17      markus    464:
1.107     jakob     465:        case oVerifyHostKeyDNS:
                    466:                intptr = &options->verify_host_key_dns;
1.125     jakob     467:                goto parse_yesnoask;
1.107     jakob     468:
1.17      markus    469:        case oStrictHostKeyChecking:
                    470:                intptr = &options->strict_host_key_checking;
1.125     jakob     471: parse_yesnoask:
1.42      provos    472:                arg = strdelim(&s);
1.40      ho        473:                if (!arg || *arg == '\0')
1.60      stevesk   474:                        fatal("%.200s line %d: Missing yes/no/ask argument.",
1.93      deraadt   475:                            filename, linenum);
1.17      markus    476:                value = 0;      /* To avoid compiler warning... */
1.38      provos    477:                if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1.17      markus    478:                        value = 1;
1.38      provos    479:                else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1.17      markus    480:                        value = 0;
1.38      provos    481:                else if (strcmp(arg, "ask") == 0)
1.17      markus    482:                        value = 2;
                    483:                else
                    484:                        fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
                    485:                if (*activep && *intptr == -1)
                    486:                        *intptr = value;
                    487:                break;
                    488:
                    489:        case oCompression:
                    490:                intptr = &options->compression;
                    491:                goto parse_flag;
                    492:
1.126     markus    493:        case oTCPKeepAlive:
                    494:                intptr = &options->tcp_keep_alive;
1.17      markus    495:                goto parse_flag;
                    496:
1.91      markus    497:        case oNoHostAuthenticationForLocalhost:
                    498:                intptr = &options->no_host_authentication_for_localhost;
                    499:                goto parse_flag;
                    500:
1.17      markus    501:        case oNumberOfPasswordPrompts:
                    502:                intptr = &options->number_of_password_prompts;
                    503:                goto parse_int;
                    504:
                    505:        case oCompressionLevel:
                    506:                intptr = &options->compression_level;
                    507:                goto parse_int;
                    508:
1.105     markus    509:        case oRekeyLimit:
                    510:                arg = strdelim(&s);
                    511:                if (!arg || *arg == '\0')
                    512:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    513:                if (arg[0] < '0' || arg[0] > '9')
                    514:                        fatal("%.200s line %d: Bad number.", filename, linenum);
1.146     djm       515:                orig = val64 = strtoll(arg, &endofnumber, 10);
1.105     markus    516:                if (arg == endofnumber)
                    517:                        fatal("%.200s line %d: Bad number.", filename, linenum);
                    518:                switch (toupper(*endofnumber)) {
1.146     djm       519:                case '\0':
                    520:                        scale = 1;
                    521:                        break;
1.105     markus    522:                case 'K':
1.146     djm       523:                        scale = 1<<10;
1.105     markus    524:                        break;
                    525:                case 'M':
1.146     djm       526:                        scale = 1<<20;
1.105     markus    527:                        break;
                    528:                case 'G':
1.146     djm       529:                        scale = 1<<30;
1.105     markus    530:                        break;
1.146     djm       531:                default:
                    532:                        fatal("%.200s line %d: Invalid RekeyLimit suffix",
                    533:                            filename, linenum);
1.105     markus    534:                }
1.146     djm       535:                val64 *= scale;
                    536:                /* detect integer wrap and too-large limits */
1.165     djm       537:                if ((val64 / scale) != orig || val64 > UINT_MAX)
1.146     djm       538:                        fatal("%.200s line %d: RekeyLimit too large",
                    539:                            filename, linenum);
                    540:                if (val64 < 16)
                    541:                        fatal("%.200s line %d: RekeyLimit too small",
                    542:                            filename, linenum);
1.165     djm       543:                if (*activep && options->rekey_limit == -1)
                    544:                        options->rekey_limit = (u_int32_t)val64;
1.105     markus    545:                break;
                    546:
1.17      markus    547:        case oIdentityFile:
1.42      provos    548:                arg = strdelim(&s);
1.40      ho        549:                if (!arg || *arg == '\0')
1.17      markus    550:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    551:                if (*activep) {
1.50      markus    552:                        intptr = &options->num_identity_files;
1.27      markus    553:                        if (*intptr >= SSH_MAX_IDENTITY_FILES)
1.17      markus    554:                                fatal("%.200s line %d: Too many identity files specified (max %d).",
1.93      deraadt   555:                                    filename, linenum, SSH_MAX_IDENTITY_FILES);
1.161     stevesk   556:                        charptr = &options->identity_files[*intptr];
1.38      provos    557:                        *charptr = xstrdup(arg);
1.27      markus    558:                        *intptr = *intptr + 1;
1.17      markus    559:                }
                    560:                break;
                    561:
1.34      markus    562:        case oXAuthLocation:
                    563:                charptr=&options->xauth_location;
                    564:                goto parse_string;
                    565:
1.17      markus    566:        case oUser:
                    567:                charptr = &options->user;
                    568: parse_string:
1.42      provos    569:                arg = strdelim(&s);
1.40      ho        570:                if (!arg || *arg == '\0')
1.17      markus    571:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    572:                if (*activep && *charptr == NULL)
1.38      provos    573:                        *charptr = xstrdup(arg);
1.17      markus    574:                break;
                    575:
                    576:        case oGlobalKnownHostsFile:
                    577:                charptr = &options->system_hostfile;
                    578:                goto parse_string;
                    579:
                    580:        case oUserKnownHostsFile:
                    581:                charptr = &options->user_hostfile;
                    582:                goto parse_string;
                    583:
1.27      markus    584:        case oGlobalKnownHostsFile2:
                    585:                charptr = &options->system_hostfile2;
                    586:                goto parse_string;
                    587:
                    588:        case oUserKnownHostsFile2:
                    589:                charptr = &options->user_hostfile2;
                    590:                goto parse_string;
                    591:
1.17      markus    592:        case oHostName:
                    593:                charptr = &options->hostname;
                    594:                goto parse_string;
                    595:
1.52      markus    596:        case oHostKeyAlias:
                    597:                charptr = &options->host_key_alias;
                    598:                goto parse_string;
                    599:
1.67      markus    600:        case oPreferredAuthentications:
                    601:                charptr = &options->preferred_authentications;
                    602:                goto parse_string;
                    603:
1.77      markus    604:        case oBindAddress:
                    605:                charptr = &options->bind_address;
                    606:                goto parse_string;
                    607:
1.85      jakob     608:        case oSmartcardDevice:
1.86      markus    609:                charptr = &options->smartcard_device;
                    610:                goto parse_string;
1.85      jakob     611:
1.17      markus    612:        case oProxyCommand:
1.144     reyk      613:                charptr = &options->proxy_command;
                    614: parse_command:
1.113     markus    615:                if (s == NULL)
                    616:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.102     markus    617:                len = strspn(s, WHITESPACE "=");
1.17      markus    618:                if (*activep && *charptr == NULL)
1.102     markus    619:                        *charptr = xstrdup(s + len);
1.17      markus    620:                return 0;
                    621:
                    622:        case oPort:
                    623:                intptr = &options->port;
                    624: parse_int:
1.42      provos    625:                arg = strdelim(&s);
1.40      ho        626:                if (!arg || *arg == '\0')
1.17      markus    627:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.38      provos    628:                if (arg[0] < '0' || arg[0] > '9')
1.17      markus    629:                        fatal("%.200s line %d: Bad number.", filename, linenum);
1.21      markus    630:
                    631:                /* Octal, decimal, or hex format? */
1.38      provos    632:                value = strtol(arg, &endofnumber, 0);
                    633:                if (arg == endofnumber)
1.21      markus    634:                        fatal("%.200s line %d: Bad number.", filename, linenum);
1.17      markus    635:                if (*activep && *intptr == -1)
                    636:                        *intptr = value;
                    637:                break;
                    638:
                    639:        case oConnectionAttempts:
                    640:                intptr = &options->connection_attempts;
                    641:                goto parse_int;
                    642:
                    643:        case oCipher:
                    644:                intptr = &options->cipher;
1.42      provos    645:                arg = strdelim(&s);
1.40      ho        646:                if (!arg || *arg == '\0')
1.32      markus    647:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.38      provos    648:                value = cipher_number(arg);
1.17      markus    649:                if (value == -1)
                    650:                        fatal("%.200s line %d: Bad cipher '%s'.",
1.93      deraadt   651:                            filename, linenum, arg ? arg : "<NONE>");
1.17      markus    652:                if (*activep && *intptr == -1)
                    653:                        *intptr = value;
                    654:                break;
                    655:
1.25      markus    656:        case oCiphers:
1.42      provos    657:                arg = strdelim(&s);
1.40      ho        658:                if (!arg || *arg == '\0')
1.32      markus    659:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.38      provos    660:                if (!ciphers_valid(arg))
1.31      markus    661:                        fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
1.93      deraadt   662:                            filename, linenum, arg ? arg : "<NONE>");
1.25      markus    663:                if (*activep && options->ciphers == NULL)
1.38      provos    664:                        options->ciphers = xstrdup(arg);
1.25      markus    665:                break;
                    666:
1.62      markus    667:        case oMacs:
                    668:                arg = strdelim(&s);
                    669:                if (!arg || *arg == '\0')
                    670:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    671:                if (!mac_valid(arg))
                    672:                        fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
1.93      deraadt   673:                            filename, linenum, arg ? arg : "<NONE>");
1.62      markus    674:                if (*activep && options->macs == NULL)
                    675:                        options->macs = xstrdup(arg);
                    676:                break;
                    677:
1.76      markus    678:        case oHostKeyAlgorithms:
                    679:                arg = strdelim(&s);
                    680:                if (!arg || *arg == '\0')
                    681:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    682:                if (!key_names_valid2(arg))
                    683:                        fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
1.93      deraadt   684:                            filename, linenum, arg ? arg : "<NONE>");
1.76      markus    685:                if (*activep && options->hostkeyalgorithms == NULL)
                    686:                        options->hostkeyalgorithms = xstrdup(arg);
                    687:                break;
                    688:
1.25      markus    689:        case oProtocol:
                    690:                intptr = &options->protocol;
1.42      provos    691:                arg = strdelim(&s);
1.40      ho        692:                if (!arg || *arg == '\0')
1.32      markus    693:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.38      provos    694:                value = proto_spec(arg);
1.25      markus    695:                if (value == SSH_PROTO_UNKNOWN)
                    696:                        fatal("%.200s line %d: Bad protocol spec '%s'.",
1.93      deraadt   697:                            filename, linenum, arg ? arg : "<NONE>");
1.25      markus    698:                if (*activep && *intptr == SSH_PROTO_UNKNOWN)
                    699:                        *intptr = value;
                    700:                break;
                    701:
1.17      markus    702:        case oLogLevel:
1.164     dtucker   703:                log_level_ptr = &options->log_level;
1.42      provos    704:                arg = strdelim(&s);
1.38      provos    705:                value = log_level_number(arg);
1.95      markus    706:                if (value == SYSLOG_LEVEL_NOT_SET)
1.64      millert   707:                        fatal("%.200s line %d: unsupported log level '%s'",
1.93      deraadt   708:                            filename, linenum, arg ? arg : "<NONE>");
1.164     dtucker   709:                if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
                    710:                        *log_level_ptr = (LogLevel) value;
1.17      markus    711:                break;
                    712:
1.88      stevesk   713:        case oLocalForward:
1.17      markus    714:        case oRemoteForward:
1.168     stevesk   715:        case oDynamicForward:
1.42      provos    716:                arg = strdelim(&s);
1.135     djm       717:                if (arg == NULL || *arg == '\0')
1.88      stevesk   718:                        fatal("%.200s line %d: Missing port argument.",
                    719:                            filename, linenum);
1.135     djm       720:
1.168     stevesk   721:                if (opcode == oLocalForward ||
                    722:                    opcode == oRemoteForward) {
                    723:                        arg2 = strdelim(&s);
                    724:                        if (arg2 == NULL || *arg2 == '\0')
                    725:                                fatal("%.200s line %d: Missing target argument.",
                    726:                                    filename, linenum);
1.135     djm       727:
1.168     stevesk   728:                        /* construct a string for parse_forward */
                    729:                        snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
                    730:                } else if (opcode == oDynamicForward) {
                    731:                        strlcpy(fwdarg, arg, sizeof(fwdarg));
                    732:                }
                    733:
                    734:                if (parse_forward(&fwd, fwdarg,
1.176     djm       735:                    opcode == oDynamicForward ? 1 : 0,
                    736:                    opcode == oRemoteForward ? 1 : 0) == 0)
1.88      stevesk   737:                        fatal("%.200s line %d: Bad forwarding specification.",
                    738:                            filename, linenum);
1.135     djm       739:
1.88      stevesk   740:                if (*activep) {
1.168     stevesk   741:                        if (opcode == oLocalForward ||
                    742:                            opcode == oDynamicForward)
1.135     djm       743:                                add_local_forward(options, &fwd);
1.88      stevesk   744:                        else if (opcode == oRemoteForward)
1.135     djm       745:                                add_remote_forward(options, &fwd);
1.88      stevesk   746:                }
1.17      markus    747:                break;
1.71      markus    748:
1.90      stevesk   749:        case oClearAllForwardings:
                    750:                intptr = &options->clear_forwardings;
                    751:                goto parse_flag;
                    752:
1.17      markus    753:        case oHost:
                    754:                *activep = 0;
1.42      provos    755:                while ((arg = strdelim(&s)) != NULL && *arg != '\0')
1.38      provos    756:                        if (match_pattern(host, arg)) {
                    757:                                debug("Applying options for %.100s", arg);
1.17      markus    758:                                *activep = 1;
                    759:                                break;
                    760:                        }
1.42      provos    761:                /* Avoid garbage check below, as strdelim is done. */
1.17      markus    762:                return 0;
                    763:
                    764:        case oEscapeChar:
                    765:                intptr = &options->escape_char;
1.42      provos    766:                arg = strdelim(&s);
1.40      ho        767:                if (!arg || *arg == '\0')
1.17      markus    768:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
1.38      provos    769:                if (arg[0] == '^' && arg[2] == 0 &&
1.51      markus    770:                    (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
                    771:                        value = (u_char) arg[1] & 31;
1.38      provos    772:                else if (strlen(arg) == 1)
1.51      markus    773:                        value = (u_char) arg[0];
1.38      provos    774:                else if (strcmp(arg, "none") == 0)
1.79      stevesk   775:                        value = SSH_ESCAPECHAR_NONE;
1.17      markus    776:                else {
                    777:                        fatal("%.200s line %d: Bad escape character.",
1.93      deraadt   778:                            filename, linenum);
1.17      markus    779:                        /* NOTREACHED */
                    780:                        value = 0;      /* Avoid compiler warning. */
                    781:                }
                    782:                if (*activep && *intptr == -1)
                    783:                        *intptr = value;
1.112     djm       784:                break;
                    785:
                    786:        case oAddressFamily:
                    787:                arg = strdelim(&s);
1.140     markus    788:                if (!arg || *arg == '\0')
                    789:                        fatal("%s line %d: missing address family.",
                    790:                            filename, linenum);
1.114     djm       791:                intptr = &options->address_family;
1.112     djm       792:                if (strcasecmp(arg, "inet") == 0)
1.114     djm       793:                        value = AF_INET;
1.112     djm       794:                else if (strcasecmp(arg, "inet6") == 0)
1.114     djm       795:                        value = AF_INET6;
1.112     djm       796:                else if (strcasecmp(arg, "any") == 0)
1.114     djm       797:                        value = AF_UNSPEC;
1.112     djm       798:                else
                    799:                        fatal("Unsupported AddressFamily \"%s\"", arg);
1.114     djm       800:                if (*activep && *intptr == -1)
                    801:                        *intptr = value;
1.17      markus    802:                break;
                    803:
1.101     markus    804:        case oEnableSSHKeysign:
                    805:                intptr = &options->enable_ssh_keysign;
                    806:                goto parse_flag;
                    807:
1.128     markus    808:        case oIdentitiesOnly:
                    809:                intptr = &options->identities_only;
                    810:                goto parse_flag;
                    811:
1.127     markus    812:        case oServerAliveInterval:
                    813:                intptr = &options->server_alive_interval;
                    814:                goto parse_time;
                    815:
                    816:        case oServerAliveCountMax:
                    817:                intptr = &options->server_alive_count_max;
                    818:                goto parse_int;
                    819:
1.130     djm       820:        case oSendEnv:
                    821:                while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
                    822:                        if (strchr(arg, '=') != NULL)
                    823:                                fatal("%s line %d: Invalid environment name.",
                    824:                                    filename, linenum);
1.137     djm       825:                        if (!*activep)
                    826:                                continue;
1.130     djm       827:                        if (options->num_send_env >= MAX_SEND_ENV)
                    828:                                fatal("%s line %d: too many send env.",
                    829:                                    filename, linenum);
                    830:                        options->send_env[options->num_send_env++] =
                    831:                            xstrdup(arg);
                    832:                }
                    833:                break;
                    834:
1.132     djm       835:        case oControlPath:
                    836:                charptr = &options->control_path;
                    837:                goto parse_string;
                    838:
                    839:        case oControlMaster:
                    840:                intptr = &options->control_master;
1.141     djm       841:                arg = strdelim(&s);
                    842:                if (!arg || *arg == '\0')
                    843:                        fatal("%.200s line %d: Missing ControlMaster argument.",
                    844:                            filename, linenum);
                    845:                value = 0;      /* To avoid compiler warning... */
                    846:                if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
                    847:                        value = SSHCTL_MASTER_YES;
                    848:                else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
                    849:                        value = SSHCTL_MASTER_NO;
                    850:                else if (strcmp(arg, "auto") == 0)
                    851:                        value = SSHCTL_MASTER_AUTO;
                    852:                else if (strcmp(arg, "ask") == 0)
                    853:                        value = SSHCTL_MASTER_ASK;
                    854:                else if (strcmp(arg, "autoask") == 0)
                    855:                        value = SSHCTL_MASTER_AUTO_ASK;
                    856:                else
                    857:                        fatal("%.200s line %d: Bad ControlMaster argument.",
                    858:                            filename, linenum);
                    859:                if (*activep && *intptr == -1)
                    860:                        *intptr = value;
                    861:                break;
1.132     djm       862:
1.136     djm       863:        case oHashKnownHosts:
                    864:                intptr = &options->hash_known_hosts;
                    865:                goto parse_flag;
                    866:
1.144     reyk      867:        case oTunnel:
                    868:                intptr = &options->tun_open;
1.145     reyk      869:                arg = strdelim(&s);
                    870:                if (!arg || *arg == '\0')
                    871:                        fatal("%s line %d: Missing yes/point-to-point/"
                    872:                            "ethernet/no argument.", filename, linenum);
                    873:                value = 0;      /* silence compiler */
                    874:                if (strcasecmp(arg, "ethernet") == 0)
                    875:                        value = SSH_TUNMODE_ETHERNET;
                    876:                else if (strcasecmp(arg, "point-to-point") == 0)
                    877:                        value = SSH_TUNMODE_POINTOPOINT;
                    878:                else if (strcasecmp(arg, "yes") == 0)
                    879:                        value = SSH_TUNMODE_DEFAULT;
                    880:                else if (strcasecmp(arg, "no") == 0)
                    881:                        value = SSH_TUNMODE_NO;
                    882:                else
                    883:                        fatal("%s line %d: Bad yes/point-to-point/ethernet/"
                    884:                            "no argument: %s", filename, linenum, arg);
                    885:                if (*activep)
                    886:                        *intptr = value;
                    887:                break;
1.144     reyk      888:
                    889:        case oTunnelDevice:
                    890:                arg = strdelim(&s);
                    891:                if (!arg || *arg == '\0')
                    892:                        fatal("%.200s line %d: Missing argument.", filename, linenum);
                    893:                value = a2tun(arg, &value2);
1.145     reyk      894:                if (value == SSH_TUNID_ERR)
1.144     reyk      895:                        fatal("%.200s line %d: Bad tun device.", filename, linenum);
                    896:                if (*activep) {
                    897:                        options->tun_local = value;
                    898:                        options->tun_remote = value2;
                    899:                }
                    900:                break;
                    901:
                    902:        case oLocalCommand:
                    903:                charptr = &options->local_command;
                    904:                goto parse_command;
                    905:
                    906:        case oPermitLocalCommand:
                    907:                intptr = &options->permit_local_command;
                    908:                goto parse_flag;
                    909:
1.167     grunk     910:        case oVisualHostKey:
                    911:                intptr = &options->visual_host_key;
                    912:                goto parse_flag;
                    913:
1.177     andreas   914:        case oUseRoaming:
                    915:                intptr = &options->use_roaming;
                    916:                goto parse_flag;
                    917:
1.179     reyk      918:        case oRDomain:
                    919:                arg = strdelim(&s);
                    920:                if (!arg || *arg == '\0')
                    921:                        fatal("%.200s line %d: Missing argument.",
                    922:                            filename, linenum);
1.180   ! stevesk   923:                value = a2rdomain(arg);
1.179     reyk      924:                if (value == -1)
                    925:                        fatal("%.200s line %d: Bad rdomain.",
                    926:                            filename, linenum);
                    927:                if (*activep)
                    928:                        options->rdomain = value;
                    929:                break;
                    930:
1.96      markus    931:        case oDeprecated:
1.98      markus    932:                debug("%s line %d: Deprecated option \"%s\"",
1.96      markus    933:                    filename, linenum, keyword);
1.98      markus    934:                return 0;
1.96      markus    935:
1.110     jakob     936:        case oUnsupported:
                    937:                error("%s line %d: Unsupported option \"%s\"",
                    938:                    filename, linenum, keyword);
                    939:                return 0;
                    940:
1.17      markus    941:        default:
                    942:                fatal("process_config_line: Unimplemented opcode %d", opcode);
                    943:        }
                    944:
                    945:        /* Check that there is no garbage at end of line. */
1.57      djm       946:        if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1.39      ho        947:                fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
1.142     djm       948:                    filename, linenum, arg);
1.39      ho        949:        }
1.17      markus    950:        return 0;
1.1       deraadt   951: }
                    952:
                    953:
1.19      markus    954: /*
                    955:  * Reads the config file and modifies the options accordingly.  Options
                    956:  * should already be initialized before this call.  This never returns if
1.89      stevesk   957:  * there is an error.  If the file does not exist, this returns 0.
1.19      markus    958:  */
1.1       deraadt   959:
1.89      stevesk   960: int
1.134     deraadt   961: read_config_file(const char *filename, const char *host, Options *options,
1.129     djm       962:     int checkperm)
1.1       deraadt   963: {
1.17      markus    964:        FILE *f;
                    965:        char line[1024];
                    966:        int active, linenum;
                    967:        int bad_options = 0;
                    968:
1.129     djm       969:        if ((f = fopen(filename, "r")) == NULL)
1.89      stevesk   970:                return 0;
1.129     djm       971:
                    972:        if (checkperm) {
                    973:                struct stat sb;
1.134     deraadt   974:
1.131     dtucker   975:                if (fstat(fileno(f), &sb) == -1)
1.129     djm       976:                        fatal("fstat %s: %s", filename, strerror(errno));
                    977:                if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
1.131     dtucker   978:                    (sb.st_mode & 022) != 0))
1.129     djm       979:                        fatal("Bad owner or permissions on %s", filename);
                    980:        }
1.17      markus    981:
                    982:        debug("Reading configuration data %.200s", filename);
                    983:
1.19      markus    984:        /*
                    985:         * Mark that we are now processing the options.  This flag is turned
                    986:         * on/off by Host specifications.
                    987:         */
1.17      markus    988:        active = 1;
                    989:        linenum = 0;
                    990:        while (fgets(line, sizeof(line), f)) {
                    991:                /* Update line number counter. */
                    992:                linenum++;
                    993:                if (process_config_line(options, host, line, filename, linenum, &active) != 0)
                    994:                        bad_options++;
                    995:        }
                    996:        fclose(f);
                    997:        if (bad_options > 0)
1.64      millert   998:                fatal("%s: terminating, %d bad configuration options",
1.93      deraadt   999:                    filename, bad_options);
1.89      stevesk  1000:        return 1;
1.1       deraadt  1001: }
                   1002:
1.19      markus   1003: /*
                   1004:  * Initializes options to special values that indicate that they have not yet
                   1005:  * been set.  Read_config_file will only set options with this value. Options
                   1006:  * are processed in the following order: command line, user config file,
                   1007:  * system config file.  Last, fill_default_options is called.
                   1008:  */
1.1       deraadt  1009:
1.26      markus   1010: void
1.17      markus   1011: initialize_options(Options * options)
1.1       deraadt  1012: {
1.17      markus   1013:        memset(options, 'X', sizeof(*options));
                   1014:        options->forward_agent = -1;
                   1015:        options->forward_x11 = -1;
1.123     markus   1016:        options->forward_x11_trusted = -1;
1.153     markus   1017:        options->exit_on_forward_failure = -1;
1.34      markus   1018:        options->xauth_location = NULL;
1.17      markus   1019:        options->gateway_ports = -1;
                   1020:        options->use_privileged_port = -1;
                   1021:        options->rsa_authentication = -1;
1.50      markus   1022:        options->pubkey_authentication = -1;
1.78      markus   1023:        options->challenge_response_authentication = -1;
1.118     markus   1024:        options->gss_authentication = -1;
                   1025:        options->gss_deleg_creds = -1;
1.17      markus   1026:        options->password_authentication = -1;
1.48      markus   1027:        options->kbd_interactive_authentication = -1;
                   1028:        options->kbd_interactive_devices = NULL;
1.17      markus   1029:        options->rhosts_rsa_authentication = -1;
1.72      markus   1030:        options->hostbased_authentication = -1;
1.17      markus   1031:        options->batch_mode = -1;
                   1032:        options->check_host_ip = -1;
                   1033:        options->strict_host_key_checking = -1;
                   1034:        options->compression = -1;
1.126     markus   1035:        options->tcp_keep_alive = -1;
1.17      markus   1036:        options->compression_level = -1;
                   1037:        options->port = -1;
1.114     djm      1038:        options->address_family = -1;
1.17      markus   1039:        options->connection_attempts = -1;
1.111     djm      1040:        options->connection_timeout = -1;
1.17      markus   1041:        options->number_of_password_prompts = -1;
                   1042:        options->cipher = -1;
1.25      markus   1043:        options->ciphers = NULL;
1.62      markus   1044:        options->macs = NULL;
1.76      markus   1045:        options->hostkeyalgorithms = NULL;
1.25      markus   1046:        options->protocol = SSH_PROTO_UNKNOWN;
1.17      markus   1047:        options->num_identity_files = 0;
                   1048:        options->hostname = NULL;
1.52      markus   1049:        options->host_key_alias = NULL;
1.17      markus   1050:        options->proxy_command = NULL;
                   1051:        options->user = NULL;
                   1052:        options->escape_char = -1;
                   1053:        options->system_hostfile = NULL;
                   1054:        options->user_hostfile = NULL;
1.27      markus   1055:        options->system_hostfile2 = NULL;
                   1056:        options->user_hostfile2 = NULL;
1.17      markus   1057:        options->num_local_forwards = 0;
                   1058:        options->num_remote_forwards = 0;
1.90      stevesk  1059:        options->clear_forwardings = -1;
1.95      markus   1060:        options->log_level = SYSLOG_LEVEL_NOT_SET;
1.67      markus   1061:        options->preferred_authentications = NULL;
1.77      markus   1062:        options->bind_address = NULL;
1.86      markus   1063:        options->smartcard_device = NULL;
1.101     markus   1064:        options->enable_ssh_keysign = - 1;
1.91      markus   1065:        options->no_host_authentication_for_localhost = - 1;
1.128     markus   1066:        options->identities_only = - 1;
1.105     markus   1067:        options->rekey_limit = - 1;
1.107     jakob    1068:        options->verify_host_key_dns = -1;
1.127     markus   1069:        options->server_alive_interval = -1;
                   1070:        options->server_alive_count_max = -1;
1.130     djm      1071:        options->num_send_env = 0;
1.132     djm      1072:        options->control_path = NULL;
                   1073:        options->control_master = -1;
1.136     djm      1074:        options->hash_known_hosts = -1;
1.144     reyk     1075:        options->tun_open = -1;
                   1076:        options->tun_local = -1;
                   1077:        options->tun_remote = -1;
                   1078:        options->local_command = NULL;
                   1079:        options->permit_local_command = -1;
1.177     andreas  1080:        options->use_roaming = -1;
1.179     reyk     1081:        options->rdomain = -1;
1.167     grunk    1082:        options->visual_host_key = -1;
1.171     djm      1083:        options->zero_knowledge_password_authentication = -1;
1.1       deraadt  1084: }
                   1085:
1.19      markus   1086: /*
                   1087:  * Called after processing other sources of option data, this fills those
                   1088:  * options for which no value has been specified with their default values.
                   1089:  */
1.1       deraadt  1090:
1.26      markus   1091: void
1.17      markus   1092: fill_default_options(Options * options)
1.1       deraadt  1093: {
1.61      deraadt  1094:        int len;
                   1095:
1.17      markus   1096:        if (options->forward_agent == -1)
1.33      markus   1097:                options->forward_agent = 0;
1.17      markus   1098:        if (options->forward_x11 == -1)
1.23      markus   1099:                options->forward_x11 = 0;
1.123     markus   1100:        if (options->forward_x11_trusted == -1)
                   1101:                options->forward_x11_trusted = 0;
1.153     markus   1102:        if (options->exit_on_forward_failure == -1)
                   1103:                options->exit_on_forward_failure = 0;
1.34      markus   1104:        if (options->xauth_location == NULL)
1.80      markus   1105:                options->xauth_location = _PATH_XAUTH;
1.17      markus   1106:        if (options->gateway_ports == -1)
                   1107:                options->gateway_ports = 0;
                   1108:        if (options->use_privileged_port == -1)
1.65      markus   1109:                options->use_privileged_port = 0;
1.17      markus   1110:        if (options->rsa_authentication == -1)
                   1111:                options->rsa_authentication = 1;
1.50      markus   1112:        if (options->pubkey_authentication == -1)
                   1113:                options->pubkey_authentication = 1;
1.78      markus   1114:        if (options->challenge_response_authentication == -1)
1.83      markus   1115:                options->challenge_response_authentication = 1;
1.118     markus   1116:        if (options->gss_authentication == -1)
1.122     markus   1117:                options->gss_authentication = 0;
1.118     markus   1118:        if (options->gss_deleg_creds == -1)
                   1119:                options->gss_deleg_creds = 0;
1.17      markus   1120:        if (options->password_authentication == -1)
                   1121:                options->password_authentication = 1;
1.48      markus   1122:        if (options->kbd_interactive_authentication == -1)
1.59      markus   1123:                options->kbd_interactive_authentication = 1;
1.17      markus   1124:        if (options->rhosts_rsa_authentication == -1)
1.99      stevesk  1125:                options->rhosts_rsa_authentication = 0;
1.72      markus   1126:        if (options->hostbased_authentication == -1)
                   1127:                options->hostbased_authentication = 0;
1.17      markus   1128:        if (options->batch_mode == -1)
                   1129:                options->batch_mode = 0;
                   1130:        if (options->check_host_ip == -1)
                   1131:                options->check_host_ip = 1;
                   1132:        if (options->strict_host_key_checking == -1)
                   1133:                options->strict_host_key_checking = 2;  /* 2 is default */
                   1134:        if (options->compression == -1)
                   1135:                options->compression = 0;
1.126     markus   1136:        if (options->tcp_keep_alive == -1)
                   1137:                options->tcp_keep_alive = 1;
1.17      markus   1138:        if (options->compression_level == -1)
                   1139:                options->compression_level = 6;
                   1140:        if (options->port == -1)
                   1141:                options->port = 0;      /* Filled in ssh_connect. */
1.114     djm      1142:        if (options->address_family == -1)
                   1143:                options->address_family = AF_UNSPEC;
1.17      markus   1144:        if (options->connection_attempts == -1)
1.84      markus   1145:                options->connection_attempts = 1;
1.17      markus   1146:        if (options->number_of_password_prompts == -1)
                   1147:                options->number_of_password_prompts = 3;
                   1148:        /* Selected in ssh_login(). */
                   1149:        if (options->cipher == -1)
                   1150:                options->cipher = SSH_CIPHER_NOT_SET;
1.31      markus   1151:        /* options->ciphers, default set in myproposals.h */
1.62      markus   1152:        /* options->macs, default set in myproposals.h */
1.76      markus   1153:        /* options->hostkeyalgorithms, default set in myproposals.h */
1.25      markus   1154:        if (options->protocol == SSH_PROTO_UNKNOWN)
1.178     markus   1155:                options->protocol = SSH_PROTO_2;
1.17      markus   1156:        if (options->num_identity_files == 0) {
1.50      markus   1157:                if (options->protocol & SSH_PROTO_1) {
1.61      deraadt  1158:                        len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
1.50      markus   1159:                        options->identity_files[options->num_identity_files] =
1.61      deraadt  1160:                            xmalloc(len);
                   1161:                        snprintf(options->identity_files[options->num_identity_files++],
                   1162:                            len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
1.50      markus   1163:                }
                   1164:                if (options->protocol & SSH_PROTO_2) {
1.63      deraadt  1165:                        len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
                   1166:                        options->identity_files[options->num_identity_files] =
                   1167:                            xmalloc(len);
                   1168:                        snprintf(options->identity_files[options->num_identity_files++],
                   1169:                            len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
                   1170:
1.61      deraadt  1171:                        len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
1.50      markus   1172:                        options->identity_files[options->num_identity_files] =
1.61      deraadt  1173:                            xmalloc(len);
                   1174:                        snprintf(options->identity_files[options->num_identity_files++],
                   1175:                            len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
1.50      markus   1176:                }
1.27      markus   1177:        }
1.17      markus   1178:        if (options->escape_char == -1)
                   1179:                options->escape_char = '~';
                   1180:        if (options->system_hostfile == NULL)
1.55      markus   1181:                options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
1.17      markus   1182:        if (options->user_hostfile == NULL)
1.55      markus   1183:                options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
1.27      markus   1184:        if (options->system_hostfile2 == NULL)
1.55      markus   1185:                options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
1.27      markus   1186:        if (options->user_hostfile2 == NULL)
1.55      markus   1187:                options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
1.95      markus   1188:        if (options->log_level == SYSLOG_LEVEL_NOT_SET)
1.54      markus   1189:                options->log_level = SYSLOG_LEVEL_INFO;
1.90      stevesk  1190:        if (options->clear_forwardings == 1)
                   1191:                clear_forwardings(options);
1.91      markus   1192:        if (options->no_host_authentication_for_localhost == - 1)
                   1193:                options->no_host_authentication_for_localhost = 0;
1.128     markus   1194:        if (options->identities_only == -1)
                   1195:                options->identities_only = 0;
1.101     markus   1196:        if (options->enable_ssh_keysign == -1)
                   1197:                options->enable_ssh_keysign = 0;
1.105     markus   1198:        if (options->rekey_limit == -1)
                   1199:                options->rekey_limit = 0;
1.107     jakob    1200:        if (options->verify_host_key_dns == -1)
                   1201:                options->verify_host_key_dns = 0;
1.127     markus   1202:        if (options->server_alive_interval == -1)
                   1203:                options->server_alive_interval = 0;
                   1204:        if (options->server_alive_count_max == -1)
                   1205:                options->server_alive_count_max = 3;
1.132     djm      1206:        if (options->control_master == -1)
                   1207:                options->control_master = 0;
1.136     djm      1208:        if (options->hash_known_hosts == -1)
                   1209:                options->hash_known_hosts = 0;
1.144     reyk     1210:        if (options->tun_open == -1)
1.145     reyk     1211:                options->tun_open = SSH_TUNMODE_NO;
                   1212:        if (options->tun_local == -1)
                   1213:                options->tun_local = SSH_TUNID_ANY;
                   1214:        if (options->tun_remote == -1)
                   1215:                options->tun_remote = SSH_TUNID_ANY;
1.144     reyk     1216:        if (options->permit_local_command == -1)
                   1217:                options->permit_local_command = 0;
1.177     andreas  1218:        if (options->use_roaming == -1)
                   1219:                options->use_roaming = 1;
1.167     grunk    1220:        if (options->visual_host_key == -1)
                   1221:                options->visual_host_key = 0;
1.171     djm      1222:        if (options->zero_knowledge_password_authentication == -1)
                   1223:                options->zero_knowledge_password_authentication = 0;
1.144     reyk     1224:        /* options->local_command should not be set by default */
1.17      markus   1225:        /* options->proxy_command should not be set by default */
                   1226:        /* options->user will be set in the main program if appropriate */
                   1227:        /* options->hostname will be set in the main program if appropriate */
1.52      markus   1228:        /* options->host_key_alias should not be set by default */
1.67      markus   1229:        /* options->preferred_authentications will be set in ssh */
1.179     reyk     1230:        /* options->rdomain should not be set by default */
1.135     djm      1231: }
                   1232:
                   1233: /*
                   1234:  * parse_forward
                   1235:  * parses a string containing a port forwarding specification of the form:
1.168     stevesk  1236:  *   dynamicfwd == 0
1.135     djm      1237:  *     [listenhost:]listenport:connecthost:connectport
1.168     stevesk  1238:  *   dynamicfwd == 1
                   1239:  *     [listenhost:]listenport
1.135     djm      1240:  * returns number of arguments parsed or zero on error
                   1241:  */
                   1242: int
1.176     djm      1243: parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
1.135     djm      1244: {
                   1245:        int i;
                   1246:        char *p, *cp, *fwdarg[4];
                   1247:
                   1248:        memset(fwd, '\0', sizeof(*fwd));
                   1249:
                   1250:        cp = p = xstrdup(fwdspec);
                   1251:
                   1252:        /* skip leading spaces */
1.162     tedu     1253:        while (isspace(*cp))
1.135     djm      1254:                cp++;
                   1255:
                   1256:        for (i = 0; i < 4; ++i)
                   1257:                if ((fwdarg[i] = hpdelim(&cp)) == NULL)
                   1258:                        break;
                   1259:
1.170     stevesk  1260:        /* Check for trailing garbage */
1.135     djm      1261:        if (cp != NULL)
                   1262:                i = 0;  /* failure */
                   1263:
                   1264:        switch (i) {
1.168     stevesk  1265:        case 1:
                   1266:                fwd->listen_host = NULL;
                   1267:                fwd->listen_port = a2port(fwdarg[0]);
                   1268:                fwd->connect_host = xstrdup("socks");
                   1269:                break;
                   1270:
                   1271:        case 2:
                   1272:                fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
                   1273:                fwd->listen_port = a2port(fwdarg[1]);
                   1274:                fwd->connect_host = xstrdup("socks");
                   1275:                break;
                   1276:
1.135     djm      1277:        case 3:
                   1278:                fwd->listen_host = NULL;
                   1279:                fwd->listen_port = a2port(fwdarg[0]);
                   1280:                fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
                   1281:                fwd->connect_port = a2port(fwdarg[2]);
                   1282:                break;
                   1283:
                   1284:        case 4:
                   1285:                fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
                   1286:                fwd->listen_port = a2port(fwdarg[1]);
                   1287:                fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
                   1288:                fwd->connect_port = a2port(fwdarg[3]);
                   1289:                break;
                   1290:        default:
                   1291:                i = 0; /* failure */
                   1292:        }
                   1293:
                   1294:        xfree(p);
                   1295:
1.168     stevesk  1296:        if (dynamicfwd) {
                   1297:                if (!(i == 1 || i == 2))
                   1298:                        goto fail_free;
                   1299:        } else {
                   1300:                if (!(i == 3 || i == 4))
                   1301:                        goto fail_free;
1.175     djm      1302:                if (fwd->connect_port <= 0)
1.168     stevesk  1303:                        goto fail_free;
                   1304:        }
                   1305:
1.176     djm      1306:        if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
1.135     djm      1307:                goto fail_free;
                   1308:
                   1309:        if (fwd->connect_host != NULL &&
                   1310:            strlen(fwd->connect_host) >= NI_MAXHOST)
                   1311:                goto fail_free;
1.176     djm      1312:        if (fwd->listen_host != NULL &&
                   1313:            strlen(fwd->listen_host) >= NI_MAXHOST)
                   1314:                goto fail_free;
                   1315:
1.135     djm      1316:
                   1317:        return (i);
                   1318:
                   1319:  fail_free:
1.173     djm      1320:        if (fwd->connect_host != NULL) {
1.135     djm      1321:                xfree(fwd->connect_host);
1.173     djm      1322:                fwd->connect_host = NULL;
                   1323:        }
                   1324:        if (fwd->listen_host != NULL) {
1.135     djm      1325:                xfree(fwd->listen_host);
1.173     djm      1326:                fwd->listen_host = NULL;
                   1327:        }
1.135     djm      1328:        return (0);
1.1       deraadt  1329: }