blob: f4710e833f39c87b60911c200a9b96bd6d96a007 [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"
Darren Tucker46bc0752004-05-02 22:11:30 +100015RCSID("$OpenBSD: readconf.c,v 1.130 2004/04/27 09:46:36 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,
Darren Tucker46bc0752004-05-02 22:11:30 +1000109 oSendEnv,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000110 oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111} OpCodes;
112
113/* Textual representations of the tokens. */
114
Damien Miller95def091999-11-25 00:26:21 +1100115static struct {
116 const char *name;
117 OpCodes opcode;
118} keywords[] = {
119 { "forwardagent", oForwardAgent },
120 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000121 { "forwardx11trusted", oForwardX11Trusted },
Damien Millerd3a18572000-06-07 19:55:44 +1000122 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100123 { "gatewayports", oGatewayPorts },
124 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000125 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100126 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100127 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
128 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100129 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000131 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000132 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000133 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000134 { "challengeresponseauthentication", oChallengeResponseAuthentication },
135 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
136 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000137 { "kerberosauthentication", oUnsupported },
138 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000139 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000140#if defined(GSSAPI)
141 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000142 { "gssapidelegatecredentials", oGssDelegateCreds },
143#else
144 { "gssapiauthentication", oUnsupported },
145 { "gssapidelegatecredentials", oUnsupported },
146#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000147 { "fallbacktorsh", oDeprecated },
148 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100149 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100150 { "identityfile2", oIdentityFile }, /* alias */
Damien Millerbd394c32004-03-08 23:12:36 +1100151 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100152 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000153 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100154 { "proxycommand", oProxyCommand },
155 { "port", oPort },
156 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000157 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000158 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000159 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100160 { "remoteforward", oRemoteForward },
161 { "localforward", oLocalForward },
162 { "user", oUser },
163 { "host", oHost },
164 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100165 { "globalknownhostsfile", oGlobalKnownHostsFile },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000166 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
Damien Millereba71ba2000-04-29 23:57:08 +1000167 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000168 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100169 { "connectionattempts", oConnectionAttempts },
170 { "batchmode", oBatchMode },
171 { "checkhostip", oCheckHostIP },
172 { "stricthostkeychecking", oStrictHostKeyChecking },
173 { "compression", oCompression },
174 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100175 { "tcpkeepalive", oTCPKeepAlive },
176 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100177 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100178 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000179 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000180 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000181 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000182 { "bindaddress", oBindAddress },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000183#ifdef SMARTCARD
Ben Lindstromae996bf2001-08-06 21:27:53 +0000184 { "smartcarddevice", oSmartcardDevice },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000185#else
186 { "smartcarddevice", oUnsupported },
187#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100188 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000189 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000190 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100191 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000192 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000193 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000194 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100195 { "serveraliveinterval", oServerAliveInterval },
196 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000197 { "sendenv", oSendEnv },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000198 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100199};
200
Damien Miller5428f641999-11-25 11:54:57 +1100201/*
202 * Adds a local TCP/IP port forward to options. Never returns if there is an
203 * error.
204 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205
Damien Miller4af51302000-04-16 11:18:38 +1000206void
Damien Milleraae6c611999-12-06 11:47:28 +1100207add_local_forward(Options *options, u_short port, const char *host,
208 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller95def091999-11-25 00:26:21 +1100210 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000211#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100212 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100213 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000214 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100215#endif
Damien Miller95def091999-11-25 00:26:21 +1100216 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
217 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
218 fwd = &options->local_forwards[options->num_local_forwards++];
219 fwd->port = port;
220 fwd->host = xstrdup(host);
221 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222}
223
Damien Miller5428f641999-11-25 11:54:57 +1100224/*
225 * Adds a remote TCP/IP port forward to options. Never returns if there is
226 * an error.
227 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller4af51302000-04-16 11:18:38 +1000229void
Damien Milleraae6c611999-12-06 11:47:28 +1100230add_remote_forward(Options *options, u_short port, const char *host,
231 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 Forward *fwd;
234 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
235 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100236 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100237 fwd = &options->remote_forwards[options->num_remote_forwards++];
238 fwd->port = port;
239 fwd->host = xstrdup(host);
240 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241}
242
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000243static void
244clear_forwardings(Options *options)
245{
246 int i;
247
248 for (i = 0; i < options->num_local_forwards; i++)
249 xfree(options->local_forwards[i].host);
250 options->num_local_forwards = 0;
251 for (i = 0; i < options->num_remote_forwards; i++)
252 xfree(options->remote_forwards[i].host);
253 options->num_remote_forwards = 0;
254}
255
Damien Miller5428f641999-11-25 11:54:57 +1100256/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000257 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100258 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Miller4af51302000-04-16 11:18:38 +1000260static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100261parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000263 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Damien Miller95def091999-11-25 00:26:21 +1100265 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100266 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100267 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000269 error("%s: line %d: Bad configuration option: %s",
270 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100271 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272}
273
Damien Miller5428f641999-11-25 11:54:57 +1100274/*
275 * Processes a single option line as used in the configuration files. This
276 * only sets those values that have not already been set.
277 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100278#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279
Damien Miller2ccf6611999-11-15 15:25:10 +1100280int
281process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100282 char *line, const char *filename, int linenum,
283 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284{
Damien Miller61f08ac2003-02-24 11:56:27 +1100285 char buf[256], *s, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100286 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100287 size_t len;
Damien Milleraae6c611999-12-06 11:47:28 +1100288 u_short fwd_port, fwd_host_port;
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000289 char sfwd_host_port[6];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290
Damien Millerc652cac2003-05-14 13:40:54 +1000291 /* Strip trailing whitespace */
292 for(len = strlen(line) - 1; len > 0; len--) {
293 if (strchr(WHITESPACE, line[len]) == NULL)
294 break;
295 line[len] = '\0';
296 }
297
Damien Millerbe484b52000-07-15 14:14:16 +1000298 s = line;
299 /* Get the keyword. (Each line is supposed to begin with a keyword). */
300 keyword = strdelim(&s);
301 /* Ignore leading whitespace. */
302 if (*keyword == '\0')
303 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000304 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100305 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306
Damien Miller37023962000-07-11 17:31:38 +1000307 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308
Damien Miller95def091999-11-25 00:26:21 +1100309 switch (opcode) {
310 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100311 /* don't panic, but count bad options */
312 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100313 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000314 case oConnectTimeout:
315 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100316parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000317 arg = strdelim(&s);
318 if (!arg || *arg == '\0')
319 fatal("%s line %d: missing time value.",
320 filename, linenum);
321 if ((value = convtime(arg)) == -1)
322 fatal("%s line %d: invalid time value.",
323 filename, linenum);
324 if (*intptr == -1)
325 *intptr = value;
326 break;
327
Damien Miller95def091999-11-25 00:26:21 +1100328 case oForwardAgent:
329 intptr = &options->forward_agent;
330parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000331 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000332 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100333 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
334 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000335 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100336 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000337 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100338 value = 0;
339 else
340 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
341 if (*activep && *intptr == -1)
342 *intptr = value;
343 break;
344
345 case oForwardX11:
346 intptr = &options->forward_x11;
347 goto parse_flag;
348
Darren Tucker0a118da2003-10-15 15:54:32 +1000349 case oForwardX11Trusted:
350 intptr = &options->forward_x11_trusted;
351 goto parse_flag;
352
Damien Miller95def091999-11-25 00:26:21 +1100353 case oGatewayPorts:
354 intptr = &options->gateway_ports;
355 goto parse_flag;
356
357 case oUsePrivilegedPort:
358 intptr = &options->use_privileged_port;
359 goto parse_flag;
360
Damien Miller95def091999-11-25 00:26:21 +1100361 case oPasswordAuthentication:
362 intptr = &options->password_authentication;
363 goto parse_flag;
364
Damien Miller874d77b2000-10-14 16:23:11 +1100365 case oKbdInteractiveAuthentication:
366 intptr = &options->kbd_interactive_authentication;
367 goto parse_flag;
368
369 case oKbdInteractiveDevices:
370 charptr = &options->kbd_interactive_devices;
371 goto parse_string;
372
Damien Miller0bc1bd82000-11-13 22:57:25 +1100373 case oPubkeyAuthentication:
374 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000375 goto parse_flag;
376
Damien Miller95def091999-11-25 00:26:21 +1100377 case oRSAAuthentication:
378 intptr = &options->rsa_authentication;
379 goto parse_flag;
380
381 case oRhostsRSAAuthentication:
382 intptr = &options->rhosts_rsa_authentication;
383 goto parse_flag;
384
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000385 case oHostbasedAuthentication:
386 intptr = &options->hostbased_authentication;
387 goto parse_flag;
388
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000389 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000390 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100391 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000392
Darren Tucker0efd1552003-08-26 11:49:55 +1000393 case oGssAuthentication:
394 intptr = &options->gss_authentication;
395 goto parse_flag;
396
397 case oGssDelegateCreds:
398 intptr = &options->gss_deleg_creds;
399 goto parse_flag;
400
Damien Miller95def091999-11-25 00:26:21 +1100401 case oBatchMode:
402 intptr = &options->batch_mode;
403 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000404
Damien Miller95def091999-11-25 00:26:21 +1100405 case oCheckHostIP:
406 intptr = &options->check_host_ip;
407 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408
Damien Miller37876e92003-05-15 10:19:46 +1000409 case oVerifyHostKeyDNS:
410 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100411 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000412
Damien Miller95def091999-11-25 00:26:21 +1100413 case oStrictHostKeyChecking:
414 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100415parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000416 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000417 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000418 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100419 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100420 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000421 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100422 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000423 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100424 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000425 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100426 value = 2;
427 else
428 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
429 if (*activep && *intptr == -1)
430 *intptr = value;
431 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller95def091999-11-25 00:26:21 +1100433 case oCompression:
434 intptr = &options->compression;
435 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller12c150e2003-12-17 16:31:10 +1100437 case oTCPKeepAlive:
438 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100439 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000441 case oNoHostAuthenticationForLocalhost:
442 intptr = &options->no_host_authentication_for_localhost;
443 goto parse_flag;
444
Damien Miller95def091999-11-25 00:26:21 +1100445 case oNumberOfPasswordPrompts:
446 intptr = &options->number_of_password_prompts;
447 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448
Damien Miller95def091999-11-25 00:26:21 +1100449 case oCompressionLevel:
450 intptr = &options->compression_level;
451 goto parse_int;
452
Damien Millera5539d22003-04-09 20:50:06 +1000453 case oRekeyLimit:
454 intptr = &options->rekey_limit;
455 arg = strdelim(&s);
456 if (!arg || *arg == '\0')
457 fatal("%.200s line %d: Missing argument.", filename, linenum);
458 if (arg[0] < '0' || arg[0] > '9')
459 fatal("%.200s line %d: Bad number.", filename, linenum);
460 value = strtol(arg, &endofnumber, 10);
461 if (arg == endofnumber)
462 fatal("%.200s line %d: Bad number.", filename, linenum);
463 switch (toupper(*endofnumber)) {
464 case 'K':
465 value *= 1<<10;
466 break;
467 case 'M':
468 value *= 1<<20;
469 break;
470 case 'G':
471 value *= 1<<30;
472 break;
473 }
474 if (*activep && *intptr == -1)
475 *intptr = value;
476 break;
477
Damien Miller95def091999-11-25 00:26:21 +1100478 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000479 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000480 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100481 fatal("%.200s line %d: Missing argument.", filename, linenum);
482 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100483 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000484 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100485 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100486 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100487 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000488 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000489 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100490 }
491 break;
492
Damien Millerd3a18572000-06-07 19:55:44 +1000493 case oXAuthLocation:
494 charptr=&options->xauth_location;
495 goto parse_string;
496
Damien Miller95def091999-11-25 00:26:21 +1100497 case oUser:
498 charptr = &options->user;
499parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000500 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000501 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100502 fatal("%.200s line %d: Missing argument.", filename, linenum);
503 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000504 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100505 break;
506
507 case oGlobalKnownHostsFile:
508 charptr = &options->system_hostfile;
509 goto parse_string;
510
511 case oUserKnownHostsFile:
512 charptr = &options->user_hostfile;
513 goto parse_string;
514
Damien Millereba71ba2000-04-29 23:57:08 +1000515 case oGlobalKnownHostsFile2:
516 charptr = &options->system_hostfile2;
517 goto parse_string;
518
519 case oUserKnownHostsFile2:
520 charptr = &options->user_hostfile2;
521 goto parse_string;
522
Damien Miller95def091999-11-25 00:26:21 +1100523 case oHostName:
524 charptr = &options->hostname;
525 goto parse_string;
526
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000527 case oHostKeyAlias:
528 charptr = &options->host_key_alias;
529 goto parse_string;
530
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000531 case oPreferredAuthentications:
532 charptr = &options->preferred_authentications;
533 goto parse_string;
534
Ben Lindstrome0f88042001-04-30 13:06:24 +0000535 case oBindAddress:
536 charptr = &options->bind_address;
537 goto parse_string;
538
Ben Lindstromae996bf2001-08-06 21:27:53 +0000539 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000540 charptr = &options->smartcard_device;
541 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000542
Damien Miller95def091999-11-25 00:26:21 +1100543 case oProxyCommand:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000544 if (s == NULL)
545 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100546 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100547 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100548 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100549 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100550 return 0;
551
552 case oPort:
553 intptr = &options->port;
554parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000555 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000556 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100557 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000558 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100559 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100560
561 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000562 value = strtol(arg, &endofnumber, 0);
563 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100564 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100565 if (*activep && *intptr == -1)
566 *intptr = value;
567 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Miller95def091999-11-25 00:26:21 +1100569 case oConnectionAttempts:
570 intptr = &options->connection_attempts;
571 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100572
Damien Miller95def091999-11-25 00:26:21 +1100573 case oCipher:
574 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000575 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000576 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000577 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000578 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100579 if (value == -1)
580 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100581 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100582 if (*activep && *intptr == -1)
583 *intptr = value;
584 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller78928792000-04-12 20:17:38 +1000586 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000587 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000588 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000589 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000590 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000591 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100592 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000593 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000594 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000595 break;
596
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000597 case oMacs:
598 arg = strdelim(&s);
599 if (!arg || *arg == '\0')
600 fatal("%.200s line %d: Missing argument.", filename, linenum);
601 if (!mac_valid(arg))
602 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100603 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000604 if (*activep && options->macs == NULL)
605 options->macs = xstrdup(arg);
606 break;
607
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000608 case oHostKeyAlgorithms:
609 arg = strdelim(&s);
610 if (!arg || *arg == '\0')
611 fatal("%.200s line %d: Missing argument.", filename, linenum);
612 if (!key_names_valid2(arg))
613 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100614 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000615 if (*activep && options->hostkeyalgorithms == NULL)
616 options->hostkeyalgorithms = xstrdup(arg);
617 break;
618
Damien Miller78928792000-04-12 20:17:38 +1000619 case oProtocol:
620 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000621 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000622 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000623 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000624 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000625 if (value == SSH_PROTO_UNKNOWN)
626 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100627 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000628 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
629 *intptr = value;
630 break;
631
Damien Miller95def091999-11-25 00:26:21 +1100632 case oLogLevel:
633 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000634 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000635 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100636 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000637 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100638 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100639 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100640 *intptr = (LogLevel) value;
641 break;
642
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000643 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100644 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000645 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000646 if (!arg || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000647 fatal("%.200s line %d: Missing port argument.",
648 filename, linenum);
649 if ((fwd_port = a2port(arg)) == 0)
650 fatal("%.200s line %d: Bad listen port.",
651 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000652 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000653 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100654 fatal("%.200s line %d: Missing second argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000655 filename, linenum);
656 if (sscanf(arg, "%255[^:]:%5[0-9]", buf, sfwd_host_port) != 2 &&
657 sscanf(arg, "%255[^/]/%5[0-9]", buf, sfwd_host_port) != 2)
658 fatal("%.200s line %d: Bad forwarding specification.",
659 filename, linenum);
660 if ((fwd_host_port = a2port(sfwd_host_port)) == 0)
661 fatal("%.200s line %d: Bad forwarding port.",
662 filename, linenum);
663 if (*activep) {
664 if (opcode == oLocalForward)
665 add_local_forward(options, fwd_port, buf,
666 fwd_host_port);
667 else if (opcode == oRemoteForward)
668 add_remote_forward(options, fwd_port, buf,
669 fwd_host_port);
670 }
Damien Miller95def091999-11-25 00:26:21 +1100671 break;
672
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000673 case oDynamicForward:
674 arg = strdelim(&s);
675 if (!arg || *arg == '\0')
676 fatal("%.200s line %d: Missing port argument.",
677 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000678 fwd_port = a2port(arg);
679 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000680 fatal("%.200s line %d: Badly formatted port number.",
681 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000682 if (*activep)
Darren Tucker1c52ee32003-08-13 20:38:36 +1000683 add_local_forward(options, fwd_port, "socks", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000684 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000685
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000686 case oClearAllForwardings:
687 intptr = &options->clear_forwardings;
688 goto parse_flag;
689
Damien Miller95def091999-11-25 00:26:21 +1100690 case oHost:
691 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000692 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000693 if (match_pattern(host, arg)) {
694 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100695 *activep = 1;
696 break;
697 }
Damien Millerbe484b52000-07-15 14:14:16 +1000698 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100699 return 0;
700
701 case oEscapeChar:
702 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000703 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000704 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100705 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000706 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000707 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
708 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000709 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000710 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000711 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000712 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100713 else {
714 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100715 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100716 /* NOTREACHED */
717 value = 0; /* Avoid compiler warning. */
718 }
719 if (*activep && *intptr == -1)
720 *intptr = value;
721 break;
722
Damien Miller20a8f972003-05-18 20:50:30 +1000723 case oAddressFamily:
724 arg = strdelim(&s);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000725 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000726 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000727 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000728 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000729 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000730 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000731 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000732 else
733 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000734 if (*activep && *intptr == -1)
735 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000736 break;
737
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000738 case oEnableSSHKeysign:
739 intptr = &options->enable_ssh_keysign;
740 goto parse_flag;
741
Damien Millerbd394c32004-03-08 23:12:36 +1100742 case oIdentitiesOnly:
743 intptr = &options->identities_only;
744 goto parse_flag;
745
Damien Miller509b0102003-12-17 16:33:10 +1100746 case oServerAliveInterval:
747 intptr = &options->server_alive_interval;
748 goto parse_time;
749
750 case oServerAliveCountMax:
751 intptr = &options->server_alive_count_max;
752 goto parse_int;
753
Darren Tucker46bc0752004-05-02 22:11:30 +1000754 case oSendEnv:
755 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
756 if (strchr(arg, '=') != NULL)
757 fatal("%s line %d: Invalid environment name.",
758 filename, linenum);
759 if (options->num_send_env >= MAX_SEND_ENV)
760 fatal("%s line %d: too many send env.",
761 filename, linenum);
762 options->send_env[options->num_send_env++] =
763 xstrdup(arg);
764 }
765 break;
766
Ben Lindstrom4daea862002-06-09 20:04:02 +0000767 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000768 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000769 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000770 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000771
Damien Millerf9b3feb2003-05-16 11:38:32 +1000772 case oUnsupported:
773 error("%s line %d: Unsupported option \"%s\"",
774 filename, linenum, keyword);
775 return 0;
776
Damien Miller95def091999-11-25 00:26:21 +1100777 default:
778 fatal("process_config_line: Unimplemented opcode %d", opcode);
779 }
780
781 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000782 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000783 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100784 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000785 }
Damien Miller95def091999-11-25 00:26:21 +1100786 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787}
788
789
Damien Miller5428f641999-11-25 11:54:57 +1100790/*
791 * Reads the config file and modifies the options accordingly. Options
792 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000793 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100794 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000795
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000796int
Damien Miller57a44762004-04-20 20:11:57 +1000797read_config_file(const char *filename, const char *host, Options *options,
798 int checkperm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000799{
Damien Miller95def091999-11-25 00:26:21 +1100800 FILE *f;
801 char line[1024];
802 int active, linenum;
803 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804
Damien Miller95def091999-11-25 00:26:21 +1100805 /* Open the file. */
Damien Miller57a44762004-04-20 20:11:57 +1000806 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000807 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000808
Damien Miller57a44762004-04-20 20:11:57 +1000809 if (checkperm) {
810 struct stat sb;
811
812 if (fstat(fileno(f), &sb) == -1) {
813 fatal("fstat %s: %s", filename, strerror(errno));
814 fclose(f);
815 return (0);
816 }
817 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
818 (sb.st_mode & 022) != 0)) {
819 fatal("Bad owner or permissions on %s", filename);
820 return 0;
821 }
822 }
823
Damien Miller95def091999-11-25 00:26:21 +1100824 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000825
Damien Miller5428f641999-11-25 11:54:57 +1100826 /*
827 * Mark that we are now processing the options. This flag is turned
828 * on/off by Host specifications.
829 */
Damien Miller95def091999-11-25 00:26:21 +1100830 active = 1;
831 linenum = 0;
832 while (fgets(line, sizeof(line), f)) {
833 /* Update line number counter. */
834 linenum++;
835 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
836 bad_options++;
837 }
838 fclose(f);
839 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000840 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100841 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000842 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000843}
844
Damien Miller5428f641999-11-25 11:54:57 +1100845/*
846 * Initializes options to special values that indicate that they have not yet
847 * been set. Read_config_file will only set options with this value. Options
848 * are processed in the following order: command line, user config file,
849 * system config file. Last, fill_default_options is called.
850 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000851
Damien Miller4af51302000-04-16 11:18:38 +1000852void
Damien Miller95def091999-11-25 00:26:21 +1100853initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000854{
Damien Miller95def091999-11-25 00:26:21 +1100855 memset(options, 'X', sizeof(*options));
856 options->forward_agent = -1;
857 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +1000858 options->forward_x11_trusted = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000859 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100860 options->gateway_ports = -1;
861 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +1100862 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100863 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000864 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000865 options->gss_authentication = -1;
866 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100867 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100868 options->kbd_interactive_authentication = -1;
869 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100870 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000871 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100872 options->batch_mode = -1;
873 options->check_host_ip = -1;
874 options->strict_host_key_checking = -1;
875 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +1100876 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +1100877 options->compression_level = -1;
878 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000879 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +1100880 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000881 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +1100882 options->number_of_password_prompts = -1;
883 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000884 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000885 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000886 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000887 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100888 options->num_identity_files = 0;
889 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000890 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100891 options->proxy_command = NULL;
892 options->user = NULL;
893 options->escape_char = -1;
894 options->system_hostfile = NULL;
895 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000896 options->system_hostfile2 = NULL;
897 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100898 options->num_local_forwards = 0;
899 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000900 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100901 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000902 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000903 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000904 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000905 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000906 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +1100907 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000908 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000909 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +1100910 options->server_alive_interval = -1;
911 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +1000912 options->num_send_env = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000913}
914
Damien Miller5428f641999-11-25 11:54:57 +1100915/*
916 * Called after processing other sources of option data, this fills those
917 * options for which no value has been specified with their default values.
918 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919
Damien Miller4af51302000-04-16 11:18:38 +1000920void
Damien Miller95def091999-11-25 00:26:21 +1100921fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000922{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000923 int len;
924
Damien Miller95def091999-11-25 00:26:21 +1100925 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000926 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100927 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100928 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +1000929 if (options->forward_x11_trusted == -1)
930 options->forward_x11_trusted = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000931 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000932 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100933 if (options->gateway_ports == -1)
934 options->gateway_ports = 0;
935 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000936 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100937 if (options->rsa_authentication == -1)
938 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 if (options->pubkey_authentication == -1)
940 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000941 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000942 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000943 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +1000944 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000945 if (options->gss_deleg_creds == -1)
946 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100947 if (options->password_authentication == -1)
948 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100949 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000950 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100951 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000952 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000953 if (options->hostbased_authentication == -1)
954 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100955 if (options->batch_mode == -1)
956 options->batch_mode = 0;
957 if (options->check_host_ip == -1)
958 options->check_host_ip = 1;
959 if (options->strict_host_key_checking == -1)
960 options->strict_host_key_checking = 2; /* 2 is default */
961 if (options->compression == -1)
962 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +1100963 if (options->tcp_keep_alive == -1)
964 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +1100965 if (options->compression_level == -1)
966 options->compression_level = 6;
967 if (options->port == -1)
968 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000969 if (options->address_family == -1)
970 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +1100971 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000972 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100973 if (options->number_of_password_prompts == -1)
974 options->number_of_password_prompts = 3;
975 /* Selected in ssh_login(). */
976 if (options->cipher == -1)
977 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000978 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000979 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000980 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000981 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000982 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100983 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100984 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000985 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100986 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000987 xmalloc(len);
988 snprintf(options->identity_files[options->num_identity_files++],
989 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100990 }
991 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000992 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
993 options->identity_files[options->num_identity_files] =
994 xmalloc(len);
995 snprintf(options->identity_files[options->num_identity_files++],
996 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
997
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000998 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100999 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001000 xmalloc(len);
1001 snprintf(options->identity_files[options->num_identity_files++],
1002 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001003 }
Damien Millereba71ba2000-04-29 23:57:08 +10001004 }
Damien Miller95def091999-11-25 00:26:21 +11001005 if (options->escape_char == -1)
1006 options->escape_char = '~';
1007 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001008 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +11001009 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001010 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +10001011 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001012 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +10001013 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001014 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +11001015 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001016 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001017 if (options->clear_forwardings == 1)
1018 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001019 if (options->no_host_authentication_for_localhost == - 1)
1020 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001021 if (options->identities_only == -1)
1022 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001023 if (options->enable_ssh_keysign == -1)
1024 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001025 if (options->rekey_limit == -1)
1026 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001027 if (options->verify_host_key_dns == -1)
1028 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001029 if (options->server_alive_interval == -1)
1030 options->server_alive_interval = 0;
1031 if (options->server_alive_count_max == -1)
1032 options->server_alive_count_max = 3;
Damien Miller95def091999-11-25 00:26:21 +11001033 /* options->proxy_command should not be set by default */
1034 /* options->user will be set in the main program if appropriate */
1035 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001036 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001037 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001038}