blob: fee7a89934be8730d4ff45e950365ee0a151b851 [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 Millerf9b3feb2003-05-16 11:38:32 +100015RCSID("$OpenBSD: readconf.c,v 1.110 2003/05/15 14:02:47 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
60 RhostsAuthentication no
61 PasswordAuthentication no
62
63 Host puukko.hut.fi
64 User t35124p
65 ProxyCommand ssh-proxy %h %p
66
67 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000068 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
70 Host *.su
71 Cipher none
72 PasswordAuthentication no
73
74 # Defaults for various options
75 Host *
76 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +110077 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078 RhostsAuthentication yes
79 PasswordAuthentication yes
80 RSAAuthentication yes
81 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082 StrictHostKeyChecking yes
83 KeepAlives no
84 IdentityFile ~/.ssh/identity
85 Port 22
86 EscapeChar ~
87
88*/
89
90/* Keyword tokens. */
91
Damien Miller95def091999-11-25 00:26:21 +110092typedef enum {
93 oBadOption,
94 oForwardAgent, oForwardX11, oGatewayPorts, oRhostsAuthentication,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000095 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000096 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller2aa0ab42003-05-15 12:05:28 +100097 oKerberosAuthentication, oKerberosTgtPassing, oAFSTokenPassing,
Damien Miller95def091999-11-25 00:26:21 +110098 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
99 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
100 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
101 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000102 oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000103 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100104 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000105 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000106 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000107 oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000108 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Miller37876e92003-05-15 10:19:46 +1000109 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS,
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 },
Damien Millerd3a18572000-06-07 19:55:44 +1000121 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100122 { "gatewayports", oGatewayPorts },
123 { "useprivilegedport", oUsePrivilegedPort },
124 { "rhostsauthentication", oRhostsAuthentication },
125 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100126 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
127 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100128 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100129 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000130 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000131 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000132 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000133 { "challengeresponseauthentication", oChallengeResponseAuthentication },
134 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
135 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000136#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100137 { "kerberosauthentication", oKerberosAuthentication },
Damien Miller95def091999-11-25 00:26:21 +1100138 { "kerberostgtpassing", oKerberosTgtPassing },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000139#else
140 { "kerberosauthentication", oUnsupported },
141 { "kerberostgtpassing", oUnsupported },
142#endif
143#if defined(AFS)
Damien Miller95def091999-11-25 00:26:21 +1100144 { "afstokenpassing", oAFSTokenPassing },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000145#else
146 { "afstokenpassing", oUnsupported },
147#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000148 { "fallbacktorsh", oDeprecated },
149 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100150 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100151 { "identityfile2", oIdentityFile }, /* alias */
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 },
175 { "keepalive", oKeepAlives },
176 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100177 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000178 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000179 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000180 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000181 { "bindaddress", oBindAddress },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000182#ifdef SMARTCARD
Ben Lindstromae996bf2001-08-06 21:27:53 +0000183 { "smartcarddevice", oSmartcardDevice },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000184#else
185 { "smartcarddevice", oUnsupported },
186#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100187 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000188 { "enablesshkeysign", oEnableSSHKeysign },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000189#ifdef DNS
Damien Miller37876e92003-05-15 10:19:46 +1000190 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000191#else
192 { "verifyhostkeydns", oUnsupported },
193#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100194 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000195 { "rekeylimit", oRekeyLimit },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000196 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100197};
198
Damien Miller5428f641999-11-25 11:54:57 +1100199/*
200 * Adds a local TCP/IP port forward to options. Never returns if there is an
201 * error.
202 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller4af51302000-04-16 11:18:38 +1000204void
Damien Milleraae6c611999-12-06 11:47:28 +1100205add_local_forward(Options *options, u_short port, const char *host,
206 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207{
Damien Miller95def091999-11-25 00:26:21 +1100208 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000209#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100210 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100211 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000212 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100213#endif
Damien Miller95def091999-11-25 00:26:21 +1100214 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
215 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
216 fwd = &options->local_forwards[options->num_local_forwards++];
217 fwd->port = port;
218 fwd->host = xstrdup(host);
219 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220}
221
Damien Miller5428f641999-11-25 11:54:57 +1100222/*
223 * Adds a remote TCP/IP port forward to options. Never returns if there is
224 * an error.
225 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Damien Miller4af51302000-04-16 11:18:38 +1000227void
Damien Milleraae6c611999-12-06 11:47:28 +1100228add_remote_forward(Options *options, u_short port, const char *host,
229 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Damien Miller95def091999-11-25 00:26:21 +1100231 Forward *fwd;
232 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
233 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100234 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100235 fwd = &options->remote_forwards[options->num_remote_forwards++];
236 fwd->port = port;
237 fwd->host = xstrdup(host);
238 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239}
240
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000241static void
242clear_forwardings(Options *options)
243{
244 int i;
245
246 for (i = 0; i < options->num_local_forwards; i++)
247 xfree(options->local_forwards[i].host);
248 options->num_local_forwards = 0;
249 for (i = 0; i < options->num_remote_forwards; i++)
250 xfree(options->remote_forwards[i].host);
251 options->num_remote_forwards = 0;
252}
253
Damien Miller5428f641999-11-25 11:54:57 +1100254/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000255 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100256 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller4af51302000-04-16 11:18:38 +1000258static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100259parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000261 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller95def091999-11-25 00:26:21 +1100263 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100264 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100265 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000267 error("%s: line %d: Bad configuration option: %s",
268 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100269 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
271
Damien Miller5428f641999-11-25 11:54:57 +1100272/*
273 * Processes a single option line as used in the configuration files. This
274 * only sets those values that have not already been set.
275 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100276#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller2ccf6611999-11-15 15:25:10 +1100278int
279process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100280 char *line, const char *filename, int linenum,
281 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282{
Damien Miller61f08ac2003-02-24 11:56:27 +1100283 char buf[256], *s, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100284 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100285 size_t len;
Damien Milleraae6c611999-12-06 11:47:28 +1100286 u_short fwd_port, fwd_host_port;
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000287 char sfwd_host_port[6];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288
Damien Millerc652cac2003-05-14 13:40:54 +1000289 /* Strip trailing whitespace */
290 for(len = strlen(line) - 1; len > 0; len--) {
291 if (strchr(WHITESPACE, line[len]) == NULL)
292 break;
293 line[len] = '\0';
294 }
295
Damien Millerbe484b52000-07-15 14:14:16 +1000296 s = line;
297 /* Get the keyword. (Each line is supposed to begin with a keyword). */
298 keyword = strdelim(&s);
299 /* Ignore leading whitespace. */
300 if (*keyword == '\0')
301 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000302 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100303 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304
Damien Miller37023962000-07-11 17:31:38 +1000305 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306
Damien Miller95def091999-11-25 00:26:21 +1100307 switch (opcode) {
308 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100309 /* don't panic, but count bad options */
310 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100311 /* NOTREACHED */
312 case oForwardAgent:
313 intptr = &options->forward_agent;
314parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000315 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000316 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100317 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
318 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000319 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100320 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000321 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100322 value = 0;
323 else
324 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
325 if (*activep && *intptr == -1)
326 *intptr = value;
327 break;
328
329 case oForwardX11:
330 intptr = &options->forward_x11;
331 goto parse_flag;
332
333 case oGatewayPorts:
334 intptr = &options->gateway_ports;
335 goto parse_flag;
336
337 case oUsePrivilegedPort:
338 intptr = &options->use_privileged_port;
339 goto parse_flag;
340
341 case oRhostsAuthentication:
342 intptr = &options->rhosts_authentication;
343 goto parse_flag;
344
345 case oPasswordAuthentication:
346 intptr = &options->password_authentication;
347 goto parse_flag;
348
Damien Miller874d77b2000-10-14 16:23:11 +1100349 case oKbdInteractiveAuthentication:
350 intptr = &options->kbd_interactive_authentication;
351 goto parse_flag;
352
353 case oKbdInteractiveDevices:
354 charptr = &options->kbd_interactive_devices;
355 goto parse_string;
356
Damien Miller0bc1bd82000-11-13 22:57:25 +1100357 case oPubkeyAuthentication:
358 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000359 goto parse_flag;
360
Damien Miller95def091999-11-25 00:26:21 +1100361 case oRSAAuthentication:
362 intptr = &options->rsa_authentication;
363 goto parse_flag;
364
365 case oRhostsRSAAuthentication:
366 intptr = &options->rhosts_rsa_authentication;
367 goto parse_flag;
368
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000369 case oHostbasedAuthentication:
370 intptr = &options->hostbased_authentication;
371 goto parse_flag;
372
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000373 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000374 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100375 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000376
Damien Miller95def091999-11-25 00:26:21 +1100377 case oKerberosAuthentication:
378 intptr = &options->kerberos_authentication;
379 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000380
Damien Miller95def091999-11-25 00:26:21 +1100381 case oKerberosTgtPassing:
382 intptr = &options->kerberos_tgt_passing;
383 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000384
Damien Miller95def091999-11-25 00:26:21 +1100385 case oAFSTokenPassing:
386 intptr = &options->afs_token_passing;
387 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000388
Damien Miller95def091999-11-25 00:26:21 +1100389 case oBatchMode:
390 intptr = &options->batch_mode;
391 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Damien Miller95def091999-11-25 00:26:21 +1100393 case oCheckHostIP:
394 intptr = &options->check_host_ip;
395 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
Damien Miller37876e92003-05-15 10:19:46 +1000397 case oVerifyHostKeyDNS:
398 intptr = &options->verify_host_key_dns;
399 goto parse_flag;
400
Damien Miller95def091999-11-25 00:26:21 +1100401 case oStrictHostKeyChecking:
402 intptr = &options->strict_host_key_checking;
Damien Millerbe484b52000-07-15 14:14:16 +1000403 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000404 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000405 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100406 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100407 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000408 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100409 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000410 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100411 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000412 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100413 value = 2;
414 else
415 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
416 if (*activep && *intptr == -1)
417 *intptr = value;
418 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Miller95def091999-11-25 00:26:21 +1100420 case oCompression:
421 intptr = &options->compression;
422 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Damien Miller95def091999-11-25 00:26:21 +1100424 case oKeepAlives:
425 intptr = &options->keepalives;
426 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000428 case oNoHostAuthenticationForLocalhost:
429 intptr = &options->no_host_authentication_for_localhost;
430 goto parse_flag;
431
Damien Miller95def091999-11-25 00:26:21 +1100432 case oNumberOfPasswordPrompts:
433 intptr = &options->number_of_password_prompts;
434 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435
Damien Miller95def091999-11-25 00:26:21 +1100436 case oCompressionLevel:
437 intptr = &options->compression_level;
438 goto parse_int;
439
Damien Millera5539d22003-04-09 20:50:06 +1000440 case oRekeyLimit:
441 intptr = &options->rekey_limit;
442 arg = strdelim(&s);
443 if (!arg || *arg == '\0')
444 fatal("%.200s line %d: Missing argument.", filename, linenum);
445 if (arg[0] < '0' || arg[0] > '9')
446 fatal("%.200s line %d: Bad number.", filename, linenum);
447 value = strtol(arg, &endofnumber, 10);
448 if (arg == endofnumber)
449 fatal("%.200s line %d: Bad number.", filename, linenum);
450 switch (toupper(*endofnumber)) {
451 case 'K':
452 value *= 1<<10;
453 break;
454 case 'M':
455 value *= 1<<20;
456 break;
457 case 'G':
458 value *= 1<<30;
459 break;
460 }
461 if (*activep && *intptr == -1)
462 *intptr = value;
463 break;
464
Damien Miller95def091999-11-25 00:26:21 +1100465 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000466 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000467 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100468 fatal("%.200s line %d: Missing argument.", filename, linenum);
469 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100470 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000471 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100472 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100473 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100474 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000475 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000476 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100477 }
478 break;
479
Damien Millerd3a18572000-06-07 19:55:44 +1000480 case oXAuthLocation:
481 charptr=&options->xauth_location;
482 goto parse_string;
483
Damien Miller95def091999-11-25 00:26:21 +1100484 case oUser:
485 charptr = &options->user;
486parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000487 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000488 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100489 fatal("%.200s line %d: Missing argument.", filename, linenum);
490 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000491 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100492 break;
493
494 case oGlobalKnownHostsFile:
495 charptr = &options->system_hostfile;
496 goto parse_string;
497
498 case oUserKnownHostsFile:
499 charptr = &options->user_hostfile;
500 goto parse_string;
501
Damien Millereba71ba2000-04-29 23:57:08 +1000502 case oGlobalKnownHostsFile2:
503 charptr = &options->system_hostfile2;
504 goto parse_string;
505
506 case oUserKnownHostsFile2:
507 charptr = &options->user_hostfile2;
508 goto parse_string;
509
Damien Miller95def091999-11-25 00:26:21 +1100510 case oHostName:
511 charptr = &options->hostname;
512 goto parse_string;
513
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000514 case oHostKeyAlias:
515 charptr = &options->host_key_alias;
516 goto parse_string;
517
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000518 case oPreferredAuthentications:
519 charptr = &options->preferred_authentications;
520 goto parse_string;
521
Ben Lindstrome0f88042001-04-30 13:06:24 +0000522 case oBindAddress:
523 charptr = &options->bind_address;
524 goto parse_string;
525
Ben Lindstromae996bf2001-08-06 21:27:53 +0000526 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000527 charptr = &options->smartcard_device;
528 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000529
Damien Miller95def091999-11-25 00:26:21 +1100530 case oProxyCommand:
531 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100532 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100533 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100534 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100535 return 0;
536
537 case oPort:
538 intptr = &options->port;
539parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000540 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000541 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100542 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000543 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100544 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100545
546 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000547 value = strtol(arg, &endofnumber, 0);
548 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100549 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100550 if (*activep && *intptr == -1)
551 *intptr = value;
552 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Damien Miller95def091999-11-25 00:26:21 +1100554 case oConnectionAttempts:
555 intptr = &options->connection_attempts;
556 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100557
Damien Miller95def091999-11-25 00:26:21 +1100558 case oCipher:
559 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000560 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000561 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000562 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000563 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100564 if (value == -1)
565 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100566 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100567 if (*activep && *intptr == -1)
568 *intptr = value;
569 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller78928792000-04-12 20:17:38 +1000571 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000572 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000573 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000574 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000575 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000576 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100577 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000578 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000579 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000580 break;
581
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000582 case oMacs:
583 arg = strdelim(&s);
584 if (!arg || *arg == '\0')
585 fatal("%.200s line %d: Missing argument.", filename, linenum);
586 if (!mac_valid(arg))
587 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100588 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000589 if (*activep && options->macs == NULL)
590 options->macs = xstrdup(arg);
591 break;
592
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000593 case oHostKeyAlgorithms:
594 arg = strdelim(&s);
595 if (!arg || *arg == '\0')
596 fatal("%.200s line %d: Missing argument.", filename, linenum);
597 if (!key_names_valid2(arg))
598 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100599 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000600 if (*activep && options->hostkeyalgorithms == NULL)
601 options->hostkeyalgorithms = xstrdup(arg);
602 break;
603
Damien Miller78928792000-04-12 20:17:38 +1000604 case oProtocol:
605 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000606 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000607 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000608 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000609 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000610 if (value == SSH_PROTO_UNKNOWN)
611 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100612 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000613 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
614 *intptr = value;
615 break;
616
Damien Miller95def091999-11-25 00:26:21 +1100617 case oLogLevel:
618 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000619 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000620 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100621 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000622 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100623 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100624 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100625 *intptr = (LogLevel) value;
626 break;
627
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000628 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100629 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000630 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000631 if (!arg || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000632 fatal("%.200s line %d: Missing port argument.",
633 filename, linenum);
634 if ((fwd_port = a2port(arg)) == 0)
635 fatal("%.200s line %d: Bad listen port.",
636 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000637 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000638 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100639 fatal("%.200s line %d: Missing second argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000640 filename, linenum);
641 if (sscanf(arg, "%255[^:]:%5[0-9]", buf, sfwd_host_port) != 2 &&
642 sscanf(arg, "%255[^/]/%5[0-9]", buf, sfwd_host_port) != 2)
643 fatal("%.200s line %d: Bad forwarding specification.",
644 filename, linenum);
645 if ((fwd_host_port = a2port(sfwd_host_port)) == 0)
646 fatal("%.200s line %d: Bad forwarding port.",
647 filename, linenum);
648 if (*activep) {
649 if (opcode == oLocalForward)
650 add_local_forward(options, fwd_port, buf,
651 fwd_host_port);
652 else if (opcode == oRemoteForward)
653 add_remote_forward(options, fwd_port, buf,
654 fwd_host_port);
655 }
Damien Miller95def091999-11-25 00:26:21 +1100656 break;
657
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000658 case oDynamicForward:
659 arg = strdelim(&s);
660 if (!arg || *arg == '\0')
661 fatal("%.200s line %d: Missing port argument.",
662 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000663 fwd_port = a2port(arg);
664 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000665 fatal("%.200s line %d: Badly formatted port number.",
666 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000667 if (*activep)
668 add_local_forward(options, fwd_port, "socks4", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000669 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000670
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000671 case oClearAllForwardings:
672 intptr = &options->clear_forwardings;
673 goto parse_flag;
674
Damien Miller95def091999-11-25 00:26:21 +1100675 case oHost:
676 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000677 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000678 if (match_pattern(host, arg)) {
679 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100680 *activep = 1;
681 break;
682 }
Damien Millerbe484b52000-07-15 14:14:16 +1000683 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100684 return 0;
685
686 case oEscapeChar:
687 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000688 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000689 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100690 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000691 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000692 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
693 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000694 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000695 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000696 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000697 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100698 else {
699 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100700 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100701 /* NOTREACHED */
702 value = 0; /* Avoid compiler warning. */
703 }
704 if (*activep && *intptr == -1)
705 *intptr = value;
706 break;
707
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000708 case oEnableSSHKeysign:
709 intptr = &options->enable_ssh_keysign;
710 goto parse_flag;
711
Ben Lindstrom4daea862002-06-09 20:04:02 +0000712 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000713 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000714 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000715 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000716
Damien Millerf9b3feb2003-05-16 11:38:32 +1000717 case oUnsupported:
718 error("%s line %d: Unsupported option \"%s\"",
719 filename, linenum, keyword);
720 return 0;
721
Damien Miller95def091999-11-25 00:26:21 +1100722 default:
723 fatal("process_config_line: Unimplemented opcode %d", opcode);
724 }
725
726 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000727 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000728 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100729 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000730 }
Damien Miller95def091999-11-25 00:26:21 +1100731 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000732}
733
734
Damien Miller5428f641999-11-25 11:54:57 +1100735/*
736 * Reads the config file and modifies the options accordingly. Options
737 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000738 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100739 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000740
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000741int
Damien Miller95def091999-11-25 00:26:21 +1100742read_config_file(const char *filename, const char *host, Options *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000743{
Damien Miller95def091999-11-25 00:26:21 +1100744 FILE *f;
745 char line[1024];
746 int active, linenum;
747 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000748
Damien Miller95def091999-11-25 00:26:21 +1100749 /* Open the file. */
750 f = fopen(filename, "r");
751 if (!f)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000752 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000753
Damien Miller95def091999-11-25 00:26:21 +1100754 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000755
Damien Miller5428f641999-11-25 11:54:57 +1100756 /*
757 * Mark that we are now processing the options. This flag is turned
758 * on/off by Host specifications.
759 */
Damien Miller95def091999-11-25 00:26:21 +1100760 active = 1;
761 linenum = 0;
762 while (fgets(line, sizeof(line), f)) {
763 /* Update line number counter. */
764 linenum++;
765 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
766 bad_options++;
767 }
768 fclose(f);
769 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000770 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100771 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000772 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773}
774
Damien Miller5428f641999-11-25 11:54:57 +1100775/*
776 * Initializes options to special values that indicate that they have not yet
777 * been set. Read_config_file will only set options with this value. Options
778 * are processed in the following order: command line, user config file,
779 * system config file. Last, fill_default_options is called.
780 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000781
Damien Miller4af51302000-04-16 11:18:38 +1000782void
Damien Miller95def091999-11-25 00:26:21 +1100783initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784{
Damien Miller95def091999-11-25 00:26:21 +1100785 memset(options, 'X', sizeof(*options));
786 options->forward_agent = -1;
787 options->forward_x11 = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000788 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100789 options->gateway_ports = -1;
790 options->use_privileged_port = -1;
791 options->rhosts_authentication = -1;
792 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100793 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000794 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100795 options->kerberos_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100796 options->kerberos_tgt_passing = -1;
797 options->afs_token_passing = -1;
Damien Miller95def091999-11-25 00:26:21 +1100798 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100799 options->kbd_interactive_authentication = -1;
800 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100801 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000802 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100803 options->batch_mode = -1;
804 options->check_host_ip = -1;
805 options->strict_host_key_checking = -1;
806 options->compression = -1;
807 options->keepalives = -1;
808 options->compression_level = -1;
809 options->port = -1;
810 options->connection_attempts = -1;
811 options->number_of_password_prompts = -1;
812 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000813 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000814 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000815 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000816 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100817 options->num_identity_files = 0;
818 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000819 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100820 options->proxy_command = NULL;
821 options->user = NULL;
822 options->escape_char = -1;
823 options->system_hostfile = NULL;
824 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000825 options->system_hostfile2 = NULL;
826 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100827 options->num_local_forwards = 0;
828 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000829 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100830 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000831 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000832 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000833 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000834 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000835 options->no_host_authentication_for_localhost = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000836 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000837 options->verify_host_key_dns = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000838}
839
Damien Miller5428f641999-11-25 11:54:57 +1100840/*
841 * Called after processing other sources of option data, this fills those
842 * options for which no value has been specified with their default values.
843 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000844
Damien Miller4af51302000-04-16 11:18:38 +1000845void
Damien Miller95def091999-11-25 00:26:21 +1100846fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000847{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000848 int len;
849
Damien Miller95def091999-11-25 00:26:21 +1100850 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000851 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100852 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100853 options->forward_x11 = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000854 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000855 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100856 if (options->gateway_ports == -1)
857 options->gateway_ports = 0;
858 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000859 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100860 if (options->rhosts_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000861 options->rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100862 if (options->rsa_authentication == -1)
863 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100864 if (options->pubkey_authentication == -1)
865 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000866 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000867 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100868 if (options->kerberos_authentication == -1)
869 options->kerberos_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100870 if (options->kerberos_tgt_passing == -1)
871 options->kerberos_tgt_passing = 1;
872 if (options->afs_token_passing == -1)
873 options->afs_token_passing = 1;
Damien Miller95def091999-11-25 00:26:21 +1100874 if (options->password_authentication == -1)
875 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100876 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000877 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100878 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000879 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000880 if (options->hostbased_authentication == -1)
881 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100882 if (options->batch_mode == -1)
883 options->batch_mode = 0;
884 if (options->check_host_ip == -1)
885 options->check_host_ip = 1;
886 if (options->strict_host_key_checking == -1)
887 options->strict_host_key_checking = 2; /* 2 is default */
888 if (options->compression == -1)
889 options->compression = 0;
890 if (options->keepalives == -1)
891 options->keepalives = 1;
892 if (options->compression_level == -1)
893 options->compression_level = 6;
894 if (options->port == -1)
895 options->port = 0; /* Filled in ssh_connect. */
896 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000897 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100898 if (options->number_of_password_prompts == -1)
899 options->number_of_password_prompts = 3;
900 /* Selected in ssh_login(). */
901 if (options->cipher == -1)
902 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000903 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000904 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000905 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000906 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000907 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100908 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100909 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000910 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100911 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000912 xmalloc(len);
913 snprintf(options->identity_files[options->num_identity_files++],
914 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100915 }
916 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000917 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
918 options->identity_files[options->num_identity_files] =
919 xmalloc(len);
920 snprintf(options->identity_files[options->num_identity_files++],
921 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
922
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000923 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100924 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000925 xmalloc(len);
926 snprintf(options->identity_files[options->num_identity_files++],
927 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100928 }
Damien Millereba71ba2000-04-29 23:57:08 +1000929 }
Damien Miller95def091999-11-25 00:26:21 +1100930 if (options->escape_char == -1)
931 options->escape_char = '~';
932 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000933 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100934 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000935 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000936 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000937 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000938 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000939 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +1100940 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000941 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000942 if (options->clear_forwardings == 1)
943 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000944 if (options->no_host_authentication_for_localhost == - 1)
945 options->no_host_authentication_for_localhost = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000946 if (options->enable_ssh_keysign == -1)
947 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +1000948 if (options->rekey_limit == -1)
949 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000950 if (options->verify_host_key_dns == -1)
951 options->verify_host_key_dns = 0;
Damien Miller95def091999-11-25 00:26:21 +1100952 /* options->proxy_command should not be set by default */
953 /* options->user will be set in the main program if appropriate */
954 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000955 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000956 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957}