blob: 096d1a71b9c406e274f14adfac657661cdd10cde [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for reading the configuration files.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * 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".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Miller57a44762004-04-20 20:11:57 +100015RCSID("$OpenBSD: readconf.c,v 1.129 2004/04/18 23:10:26 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "ssh.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100019#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "cipher.h"
21#include "pathnames.h"
22#include "log.h"
23#include "readconf.h"
24#include "match.h"
25#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000026#include "kex.h"
27#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028
29/* Format of the configuration file:
30
31 # Configuration data is parsed as follows:
32 # 1. command line options
33 # 2. user-specific file
34 # 3. system-wide file
35 # Any configuration value is only changed the first time it is set.
36 # Thus, host-specific definitions should be at the beginning of the
37 # configuration file, and defaults at the end.
38
39 # Host-specific declarations. These may override anything above. A single
40 # host may match multiple declarations; these are processed in the order
41 # that they are given in.
42
43 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000044 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
46 Host fake.com
47 HostName another.host.name.real.org
48 User blaah
49 Port 34289
50 ForwardX11 no
51 ForwardAgent no
52
53 Host books.com
54 RemoteForward 9999 shadows.cs.hut.fi:9999
55 Cipher 3des
56
57 Host fascist.blob.com
58 Port 23123
59 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060 PasswordAuthentication no
61
62 Host puukko.hut.fi
63 User t35124p
64 ProxyCommand ssh-proxy %h %p
65
66 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000067 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
69 Host *.su
70 Cipher none
71 PasswordAuthentication no
72
73 # Defaults for various options
74 Host *
75 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +110076 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077 PasswordAuthentication yes
78 RSAAuthentication yes
79 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +110081 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082 IdentityFile ~/.ssh/identity
83 Port 22
84 EscapeChar ~
85
86*/
87
88/* Keyword tokens. */
89
Damien Miller95def091999-11-25 00:26:21 +110090typedef enum {
91 oBadOption,
Darren Tucker0a118da2003-10-15 15:54:32 +100092 oForwardAgent, oForwardX11, oForwardX11Trusted, oGatewayPorts,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000093 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000094 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +110095 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
96 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
97 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
98 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +110099 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000100 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100101 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000102 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000103 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000104 oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000105 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000106 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000107 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100108 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000109 oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110} OpCodes;
111
112/* Textual representations of the tokens. */
113
Damien Miller95def091999-11-25 00:26:21 +1100114static struct {
115 const char *name;
116 OpCodes opcode;
117} keywords[] = {
118 { "forwardagent", oForwardAgent },
119 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000120 { "forwardx11trusted", oForwardX11Trusted },
Damien Millerd3a18572000-06-07 19:55:44 +1000121 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100122 { "gatewayports", oGatewayPorts },
123 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000124 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100125 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100126 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
127 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100128 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100129 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000130 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000131 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000132 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000133 { "challengeresponseauthentication", oChallengeResponseAuthentication },
134 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
135 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000136 { "kerberosauthentication", oUnsupported },
137 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000138 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000139#if defined(GSSAPI)
140 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000141 { "gssapidelegatecredentials", oGssDelegateCreds },
142#else
143 { "gssapiauthentication", oUnsupported },
144 { "gssapidelegatecredentials", oUnsupported },
145#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000146 { "fallbacktorsh", oDeprecated },
147 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100148 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100149 { "identityfile2", oIdentityFile }, /* alias */
Damien Millerbd394c32004-03-08 23:12:36 +1100150 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100151 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000152 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100153 { "proxycommand", oProxyCommand },
154 { "port", oPort },
155 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000156 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000157 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000158 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100159 { "remoteforward", oRemoteForward },
160 { "localforward", oLocalForward },
161 { "user", oUser },
162 { "host", oHost },
163 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100164 { "globalknownhostsfile", oGlobalKnownHostsFile },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000165 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
Damien Millereba71ba2000-04-29 23:57:08 +1000166 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000167 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100168 { "connectionattempts", oConnectionAttempts },
169 { "batchmode", oBatchMode },
170 { "checkhostip", oCheckHostIP },
171 { "stricthostkeychecking", oStrictHostKeyChecking },
172 { "compression", oCompression },
173 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100174 { "tcpkeepalive", oTCPKeepAlive },
175 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100176 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100177 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000178 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000179 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000180 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000181 { "bindaddress", oBindAddress },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000182#ifdef SMARTCARD
Ben Lindstromae996bf2001-08-06 21:27:53 +0000183 { "smartcarddevice", oSmartcardDevice },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000184#else
185 { "smartcarddevice", oUnsupported },
186#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100187 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000188 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000189 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100190 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000191 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000192 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000193 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100194 { "serveraliveinterval", oServerAliveInterval },
195 { "serveralivecountmax", oServerAliveCountMax },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000196 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100197};
198
Damien Miller5428f641999-11-25 11:54:57 +1100199/*
200 * Adds a local TCP/IP port forward to options. Never returns if there is an
201 * error.
202 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller4af51302000-04-16 11:18:38 +1000204void
Damien Milleraae6c611999-12-06 11:47:28 +1100205add_local_forward(Options *options, u_short port, const char *host,
206 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207{
Damien Miller95def091999-11-25 00:26:21 +1100208 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000209#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100210 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100211 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000212 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100213#endif
Damien Miller95def091999-11-25 00:26:21 +1100214 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
215 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
216 fwd = &options->local_forwards[options->num_local_forwards++];
217 fwd->port = port;
218 fwd->host = xstrdup(host);
219 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220}
221
Damien Miller5428f641999-11-25 11:54:57 +1100222/*
223 * Adds a remote TCP/IP port forward to options. Never returns if there is
224 * an error.
225 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Damien Miller4af51302000-04-16 11:18:38 +1000227void
Damien Milleraae6c611999-12-06 11:47:28 +1100228add_remote_forward(Options *options, u_short port, const char *host,
229 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Damien Miller95def091999-11-25 00:26:21 +1100231 Forward *fwd;
232 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
233 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100234 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100235 fwd = &options->remote_forwards[options->num_remote_forwards++];
236 fwd->port = port;
237 fwd->host = xstrdup(host);
238 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239}
240
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000241static void
242clear_forwardings(Options *options)
243{
244 int i;
245
246 for (i = 0; i < options->num_local_forwards; i++)
247 xfree(options->local_forwards[i].host);
248 options->num_local_forwards = 0;
249 for (i = 0; i < options->num_remote_forwards; i++)
250 xfree(options->remote_forwards[i].host);
251 options->num_remote_forwards = 0;
252}
253
Damien Miller5428f641999-11-25 11:54:57 +1100254/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000255 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100256 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller4af51302000-04-16 11:18:38 +1000258static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100259parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000261 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller95def091999-11-25 00:26:21 +1100263 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100264 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100265 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000267 error("%s: line %d: Bad configuration option: %s",
268 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100269 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
271
Damien Miller5428f641999-11-25 11:54:57 +1100272/*
273 * Processes a single option line as used in the configuration files. This
274 * only sets those values that have not already been set.
275 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100276#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller2ccf6611999-11-15 15:25:10 +1100278int
279process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100280 char *line, const char *filename, int linenum,
281 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282{
Damien Miller61f08ac2003-02-24 11:56:27 +1100283 char buf[256], *s, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100284 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100285 size_t len;
Damien Milleraae6c611999-12-06 11:47:28 +1100286 u_short fwd_port, fwd_host_port;
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000287 char sfwd_host_port[6];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288
Damien Millerc652cac2003-05-14 13:40:54 +1000289 /* Strip trailing whitespace */
290 for(len = strlen(line) - 1; len > 0; len--) {
291 if (strchr(WHITESPACE, line[len]) == NULL)
292 break;
293 line[len] = '\0';
294 }
295
Damien Millerbe484b52000-07-15 14:14:16 +1000296 s = line;
297 /* Get the keyword. (Each line is supposed to begin with a keyword). */
298 keyword = strdelim(&s);
299 /* Ignore leading whitespace. */
300 if (*keyword == '\0')
301 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000302 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100303 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304
Damien Miller37023962000-07-11 17:31:38 +1000305 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306
Damien Miller95def091999-11-25 00:26:21 +1100307 switch (opcode) {
308 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100309 /* don't panic, but count bad options */
310 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100311 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000312 case oConnectTimeout:
313 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100314parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000315 arg = strdelim(&s);
316 if (!arg || *arg == '\0')
317 fatal("%s line %d: missing time value.",
318 filename, linenum);
319 if ((value = convtime(arg)) == -1)
320 fatal("%s line %d: invalid time value.",
321 filename, linenum);
322 if (*intptr == -1)
323 *intptr = value;
324 break;
325
Damien Miller95def091999-11-25 00:26:21 +1100326 case oForwardAgent:
327 intptr = &options->forward_agent;
328parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000329 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000330 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100331 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
332 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000333 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100334 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000335 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100336 value = 0;
337 else
338 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
339 if (*activep && *intptr == -1)
340 *intptr = value;
341 break;
342
343 case oForwardX11:
344 intptr = &options->forward_x11;
345 goto parse_flag;
346
Darren Tucker0a118da2003-10-15 15:54:32 +1000347 case oForwardX11Trusted:
348 intptr = &options->forward_x11_trusted;
349 goto parse_flag;
350
Damien Miller95def091999-11-25 00:26:21 +1100351 case oGatewayPorts:
352 intptr = &options->gateway_ports;
353 goto parse_flag;
354
355 case oUsePrivilegedPort:
356 intptr = &options->use_privileged_port;
357 goto parse_flag;
358
Damien Miller95def091999-11-25 00:26:21 +1100359 case oPasswordAuthentication:
360 intptr = &options->password_authentication;
361 goto parse_flag;
362
Damien Miller874d77b2000-10-14 16:23:11 +1100363 case oKbdInteractiveAuthentication:
364 intptr = &options->kbd_interactive_authentication;
365 goto parse_flag;
366
367 case oKbdInteractiveDevices:
368 charptr = &options->kbd_interactive_devices;
369 goto parse_string;
370
Damien Miller0bc1bd82000-11-13 22:57:25 +1100371 case oPubkeyAuthentication:
372 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000373 goto parse_flag;
374
Damien Miller95def091999-11-25 00:26:21 +1100375 case oRSAAuthentication:
376 intptr = &options->rsa_authentication;
377 goto parse_flag;
378
379 case oRhostsRSAAuthentication:
380 intptr = &options->rhosts_rsa_authentication;
381 goto parse_flag;
382
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000383 case oHostbasedAuthentication:
384 intptr = &options->hostbased_authentication;
385 goto parse_flag;
386
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000387 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000388 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100389 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000390
Darren Tucker0efd1552003-08-26 11:49:55 +1000391 case oGssAuthentication:
392 intptr = &options->gss_authentication;
393 goto parse_flag;
394
395 case oGssDelegateCreds:
396 intptr = &options->gss_deleg_creds;
397 goto parse_flag;
398
Damien Miller95def091999-11-25 00:26:21 +1100399 case oBatchMode:
400 intptr = &options->batch_mode;
401 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402
Damien Miller95def091999-11-25 00:26:21 +1100403 case oCheckHostIP:
404 intptr = &options->check_host_ip;
405 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406
Damien Miller37876e92003-05-15 10:19:46 +1000407 case oVerifyHostKeyDNS:
408 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100409 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000410
Damien Miller95def091999-11-25 00:26:21 +1100411 case oStrictHostKeyChecking:
412 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100413parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000414 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000415 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000416 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100417 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100418 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000419 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100420 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000421 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100422 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000423 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100424 value = 2;
425 else
426 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
427 if (*activep && *intptr == -1)
428 *intptr = value;
429 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Damien Miller95def091999-11-25 00:26:21 +1100431 case oCompression:
432 intptr = &options->compression;
433 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434
Damien Miller12c150e2003-12-17 16:31:10 +1100435 case oTCPKeepAlive:
436 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100437 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000438
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000439 case oNoHostAuthenticationForLocalhost:
440 intptr = &options->no_host_authentication_for_localhost;
441 goto parse_flag;
442
Damien Miller95def091999-11-25 00:26:21 +1100443 case oNumberOfPasswordPrompts:
444 intptr = &options->number_of_password_prompts;
445 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Miller95def091999-11-25 00:26:21 +1100447 case oCompressionLevel:
448 intptr = &options->compression_level;
449 goto parse_int;
450
Damien Millera5539d22003-04-09 20:50:06 +1000451 case oRekeyLimit:
452 intptr = &options->rekey_limit;
453 arg = strdelim(&s);
454 if (!arg || *arg == '\0')
455 fatal("%.200s line %d: Missing argument.", filename, linenum);
456 if (arg[0] < '0' || arg[0] > '9')
457 fatal("%.200s line %d: Bad number.", filename, linenum);
458 value = strtol(arg, &endofnumber, 10);
459 if (arg == endofnumber)
460 fatal("%.200s line %d: Bad number.", filename, linenum);
461 switch (toupper(*endofnumber)) {
462 case 'K':
463 value *= 1<<10;
464 break;
465 case 'M':
466 value *= 1<<20;
467 break;
468 case 'G':
469 value *= 1<<30;
470 break;
471 }
472 if (*activep && *intptr == -1)
473 *intptr = value;
474 break;
475
Damien Miller95def091999-11-25 00:26:21 +1100476 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000477 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000478 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100479 fatal("%.200s line %d: Missing argument.", filename, linenum);
480 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100481 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000482 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100483 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100484 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100485 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000486 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000487 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100488 }
489 break;
490
Damien Millerd3a18572000-06-07 19:55:44 +1000491 case oXAuthLocation:
492 charptr=&options->xauth_location;
493 goto parse_string;
494
Damien Miller95def091999-11-25 00:26:21 +1100495 case oUser:
496 charptr = &options->user;
497parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000498 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000499 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100500 fatal("%.200s line %d: Missing argument.", filename, linenum);
501 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000502 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100503 break;
504
505 case oGlobalKnownHostsFile:
506 charptr = &options->system_hostfile;
507 goto parse_string;
508
509 case oUserKnownHostsFile:
510 charptr = &options->user_hostfile;
511 goto parse_string;
512
Damien Millereba71ba2000-04-29 23:57:08 +1000513 case oGlobalKnownHostsFile2:
514 charptr = &options->system_hostfile2;
515 goto parse_string;
516
517 case oUserKnownHostsFile2:
518 charptr = &options->user_hostfile2;
519 goto parse_string;
520
Damien Miller95def091999-11-25 00:26:21 +1100521 case oHostName:
522 charptr = &options->hostname;
523 goto parse_string;
524
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000525 case oHostKeyAlias:
526 charptr = &options->host_key_alias;
527 goto parse_string;
528
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000529 case oPreferredAuthentications:
530 charptr = &options->preferred_authentications;
531 goto parse_string;
532
Ben Lindstrome0f88042001-04-30 13:06:24 +0000533 case oBindAddress:
534 charptr = &options->bind_address;
535 goto parse_string;
536
Ben Lindstromae996bf2001-08-06 21:27:53 +0000537 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000538 charptr = &options->smartcard_device;
539 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000540
Damien Miller95def091999-11-25 00:26:21 +1100541 case oProxyCommand:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000542 if (s == NULL)
543 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100544 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100545 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100546 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100547 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100548 return 0;
549
550 case oPort:
551 intptr = &options->port;
552parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000553 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000554 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100555 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000556 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100557 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100558
559 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000560 value = strtol(arg, &endofnumber, 0);
561 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100562 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100563 if (*activep && *intptr == -1)
564 *intptr = value;
565 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller95def091999-11-25 00:26:21 +1100567 case oConnectionAttempts:
568 intptr = &options->connection_attempts;
569 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100570
Damien Miller95def091999-11-25 00:26:21 +1100571 case oCipher:
572 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000573 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000574 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000575 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000576 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100577 if (value == -1)
578 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100579 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100580 if (*activep && *intptr == -1)
581 *intptr = value;
582 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller78928792000-04-12 20:17:38 +1000584 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000585 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000586 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000587 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000588 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000589 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100590 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000591 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000592 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000593 break;
594
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000595 case oMacs:
596 arg = strdelim(&s);
597 if (!arg || *arg == '\0')
598 fatal("%.200s line %d: Missing argument.", filename, linenum);
599 if (!mac_valid(arg))
600 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100601 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000602 if (*activep && options->macs == NULL)
603 options->macs = xstrdup(arg);
604 break;
605
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000606 case oHostKeyAlgorithms:
607 arg = strdelim(&s);
608 if (!arg || *arg == '\0')
609 fatal("%.200s line %d: Missing argument.", filename, linenum);
610 if (!key_names_valid2(arg))
611 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100612 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000613 if (*activep && options->hostkeyalgorithms == NULL)
614 options->hostkeyalgorithms = xstrdup(arg);
615 break;
616
Damien Miller78928792000-04-12 20:17:38 +1000617 case oProtocol:
618 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000619 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000620 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000621 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000622 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000623 if (value == SSH_PROTO_UNKNOWN)
624 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100625 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000626 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
627 *intptr = value;
628 break;
629
Damien Miller95def091999-11-25 00:26:21 +1100630 case oLogLevel:
631 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000632 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000633 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100634 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000635 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100636 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100637 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100638 *intptr = (LogLevel) value;
639 break;
640
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000641 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100642 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000643 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000644 if (!arg || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000645 fatal("%.200s line %d: Missing port argument.",
646 filename, linenum);
647 if ((fwd_port = a2port(arg)) == 0)
648 fatal("%.200s line %d: Bad listen port.",
649 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000650 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000651 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100652 fatal("%.200s line %d: Missing second argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000653 filename, linenum);
654 if (sscanf(arg, "%255[^:]:%5[0-9]", buf, sfwd_host_port) != 2 &&
655 sscanf(arg, "%255[^/]/%5[0-9]", buf, sfwd_host_port) != 2)
656 fatal("%.200s line %d: Bad forwarding specification.",
657 filename, linenum);
658 if ((fwd_host_port = a2port(sfwd_host_port)) == 0)
659 fatal("%.200s line %d: Bad forwarding port.",
660 filename, linenum);
661 if (*activep) {
662 if (opcode == oLocalForward)
663 add_local_forward(options, fwd_port, buf,
664 fwd_host_port);
665 else if (opcode == oRemoteForward)
666 add_remote_forward(options, fwd_port, buf,
667 fwd_host_port);
668 }
Damien Miller95def091999-11-25 00:26:21 +1100669 break;
670
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000671 case oDynamicForward:
672 arg = strdelim(&s);
673 if (!arg || *arg == '\0')
674 fatal("%.200s line %d: Missing port argument.",
675 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000676 fwd_port = a2port(arg);
677 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000678 fatal("%.200s line %d: Badly formatted port number.",
679 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000680 if (*activep)
Darren Tucker1c52ee32003-08-13 20:38:36 +1000681 add_local_forward(options, fwd_port, "socks", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000682 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000683
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000684 case oClearAllForwardings:
685 intptr = &options->clear_forwardings;
686 goto parse_flag;
687
Damien Miller95def091999-11-25 00:26:21 +1100688 case oHost:
689 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000690 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000691 if (match_pattern(host, arg)) {
692 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100693 *activep = 1;
694 break;
695 }
Damien Millerbe484b52000-07-15 14:14:16 +1000696 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100697 return 0;
698
699 case oEscapeChar:
700 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000701 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000702 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100703 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000704 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000705 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
706 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000707 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000708 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000709 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000710 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100711 else {
712 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100713 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100714 /* NOTREACHED */
715 value = 0; /* Avoid compiler warning. */
716 }
717 if (*activep && *intptr == -1)
718 *intptr = value;
719 break;
720
Damien Miller20a8f972003-05-18 20:50:30 +1000721 case oAddressFamily:
722 arg = strdelim(&s);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000723 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000724 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000725 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000726 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000727 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000728 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000729 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000730 else
731 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000732 if (*activep && *intptr == -1)
733 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000734 break;
735
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000736 case oEnableSSHKeysign:
737 intptr = &options->enable_ssh_keysign;
738 goto parse_flag;
739
Damien Millerbd394c32004-03-08 23:12:36 +1100740 case oIdentitiesOnly:
741 intptr = &options->identities_only;
742 goto parse_flag;
743
Damien Miller509b0102003-12-17 16:33:10 +1100744 case oServerAliveInterval:
745 intptr = &options->server_alive_interval;
746 goto parse_time;
747
748 case oServerAliveCountMax:
749 intptr = &options->server_alive_count_max;
750 goto parse_int;
751
Ben Lindstrom4daea862002-06-09 20:04:02 +0000752 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000753 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000754 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000755 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000756
Damien Millerf9b3feb2003-05-16 11:38:32 +1000757 case oUnsupported:
758 error("%s line %d: Unsupported option \"%s\"",
759 filename, linenum, keyword);
760 return 0;
761
Damien Miller95def091999-11-25 00:26:21 +1100762 default:
763 fatal("process_config_line: Unimplemented opcode %d", opcode);
764 }
765
766 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000767 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000768 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100769 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000770 }
Damien Miller95def091999-11-25 00:26:21 +1100771 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000772}
773
774
Damien Miller5428f641999-11-25 11:54:57 +1100775/*
776 * Reads the config file and modifies the options accordingly. Options
777 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000778 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100779 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000780
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000781int
Damien Miller57a44762004-04-20 20:11:57 +1000782read_config_file(const char *filename, const char *host, Options *options,
783 int checkperm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784{
Damien Miller95def091999-11-25 00:26:21 +1100785 FILE *f;
786 char line[1024];
787 int active, linenum;
788 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000789
Damien Miller95def091999-11-25 00:26:21 +1100790 /* Open the file. */
Damien Miller57a44762004-04-20 20:11:57 +1000791 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000792 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793
Damien Miller57a44762004-04-20 20:11:57 +1000794 if (checkperm) {
795 struct stat sb;
796
797 if (fstat(fileno(f), &sb) == -1) {
798 fatal("fstat %s: %s", filename, strerror(errno));
799 fclose(f);
800 return (0);
801 }
802 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
803 (sb.st_mode & 022) != 0)) {
804 fatal("Bad owner or permissions on %s", filename);
805 return 0;
806 }
807 }
808
Damien Miller95def091999-11-25 00:26:21 +1100809 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000810
Damien Miller5428f641999-11-25 11:54:57 +1100811 /*
812 * Mark that we are now processing the options. This flag is turned
813 * on/off by Host specifications.
814 */
Damien Miller95def091999-11-25 00:26:21 +1100815 active = 1;
816 linenum = 0;
817 while (fgets(line, sizeof(line), f)) {
818 /* Update line number counter. */
819 linenum++;
820 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
821 bad_options++;
822 }
823 fclose(f);
824 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000825 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100826 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000827 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828}
829
Damien Miller5428f641999-11-25 11:54:57 +1100830/*
831 * Initializes options to special values that indicate that they have not yet
832 * been set. Read_config_file will only set options with this value. Options
833 * are processed in the following order: command line, user config file,
834 * system config file. Last, fill_default_options is called.
835 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000836
Damien Miller4af51302000-04-16 11:18:38 +1000837void
Damien Miller95def091999-11-25 00:26:21 +1100838initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839{
Damien Miller95def091999-11-25 00:26:21 +1100840 memset(options, 'X', sizeof(*options));
841 options->forward_agent = -1;
842 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +1000843 options->forward_x11_trusted = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000844 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100845 options->gateway_ports = -1;
846 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +1100847 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100848 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000849 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000850 options->gss_authentication = -1;
851 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100852 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100853 options->kbd_interactive_authentication = -1;
854 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100855 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000856 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100857 options->batch_mode = -1;
858 options->check_host_ip = -1;
859 options->strict_host_key_checking = -1;
860 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +1100861 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +1100862 options->compression_level = -1;
863 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000864 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +1100865 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000866 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +1100867 options->number_of_password_prompts = -1;
868 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000869 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000870 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000871 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000872 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100873 options->num_identity_files = 0;
874 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000875 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100876 options->proxy_command = NULL;
877 options->user = NULL;
878 options->escape_char = -1;
879 options->system_hostfile = NULL;
880 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000881 options->system_hostfile2 = NULL;
882 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100883 options->num_local_forwards = 0;
884 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000885 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100886 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000887 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000888 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000889 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000890 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000891 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +1100892 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000893 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000894 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +1100895 options->server_alive_interval = -1;
896 options->server_alive_count_max = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000897}
898
Damien Miller5428f641999-11-25 11:54:57 +1100899/*
900 * Called after processing other sources of option data, this fills those
901 * options for which no value has been specified with their default values.
902 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000903
Damien Miller4af51302000-04-16 11:18:38 +1000904void
Damien Miller95def091999-11-25 00:26:21 +1100905fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000906{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000907 int len;
908
Damien Miller95def091999-11-25 00:26:21 +1100909 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000910 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100911 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100912 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +1000913 if (options->forward_x11_trusted == -1)
914 options->forward_x11_trusted = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000915 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000916 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100917 if (options->gateway_ports == -1)
918 options->gateway_ports = 0;
919 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000920 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100921 if (options->rsa_authentication == -1)
922 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100923 if (options->pubkey_authentication == -1)
924 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000925 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000926 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000927 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +1000928 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000929 if (options->gss_deleg_creds == -1)
930 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100931 if (options->password_authentication == -1)
932 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100933 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000934 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100935 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000936 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000937 if (options->hostbased_authentication == -1)
938 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100939 if (options->batch_mode == -1)
940 options->batch_mode = 0;
941 if (options->check_host_ip == -1)
942 options->check_host_ip = 1;
943 if (options->strict_host_key_checking == -1)
944 options->strict_host_key_checking = 2; /* 2 is default */
945 if (options->compression == -1)
946 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +1100947 if (options->tcp_keep_alive == -1)
948 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +1100949 if (options->compression_level == -1)
950 options->compression_level = 6;
951 if (options->port == -1)
952 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000953 if (options->address_family == -1)
954 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +1100955 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000956 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100957 if (options->number_of_password_prompts == -1)
958 options->number_of_password_prompts = 3;
959 /* Selected in ssh_login(). */
960 if (options->cipher == -1)
961 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000962 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000963 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000964 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000965 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000966 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100967 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000969 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100970 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000971 xmalloc(len);
972 snprintf(options->identity_files[options->num_identity_files++],
973 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100974 }
975 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000976 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
977 options->identity_files[options->num_identity_files] =
978 xmalloc(len);
979 snprintf(options->identity_files[options->num_identity_files++],
980 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
981
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000982 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100983 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000984 xmalloc(len);
985 snprintf(options->identity_files[options->num_identity_files++],
986 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100987 }
Damien Millereba71ba2000-04-29 23:57:08 +1000988 }
Damien Miller95def091999-11-25 00:26:21 +1100989 if (options->escape_char == -1)
990 options->escape_char = '~';
991 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000992 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100993 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000994 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000995 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000996 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000997 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000998 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +1100999 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001000 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001001 if (options->clear_forwardings == 1)
1002 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001003 if (options->no_host_authentication_for_localhost == - 1)
1004 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001005 if (options->identities_only == -1)
1006 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001007 if (options->enable_ssh_keysign == -1)
1008 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001009 if (options->rekey_limit == -1)
1010 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001011 if (options->verify_host_key_dns == -1)
1012 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001013 if (options->server_alive_interval == -1)
1014 options->server_alive_interval = 0;
1015 if (options->server_alive_count_max == -1)
1016 options->server_alive_count_max = 3;
Damien Miller95def091999-11-25 00:26:21 +11001017 /* options->proxy_command should not be set by default */
1018 /* options->user will be set in the main program if appropriate */
1019 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001020 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001021 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001022}