blob: da49a3944a929f2d31925bcbc073185d658d3dbb [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 Miller150b5572003-11-17 21:19:29 +110015RCSID("$OpenBSD: readconf.c,v 1.125 2003/11/12 16:39:58 jakob 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
81 KeepAlives no
82 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,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000099 oCompressionLevel, oKeepAlives, 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 Millerf9b3feb2003-05-16 11:38:32 +1000108 oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109} OpCodes;
110
111/* Textual representations of the tokens. */
112
Damien Miller95def091999-11-25 00:26:21 +1100113static struct {
114 const char *name;
115 OpCodes opcode;
116} keywords[] = {
117 { "forwardagent", oForwardAgent },
118 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000119 { "forwardx11trusted", oForwardX11Trusted },
Damien Millerd3a18572000-06-07 19:55:44 +1000120 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100121 { "gatewayports", oGatewayPorts },
122 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000123 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100124 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100125 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
126 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100127 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100128 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000129 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000130 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000131 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000132 { "challengeresponseauthentication", oChallengeResponseAuthentication },
133 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
134 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000135 { "kerberosauthentication", oUnsupported },
136 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000137 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000138#if defined(GSSAPI)
139 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000140 { "gssapidelegatecredentials", oGssDelegateCreds },
141#else
142 { "gssapiauthentication", oUnsupported },
143 { "gssapidelegatecredentials", oUnsupported },
144#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000145 { "fallbacktorsh", oDeprecated },
146 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100147 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100148 { "identityfile2", oIdentityFile }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100149 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000150 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100151 { "proxycommand", oProxyCommand },
152 { "port", oPort },
153 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000154 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000155 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000156 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100157 { "remoteforward", oRemoteForward },
158 { "localforward", oLocalForward },
159 { "user", oUser },
160 { "host", oHost },
161 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100162 { "globalknownhostsfile", oGlobalKnownHostsFile },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000163 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
Damien Millereba71ba2000-04-29 23:57:08 +1000164 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000165 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100166 { "connectionattempts", oConnectionAttempts },
167 { "batchmode", oBatchMode },
168 { "checkhostip", oCheckHostIP },
169 { "stricthostkeychecking", oStrictHostKeyChecking },
170 { "compression", oCompression },
171 { "compressionlevel", oCompressionLevel },
172 { "keepalive", oKeepAlives },
173 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100174 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000175 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000176 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000177 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000178 { "bindaddress", oBindAddress },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000179#ifdef SMARTCARD
Ben Lindstromae996bf2001-08-06 21:27:53 +0000180 { "smartcarddevice", oSmartcardDevice },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000181#else
182 { "smartcarddevice", oUnsupported },
183#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100184 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000185 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000186 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100187 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000188 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000189 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000190 { "addressfamily", oAddressFamily },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000191 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100192};
193
Damien Miller5428f641999-11-25 11:54:57 +1100194/*
195 * Adds a local TCP/IP port forward to options. Never returns if there is an
196 * error.
197 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198
Damien Miller4af51302000-04-16 11:18:38 +1000199void
Damien Milleraae6c611999-12-06 11:47:28 +1100200add_local_forward(Options *options, u_short port, const char *host,
201 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller95def091999-11-25 00:26:21 +1100203 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000204#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100205 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100206 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000207 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100208#endif
Damien Miller95def091999-11-25 00:26:21 +1100209 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
210 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
211 fwd = &options->local_forwards[options->num_local_forwards++];
212 fwd->port = port;
213 fwd->host = xstrdup(host);
214 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Adds a remote TCP/IP port forward to options. Never returns if there is
219 * an error.
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221
Damien Miller4af51302000-04-16 11:18:38 +1000222void
Damien Milleraae6c611999-12-06 11:47:28 +1100223add_remote_forward(Options *options, u_short port, const char *host,
224 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225{
Damien Miller95def091999-11-25 00:26:21 +1100226 Forward *fwd;
227 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
228 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100229 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100230 fwd = &options->remote_forwards[options->num_remote_forwards++];
231 fwd->port = port;
232 fwd->host = xstrdup(host);
233 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234}
235
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000236static void
237clear_forwardings(Options *options)
238{
239 int i;
240
241 for (i = 0; i < options->num_local_forwards; i++)
242 xfree(options->local_forwards[i].host);
243 options->num_local_forwards = 0;
244 for (i = 0; i < options->num_remote_forwards; i++)
245 xfree(options->remote_forwards[i].host);
246 options->num_remote_forwards = 0;
247}
248
Damien Miller5428f641999-11-25 11:54:57 +1100249/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000250 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100251 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252
Damien Miller4af51302000-04-16 11:18:38 +1000253static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100254parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000256 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller95def091999-11-25 00:26:21 +1100258 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100259 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100260 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000262 error("%s: line %d: Bad configuration option: %s",
263 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100264 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265}
266
Damien Miller5428f641999-11-25 11:54:57 +1100267/*
268 * Processes a single option line as used in the configuration files. This
269 * only sets those values that have not already been set.
270 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100271#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller2ccf6611999-11-15 15:25:10 +1100273int
274process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100275 char *line, const char *filename, int linenum,
276 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277{
Damien Miller61f08ac2003-02-24 11:56:27 +1100278 char buf[256], *s, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100279 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100280 size_t len;
Damien Milleraae6c611999-12-06 11:47:28 +1100281 u_short fwd_port, fwd_host_port;
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000282 char sfwd_host_port[6];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Damien Millerc652cac2003-05-14 13:40:54 +1000284 /* Strip trailing whitespace */
285 for(len = strlen(line) - 1; len > 0; len--) {
286 if (strchr(WHITESPACE, line[len]) == NULL)
287 break;
288 line[len] = '\0';
289 }
290
Damien Millerbe484b52000-07-15 14:14:16 +1000291 s = line;
292 /* Get the keyword. (Each line is supposed to begin with a keyword). */
293 keyword = strdelim(&s);
294 /* Ignore leading whitespace. */
295 if (*keyword == '\0')
296 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000297 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100298 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller37023962000-07-11 17:31:38 +1000300 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301
Damien Miller95def091999-11-25 00:26:21 +1100302 switch (opcode) {
303 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100304 /* don't panic, but count bad options */
305 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100306 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000307 case oConnectTimeout:
308 intptr = &options->connection_timeout;
309/* parse_time: */
310 arg = strdelim(&s);
311 if (!arg || *arg == '\0')
312 fatal("%s line %d: missing time value.",
313 filename, linenum);
314 if ((value = convtime(arg)) == -1)
315 fatal("%s line %d: invalid time value.",
316 filename, linenum);
317 if (*intptr == -1)
318 *intptr = value;
319 break;
320
Damien Miller95def091999-11-25 00:26:21 +1100321 case oForwardAgent:
322 intptr = &options->forward_agent;
323parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000324 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000325 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100326 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
327 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000328 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100329 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000330 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100331 value = 0;
332 else
333 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
334 if (*activep && *intptr == -1)
335 *intptr = value;
336 break;
337
338 case oForwardX11:
339 intptr = &options->forward_x11;
340 goto parse_flag;
341
Darren Tucker0a118da2003-10-15 15:54:32 +1000342 case oForwardX11Trusted:
343 intptr = &options->forward_x11_trusted;
344 goto parse_flag;
345
Damien Miller95def091999-11-25 00:26:21 +1100346 case oGatewayPorts:
347 intptr = &options->gateway_ports;
348 goto parse_flag;
349
350 case oUsePrivilegedPort:
351 intptr = &options->use_privileged_port;
352 goto parse_flag;
353
Damien Miller95def091999-11-25 00:26:21 +1100354 case oPasswordAuthentication:
355 intptr = &options->password_authentication;
356 goto parse_flag;
357
Damien Miller874d77b2000-10-14 16:23:11 +1100358 case oKbdInteractiveAuthentication:
359 intptr = &options->kbd_interactive_authentication;
360 goto parse_flag;
361
362 case oKbdInteractiveDevices:
363 charptr = &options->kbd_interactive_devices;
364 goto parse_string;
365
Damien Miller0bc1bd82000-11-13 22:57:25 +1100366 case oPubkeyAuthentication:
367 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000368 goto parse_flag;
369
Damien Miller95def091999-11-25 00:26:21 +1100370 case oRSAAuthentication:
371 intptr = &options->rsa_authentication;
372 goto parse_flag;
373
374 case oRhostsRSAAuthentication:
375 intptr = &options->rhosts_rsa_authentication;
376 goto parse_flag;
377
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000378 case oHostbasedAuthentication:
379 intptr = &options->hostbased_authentication;
380 goto parse_flag;
381
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000382 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000383 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100384 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000385
Darren Tucker0efd1552003-08-26 11:49:55 +1000386 case oGssAuthentication:
387 intptr = &options->gss_authentication;
388 goto parse_flag;
389
390 case oGssDelegateCreds:
391 intptr = &options->gss_deleg_creds;
392 goto parse_flag;
393
Damien Miller95def091999-11-25 00:26:21 +1100394 case oBatchMode:
395 intptr = &options->batch_mode;
396 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397
Damien Miller95def091999-11-25 00:26:21 +1100398 case oCheckHostIP:
399 intptr = &options->check_host_ip;
400 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401
Damien Miller37876e92003-05-15 10:19:46 +1000402 case oVerifyHostKeyDNS:
403 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100404 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000405
Damien Miller95def091999-11-25 00:26:21 +1100406 case oStrictHostKeyChecking:
407 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100408parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000409 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000410 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000411 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100412 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100413 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000414 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100415 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000416 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100417 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000418 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100419 value = 2;
420 else
421 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
422 if (*activep && *intptr == -1)
423 *intptr = value;
424 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Damien Miller95def091999-11-25 00:26:21 +1100426 case oCompression:
427 intptr = &options->compression;
428 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Damien Miller95def091999-11-25 00:26:21 +1100430 case oKeepAlives:
431 intptr = &options->keepalives;
432 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000434 case oNoHostAuthenticationForLocalhost:
435 intptr = &options->no_host_authentication_for_localhost;
436 goto parse_flag;
437
Damien Miller95def091999-11-25 00:26:21 +1100438 case oNumberOfPasswordPrompts:
439 intptr = &options->number_of_password_prompts;
440 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Damien Miller95def091999-11-25 00:26:21 +1100442 case oCompressionLevel:
443 intptr = &options->compression_level;
444 goto parse_int;
445
Damien Millera5539d22003-04-09 20:50:06 +1000446 case oRekeyLimit:
447 intptr = &options->rekey_limit;
448 arg = strdelim(&s);
449 if (!arg || *arg == '\0')
450 fatal("%.200s line %d: Missing argument.", filename, linenum);
451 if (arg[0] < '0' || arg[0] > '9')
452 fatal("%.200s line %d: Bad number.", filename, linenum);
453 value = strtol(arg, &endofnumber, 10);
454 if (arg == endofnumber)
455 fatal("%.200s line %d: Bad number.", filename, linenum);
456 switch (toupper(*endofnumber)) {
457 case 'K':
458 value *= 1<<10;
459 break;
460 case 'M':
461 value *= 1<<20;
462 break;
463 case 'G':
464 value *= 1<<30;
465 break;
466 }
467 if (*activep && *intptr == -1)
468 *intptr = value;
469 break;
470
Damien Miller95def091999-11-25 00:26:21 +1100471 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000472 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000473 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100474 fatal("%.200s line %d: Missing argument.", filename, linenum);
475 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100476 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000477 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100478 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100479 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100480 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000481 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000482 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100483 }
484 break;
485
Damien Millerd3a18572000-06-07 19:55:44 +1000486 case oXAuthLocation:
487 charptr=&options->xauth_location;
488 goto parse_string;
489
Damien Miller95def091999-11-25 00:26:21 +1100490 case oUser:
491 charptr = &options->user;
492parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000493 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000494 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100495 fatal("%.200s line %d: Missing argument.", filename, linenum);
496 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000497 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100498 break;
499
500 case oGlobalKnownHostsFile:
501 charptr = &options->system_hostfile;
502 goto parse_string;
503
504 case oUserKnownHostsFile:
505 charptr = &options->user_hostfile;
506 goto parse_string;
507
Damien Millereba71ba2000-04-29 23:57:08 +1000508 case oGlobalKnownHostsFile2:
509 charptr = &options->system_hostfile2;
510 goto parse_string;
511
512 case oUserKnownHostsFile2:
513 charptr = &options->user_hostfile2;
514 goto parse_string;
515
Damien Miller95def091999-11-25 00:26:21 +1100516 case oHostName:
517 charptr = &options->hostname;
518 goto parse_string;
519
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000520 case oHostKeyAlias:
521 charptr = &options->host_key_alias;
522 goto parse_string;
523
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000524 case oPreferredAuthentications:
525 charptr = &options->preferred_authentications;
526 goto parse_string;
527
Ben Lindstrome0f88042001-04-30 13:06:24 +0000528 case oBindAddress:
529 charptr = &options->bind_address;
530 goto parse_string;
531
Ben Lindstromae996bf2001-08-06 21:27:53 +0000532 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000533 charptr = &options->smartcard_device;
534 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000535
Damien Miller95def091999-11-25 00:26:21 +1100536 case oProxyCommand:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000537 if (s == NULL)
538 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100539 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100540 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100541 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100542 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100543 return 0;
544
545 case oPort:
546 intptr = &options->port;
547parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000548 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000549 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100550 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000551 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100552 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100553
554 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000555 value = strtol(arg, &endofnumber, 0);
556 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100557 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100558 if (*activep && *intptr == -1)
559 *intptr = value;
560 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Damien Miller95def091999-11-25 00:26:21 +1100562 case oConnectionAttempts:
563 intptr = &options->connection_attempts;
564 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100565
Damien Miller95def091999-11-25 00:26:21 +1100566 case oCipher:
567 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000568 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000569 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000570 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000571 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100572 if (value == -1)
573 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100574 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100575 if (*activep && *intptr == -1)
576 *intptr = value;
577 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller78928792000-04-12 20:17:38 +1000579 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000580 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000581 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000582 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000583 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000584 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100585 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000586 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000587 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000588 break;
589
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000590 case oMacs:
591 arg = strdelim(&s);
592 if (!arg || *arg == '\0')
593 fatal("%.200s line %d: Missing argument.", filename, linenum);
594 if (!mac_valid(arg))
595 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100596 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000597 if (*activep && options->macs == NULL)
598 options->macs = xstrdup(arg);
599 break;
600
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000601 case oHostKeyAlgorithms:
602 arg = strdelim(&s);
603 if (!arg || *arg == '\0')
604 fatal("%.200s line %d: Missing argument.", filename, linenum);
605 if (!key_names_valid2(arg))
606 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100607 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000608 if (*activep && options->hostkeyalgorithms == NULL)
609 options->hostkeyalgorithms = xstrdup(arg);
610 break;
611
Damien Miller78928792000-04-12 20:17:38 +1000612 case oProtocol:
613 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000614 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000615 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000616 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000617 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000618 if (value == SSH_PROTO_UNKNOWN)
619 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100620 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000621 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
622 *intptr = value;
623 break;
624
Damien Miller95def091999-11-25 00:26:21 +1100625 case oLogLevel:
626 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000627 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000628 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100629 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000630 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100631 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100632 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100633 *intptr = (LogLevel) value;
634 break;
635
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000636 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100637 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000638 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000639 if (!arg || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000640 fatal("%.200s line %d: Missing port argument.",
641 filename, linenum);
642 if ((fwd_port = a2port(arg)) == 0)
643 fatal("%.200s line %d: Bad listen port.",
644 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000645 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000646 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100647 fatal("%.200s line %d: Missing second argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000648 filename, linenum);
649 if (sscanf(arg, "%255[^:]:%5[0-9]", buf, sfwd_host_port) != 2 &&
650 sscanf(arg, "%255[^/]/%5[0-9]", buf, sfwd_host_port) != 2)
651 fatal("%.200s line %d: Bad forwarding specification.",
652 filename, linenum);
653 if ((fwd_host_port = a2port(sfwd_host_port)) == 0)
654 fatal("%.200s line %d: Bad forwarding port.",
655 filename, linenum);
656 if (*activep) {
657 if (opcode == oLocalForward)
658 add_local_forward(options, fwd_port, buf,
659 fwd_host_port);
660 else if (opcode == oRemoteForward)
661 add_remote_forward(options, fwd_port, buf,
662 fwd_host_port);
663 }
Damien Miller95def091999-11-25 00:26:21 +1100664 break;
665
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000666 case oDynamicForward:
667 arg = strdelim(&s);
668 if (!arg || *arg == '\0')
669 fatal("%.200s line %d: Missing port argument.",
670 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000671 fwd_port = a2port(arg);
672 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000673 fatal("%.200s line %d: Badly formatted port number.",
674 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000675 if (*activep)
Darren Tucker1c52ee32003-08-13 20:38:36 +1000676 add_local_forward(options, fwd_port, "socks", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000677 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000678
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000679 case oClearAllForwardings:
680 intptr = &options->clear_forwardings;
681 goto parse_flag;
682
Damien Miller95def091999-11-25 00:26:21 +1100683 case oHost:
684 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000685 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000686 if (match_pattern(host, arg)) {
687 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100688 *activep = 1;
689 break;
690 }
Damien Millerbe484b52000-07-15 14:14:16 +1000691 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100692 return 0;
693
694 case oEscapeChar:
695 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000696 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000697 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100698 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000699 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000700 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
701 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000702 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000703 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000704 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000705 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100706 else {
707 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100708 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100709 /* NOTREACHED */
710 value = 0; /* Avoid compiler warning. */
711 }
712 if (*activep && *intptr == -1)
713 *intptr = value;
714 break;
715
Damien Miller20a8f972003-05-18 20:50:30 +1000716 case oAddressFamily:
717 arg = strdelim(&s);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000718 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000719 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000720 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000721 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000722 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000723 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000724 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000725 else
726 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000727 if (*activep && *intptr == -1)
728 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000729 break;
730
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000731 case oEnableSSHKeysign:
732 intptr = &options->enable_ssh_keysign;
733 goto parse_flag;
734
Ben Lindstrom4daea862002-06-09 20:04:02 +0000735 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000736 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000737 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000738 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000739
Damien Millerf9b3feb2003-05-16 11:38:32 +1000740 case oUnsupported:
741 error("%s line %d: Unsupported option \"%s\"",
742 filename, linenum, keyword);
743 return 0;
744
Damien Miller95def091999-11-25 00:26:21 +1100745 default:
746 fatal("process_config_line: Unimplemented opcode %d", opcode);
747 }
748
749 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000750 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000751 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100752 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000753 }
Damien Miller95def091999-11-25 00:26:21 +1100754 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000755}
756
757
Damien Miller5428f641999-11-25 11:54:57 +1100758/*
759 * Reads the config file and modifies the options accordingly. Options
760 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000761 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100762 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000763
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000764int
Damien Miller95def091999-11-25 00:26:21 +1100765read_config_file(const char *filename, const char *host, Options *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000766{
Damien Miller95def091999-11-25 00:26:21 +1100767 FILE *f;
768 char line[1024];
769 int active, linenum;
770 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000771
Damien Miller95def091999-11-25 00:26:21 +1100772 /* Open the file. */
773 f = fopen(filename, "r");
774 if (!f)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000775 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776
Damien Miller95def091999-11-25 00:26:21 +1100777 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778
Damien Miller5428f641999-11-25 11:54:57 +1100779 /*
780 * Mark that we are now processing the options. This flag is turned
781 * on/off by Host specifications.
782 */
Damien Miller95def091999-11-25 00:26:21 +1100783 active = 1;
784 linenum = 0;
785 while (fgets(line, sizeof(line), f)) {
786 /* Update line number counter. */
787 linenum++;
788 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
789 bad_options++;
790 }
791 fclose(f);
792 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000793 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100794 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000795 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796}
797
Damien Miller5428f641999-11-25 11:54:57 +1100798/*
799 * Initializes options to special values that indicate that they have not yet
800 * been set. Read_config_file will only set options with this value. Options
801 * are processed in the following order: command line, user config file,
802 * system config file. Last, fill_default_options is called.
803 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804
Damien Miller4af51302000-04-16 11:18:38 +1000805void
Damien Miller95def091999-11-25 00:26:21 +1100806initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000807{
Damien Miller95def091999-11-25 00:26:21 +1100808 memset(options, 'X', sizeof(*options));
809 options->forward_agent = -1;
810 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +1000811 options->forward_x11_trusted = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000812 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100813 options->gateway_ports = -1;
814 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +1100815 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100816 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000817 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000818 options->gss_authentication = -1;
819 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100820 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100821 options->kbd_interactive_authentication = -1;
822 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100823 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000824 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100825 options->batch_mode = -1;
826 options->check_host_ip = -1;
827 options->strict_host_key_checking = -1;
828 options->compression = -1;
829 options->keepalives = -1;
830 options->compression_level = -1;
831 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000832 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +1100833 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000834 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +1100835 options->number_of_password_prompts = -1;
836 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000837 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000838 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000839 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000840 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100841 options->num_identity_files = 0;
842 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000843 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100844 options->proxy_command = NULL;
845 options->user = NULL;
846 options->escape_char = -1;
847 options->system_hostfile = NULL;
848 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000849 options->system_hostfile2 = NULL;
850 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100851 options->num_local_forwards = 0;
852 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000853 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100854 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000855 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000856 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000857 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000858 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000859 options->no_host_authentication_for_localhost = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000860 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000861 options->verify_host_key_dns = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000862}
863
Damien Miller5428f641999-11-25 11:54:57 +1100864/*
865 * Called after processing other sources of option data, this fills those
866 * options for which no value has been specified with their default values.
867 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000868
Damien Miller4af51302000-04-16 11:18:38 +1000869void
Damien Miller95def091999-11-25 00:26:21 +1100870fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000871{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000872 int len;
873
Damien Miller95def091999-11-25 00:26:21 +1100874 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000875 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100876 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100877 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +1000878 if (options->forward_x11_trusted == -1)
879 options->forward_x11_trusted = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000880 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000881 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100882 if (options->gateway_ports == -1)
883 options->gateway_ports = 0;
884 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000885 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100886 if (options->rsa_authentication == -1)
887 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100888 if (options->pubkey_authentication == -1)
889 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000890 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000891 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000892 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +1000893 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000894 if (options->gss_deleg_creds == -1)
895 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100896 if (options->password_authentication == -1)
897 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100898 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000899 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100900 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000901 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000902 if (options->hostbased_authentication == -1)
903 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100904 if (options->batch_mode == -1)
905 options->batch_mode = 0;
906 if (options->check_host_ip == -1)
907 options->check_host_ip = 1;
908 if (options->strict_host_key_checking == -1)
909 options->strict_host_key_checking = 2; /* 2 is default */
910 if (options->compression == -1)
911 options->compression = 0;
912 if (options->keepalives == -1)
913 options->keepalives = 1;
914 if (options->compression_level == -1)
915 options->compression_level = 6;
916 if (options->port == -1)
917 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000918 if (options->address_family == -1)
919 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +1100920 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000921 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100922 if (options->number_of_password_prompts == -1)
923 options->number_of_password_prompts = 3;
924 /* Selected in ssh_login(). */
925 if (options->cipher == -1)
926 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000927 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000928 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000929 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000930 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000931 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100932 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100933 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000934 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100935 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000936 xmalloc(len);
937 snprintf(options->identity_files[options->num_identity_files++],
938 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 }
940 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000941 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
942 options->identity_files[options->num_identity_files] =
943 xmalloc(len);
944 snprintf(options->identity_files[options->num_identity_files++],
945 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
946
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000947 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100948 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000949 xmalloc(len);
950 snprintf(options->identity_files[options->num_identity_files++],
951 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100952 }
Damien Millereba71ba2000-04-29 23:57:08 +1000953 }
Damien Miller95def091999-11-25 00:26:21 +1100954 if (options->escape_char == -1)
955 options->escape_char = '~';
956 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000957 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100958 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000959 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000960 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000961 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000962 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000963 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +1100964 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000965 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000966 if (options->clear_forwardings == 1)
967 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000968 if (options->no_host_authentication_for_localhost == - 1)
969 options->no_host_authentication_for_localhost = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000970 if (options->enable_ssh_keysign == -1)
971 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +1000972 if (options->rekey_limit == -1)
973 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000974 if (options->verify_host_key_dns == -1)
975 options->verify_host_key_dns = 0;
Damien Miller95def091999-11-25 00:26:21 +1100976 /* options->proxy_command should not be set by default */
977 /* options->user will be set in the main program if appropriate */
978 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000979 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000980 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000981}