blob: 6a426ae050872b7eca03813740133e70f29f3ca3 [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"
Ben Lindstromedc0cf22001-09-12 18:32:20 +000015RCSID("$OpenBSD: readconf.c,v 1.89 2001/09/03 20:58:33 stevesk 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
44 FallBackToRsh no
45
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
68 UseRsh yes
69
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
82 FallBackToRsh no
83 UseRsh no
84 StrictHostKeyChecking yes
85 KeepAlives no
86 IdentityFile ~/.ssh/identity
87 Port 22
88 EscapeChar ~
89
90*/
91
92/* Keyword tokens. */
93
Damien Miller95def091999-11-25 00:26:21 +110094typedef enum {
95 oBadOption,
96 oForwardAgent, oForwardX11, oGatewayPorts, oRhostsAuthentication,
97 oPasswordAuthentication, oRSAAuthentication, oFallBackToRsh, oUseRsh,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000098 oChallengeResponseAuthentication, oXAuthLocation,
Ben Lindstromec95ed92001-07-04 04:21:14 +000099#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100100 oKerberosAuthentication,
Ben Lindstromec95ed92001-07-04 04:21:14 +0000101#endif
102#if defined(AFS) || defined(KRB5)
103 oKerberosTgtPassing,
104#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105#ifdef AFS
Ben Lindstromec95ed92001-07-04 04:21:14 +0000106 oAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107#endif
Damien Miller95def091999-11-25 00:26:21 +1100108 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
109 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
110 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
111 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000112 oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000113 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100114 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000115 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000116 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Ben Lindstromae996bf2001-08-06 21:27:53 +0000117 oHostKeyAlgorithms, oBindAddress, oSmartcardDevice
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118} OpCodes;
119
120/* Textual representations of the tokens. */
121
Damien Miller95def091999-11-25 00:26:21 +1100122static struct {
123 const char *name;
124 OpCodes opcode;
125} keywords[] = {
126 { "forwardagent", oForwardAgent },
127 { "forwardx11", oForwardX11 },
Damien Millerd3a18572000-06-07 19:55:44 +1000128 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100129 { "gatewayports", oGatewayPorts },
130 { "useprivilegedport", oUsePrivilegedPort },
131 { "rhostsauthentication", oRhostsAuthentication },
132 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100133 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
134 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100135 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100136 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000137 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000138 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000139 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000140 { "challengeresponseauthentication", oChallengeResponseAuthentication },
141 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
142 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Ben Lindstromec95ed92001-07-04 04:21:14 +0000143#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100144 { "kerberosauthentication", oKerberosAuthentication },
Ben Lindstromec95ed92001-07-04 04:21:14 +0000145#endif
146#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100147 { "kerberostgtpassing", oKerberosTgtPassing },
Ben Lindstromec95ed92001-07-04 04:21:14 +0000148#endif
149#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100150 { "afstokenpassing", oAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151#endif
Damien Miller95def091999-11-25 00:26:21 +1100152 { "fallbacktorsh", oFallBackToRsh },
153 { "usersh", oUseRsh },
154 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100155 { "identityfile2", oIdentityFile }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100156 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000157 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100158 { "proxycommand", oProxyCommand },
159 { "port", oPort },
160 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000161 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000162 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000163 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100164 { "remoteforward", oRemoteForward },
165 { "localforward", oLocalForward },
166 { "user", oUser },
167 { "host", oHost },
168 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100169 { "globalknownhostsfile", oGlobalKnownHostsFile },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000170 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
Damien Millereba71ba2000-04-29 23:57:08 +1000171 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000172 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100173 { "connectionattempts", oConnectionAttempts },
174 { "batchmode", oBatchMode },
175 { "checkhostip", oCheckHostIP },
176 { "stricthostkeychecking", oStrictHostKeyChecking },
177 { "compression", oCompression },
178 { "compressionlevel", oCompressionLevel },
179 { "keepalive", oKeepAlives },
180 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100181 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000182 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000183 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000184 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000185 { "bindaddress", oBindAddress },
Ben Lindstromae996bf2001-08-06 21:27:53 +0000186 { "smartcarddevice", oSmartcardDevice },
Damien Miller95def091999-11-25 00:26:21 +1100187 { NULL, 0 }
Damien Miller5ce662a1999-11-11 17:57:39 +1100188};
189
Damien Miller5428f641999-11-25 11:54:57 +1100190/*
191 * Adds a local TCP/IP port forward to options. Never returns if there is an
192 * error.
193 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194
Damien Miller4af51302000-04-16 11:18:38 +1000195void
Damien Milleraae6c611999-12-06 11:47:28 +1100196add_local_forward(Options *options, u_short port, const char *host,
197 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198{
Damien Miller95def091999-11-25 00:26:21 +1100199 Forward *fwd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100200#ifndef HAVE_CYGWIN
Damien Miller95def091999-11-25 00:26:21 +1100201 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100202 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000203 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100204#endif
Damien Miller95def091999-11-25 00:26:21 +1100205 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
206 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
207 fwd = &options->local_forwards[options->num_local_forwards++];
208 fwd->port = port;
209 fwd->host = xstrdup(host);
210 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211}
212
Damien Miller5428f641999-11-25 11:54:57 +1100213/*
214 * Adds a remote TCP/IP port forward to options. Never returns if there is
215 * an error.
216 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller4af51302000-04-16 11:18:38 +1000218void
Damien Milleraae6c611999-12-06 11:47:28 +1100219add_remote_forward(Options *options, u_short port, const char *host,
220 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221{
Damien Miller95def091999-11-25 00:26:21 +1100222 Forward *fwd;
223 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
224 fatal("Too many remote forwards (max %d).",
225 SSH_MAX_FORWARDS_PER_DIRECTION);
226 fwd = &options->remote_forwards[options->num_remote_forwards++];
227 fwd->port = port;
228 fwd->host = xstrdup(host);
229 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230}
231
Damien Miller5428f641999-11-25 11:54:57 +1100232/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000233 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100234 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235
Damien Miller4af51302000-04-16 11:18:38 +1000236static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100237parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000239 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Miller95def091999-11-25 00:26:21 +1100241 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100242 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100243 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000245 error("%s: line %d: Bad configuration option: %s",
246 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100247 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248}
249
Damien Miller5428f641999-11-25 11:54:57 +1100250/*
251 * Processes a single option line as used in the configuration files. This
252 * only sets those values that have not already been set.
253 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254
Damien Miller2ccf6611999-11-15 15:25:10 +1100255int
256process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100257 char *line, const char *filename, int linenum,
258 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259{
Ben Lindstromd0ff4082001-08-15 22:58:59 +0000260 char buf[256], *s, *string, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100261 int opcode, *intptr, value;
262 u_short fwd_port, fwd_host_port;
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000263 char sfwd_host_port[6];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Damien Millerbe484b52000-07-15 14:14:16 +1000265 s = line;
266 /* Get the keyword. (Each line is supposed to begin with a keyword). */
267 keyword = strdelim(&s);
268 /* Ignore leading whitespace. */
269 if (*keyword == '\0')
270 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000271 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100272 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller37023962000-07-11 17:31:38 +1000274 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Miller95def091999-11-25 00:26:21 +1100276 switch (opcode) {
277 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100278 /* don't panic, but count bad options */
279 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100280 /* NOTREACHED */
281 case oForwardAgent:
282 intptr = &options->forward_agent;
283parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000284 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000285 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100286 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
287 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000288 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100289 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000290 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100291 value = 0;
292 else
293 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
294 if (*activep && *intptr == -1)
295 *intptr = value;
296 break;
297
298 case oForwardX11:
299 intptr = &options->forward_x11;
300 goto parse_flag;
301
302 case oGatewayPorts:
303 intptr = &options->gateway_ports;
304 goto parse_flag;
305
306 case oUsePrivilegedPort:
307 intptr = &options->use_privileged_port;
308 goto parse_flag;
309
310 case oRhostsAuthentication:
311 intptr = &options->rhosts_authentication;
312 goto parse_flag;
313
314 case oPasswordAuthentication:
315 intptr = &options->password_authentication;
316 goto parse_flag;
317
Damien Miller874d77b2000-10-14 16:23:11 +1100318 case oKbdInteractiveAuthentication:
319 intptr = &options->kbd_interactive_authentication;
320 goto parse_flag;
321
322 case oKbdInteractiveDevices:
323 charptr = &options->kbd_interactive_devices;
324 goto parse_string;
325
Damien Miller0bc1bd82000-11-13 22:57:25 +1100326 case oPubkeyAuthentication:
327 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000328 goto parse_flag;
329
Damien Miller95def091999-11-25 00:26:21 +1100330 case oRSAAuthentication:
331 intptr = &options->rsa_authentication;
332 goto parse_flag;
333
334 case oRhostsRSAAuthentication:
335 intptr = &options->rhosts_rsa_authentication;
336 goto parse_flag;
337
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000338 case oHostbasedAuthentication:
339 intptr = &options->hostbased_authentication;
340 goto parse_flag;
341
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000342 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000343 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100344 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000345#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100346 case oKerberosAuthentication:
347 intptr = &options->kerberos_authentication;
348 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000349#endif
350#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100351 case oKerberosTgtPassing:
352 intptr = &options->kerberos_tgt_passing;
353 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000354#endif
355#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100356 case oAFSTokenPassing:
357 intptr = &options->afs_token_passing;
358 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359#endif
Damien Miller95def091999-11-25 00:26:21 +1100360 case oFallBackToRsh:
361 intptr = &options->fallback_to_rsh;
362 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363
Damien Miller95def091999-11-25 00:26:21 +1100364 case oUseRsh:
365 intptr = &options->use_rsh;
366 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000367
Damien Miller95def091999-11-25 00:26:21 +1100368 case oBatchMode:
369 intptr = &options->batch_mode;
370 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371
Damien Miller95def091999-11-25 00:26:21 +1100372 case oCheckHostIP:
373 intptr = &options->check_host_ip;
374 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Damien Miller95def091999-11-25 00:26:21 +1100376 case oStrictHostKeyChecking:
377 intptr = &options->strict_host_key_checking;
Damien Millerbe484b52000-07-15 14:14:16 +1000378 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000379 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000380 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller95def091999-11-25 00:26:21 +1100381 filename, linenum);
382 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000383 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100384 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000385 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100386 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000387 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100388 value = 2;
389 else
390 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
391 if (*activep && *intptr == -1)
392 *intptr = value;
393 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394
Damien Miller95def091999-11-25 00:26:21 +1100395 case oCompression:
396 intptr = &options->compression;
397 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398
Damien Miller95def091999-11-25 00:26:21 +1100399 case oKeepAlives:
400 intptr = &options->keepalives;
401 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402
Damien Miller95def091999-11-25 00:26:21 +1100403 case oNumberOfPasswordPrompts:
404 intptr = &options->number_of_password_prompts;
405 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406
Damien Miller95def091999-11-25 00:26:21 +1100407 case oCompressionLevel:
408 intptr = &options->compression_level;
409 goto parse_int;
410
411 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000412 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000413 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100414 fatal("%.200s line %d: Missing argument.", filename, linenum);
415 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100416 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000417 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100418 fatal("%.200s line %d: Too many identity files specified (max %d).",
419 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100420 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000421 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000422 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100423 }
424 break;
425
Damien Millerd3a18572000-06-07 19:55:44 +1000426 case oXAuthLocation:
427 charptr=&options->xauth_location;
428 goto parse_string;
429
Damien Miller95def091999-11-25 00:26:21 +1100430 case oUser:
431 charptr = &options->user;
432parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000433 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000434 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100435 fatal("%.200s line %d: Missing argument.", filename, linenum);
436 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000437 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100438 break;
439
440 case oGlobalKnownHostsFile:
441 charptr = &options->system_hostfile;
442 goto parse_string;
443
444 case oUserKnownHostsFile:
445 charptr = &options->user_hostfile;
446 goto parse_string;
447
Damien Millereba71ba2000-04-29 23:57:08 +1000448 case oGlobalKnownHostsFile2:
449 charptr = &options->system_hostfile2;
450 goto parse_string;
451
452 case oUserKnownHostsFile2:
453 charptr = &options->user_hostfile2;
454 goto parse_string;
455
Damien Miller95def091999-11-25 00:26:21 +1100456 case oHostName:
457 charptr = &options->hostname;
458 goto parse_string;
459
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000460 case oHostKeyAlias:
461 charptr = &options->host_key_alias;
462 goto parse_string;
463
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000464 case oPreferredAuthentications:
465 charptr = &options->preferred_authentications;
466 goto parse_string;
467
Ben Lindstrome0f88042001-04-30 13:06:24 +0000468 case oBindAddress:
469 charptr = &options->bind_address;
470 goto parse_string;
471
Ben Lindstromae996bf2001-08-06 21:27:53 +0000472 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000473 charptr = &options->smartcard_device;
474 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000475
Damien Miller95def091999-11-25 00:26:21 +1100476 case oProxyCommand:
477 charptr = &options->proxy_command;
Ben Lindstromd0ff4082001-08-15 22:58:59 +0000478 string = xstrdup("");
Damien Millerbe484b52000-07-15 14:14:16 +1000479 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000480 string = xrealloc(string, strlen(string) + strlen(arg) + 2);
Damien Miller95def091999-11-25 00:26:21 +1100481 strcat(string, " ");
Damien Miller37023962000-07-11 17:31:38 +1000482 strcat(string, arg);
Damien Miller95def091999-11-25 00:26:21 +1100483 }
484 if (*activep && *charptr == NULL)
485 *charptr = string;
486 else
487 xfree(string);
488 return 0;
489
490 case oPort:
491 intptr = &options->port;
492parse_int:
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);
Damien Miller37023962000-07-11 17:31:38 +1000496 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100497 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100498
499 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000500 value = strtol(arg, &endofnumber, 0);
501 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100502 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100503 if (*activep && *intptr == -1)
504 *intptr = value;
505 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506
Damien Miller95def091999-11-25 00:26:21 +1100507 case oConnectionAttempts:
508 intptr = &options->connection_attempts;
509 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100510
Damien Miller95def091999-11-25 00:26:21 +1100511 case oCipher:
512 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000513 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000514 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000515 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000516 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100517 if (value == -1)
518 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000519 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100520 if (*activep && *intptr == -1)
521 *intptr = value;
522 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Damien Miller78928792000-04-12 20:17:38 +1000524 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000525 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000526 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000527 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000528 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000529 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000530 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000531 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000532 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000533 break;
534
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000535 case oMacs:
536 arg = strdelim(&s);
537 if (!arg || *arg == '\0')
538 fatal("%.200s line %d: Missing argument.", filename, linenum);
539 if (!mac_valid(arg))
540 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
541 filename, linenum, arg ? arg : "<NONE>");
542 if (*activep && options->macs == NULL)
543 options->macs = xstrdup(arg);
544 break;
545
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000546 case oHostKeyAlgorithms:
547 arg = strdelim(&s);
548 if (!arg || *arg == '\0')
549 fatal("%.200s line %d: Missing argument.", filename, linenum);
550 if (!key_names_valid2(arg))
551 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
552 filename, linenum, arg ? arg : "<NONE>");
553 if (*activep && options->hostkeyalgorithms == NULL)
554 options->hostkeyalgorithms = xstrdup(arg);
555 break;
556
Damien Miller78928792000-04-12 20:17:38 +1000557 case oProtocol:
558 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000559 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000560 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000561 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000562 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000563 if (value == SSH_PROTO_UNKNOWN)
564 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000565 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000566 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
567 *intptr = value;
568 break;
569
Damien Miller95def091999-11-25 00:26:21 +1100570 case oLogLevel:
571 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000572 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000573 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100574 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000575 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000576 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100577 if (*activep && (LogLevel) * intptr == -1)
578 *intptr = (LogLevel) value;
579 break;
580
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000581 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100582 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000583 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000584 if (!arg || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000585 fatal("%.200s line %d: Missing port argument.",
586 filename, linenum);
587 if ((fwd_port = a2port(arg)) == 0)
588 fatal("%.200s line %d: Bad listen port.",
589 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000590 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000591 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100592 fatal("%.200s line %d: Missing second argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000593 filename, linenum);
594 if (sscanf(arg, "%255[^:]:%5[0-9]", buf, sfwd_host_port) != 2 &&
595 sscanf(arg, "%255[^/]/%5[0-9]", buf, sfwd_host_port) != 2)
596 fatal("%.200s line %d: Bad forwarding specification.",
597 filename, linenum);
598 if ((fwd_host_port = a2port(sfwd_host_port)) == 0)
599 fatal("%.200s line %d: Bad forwarding port.",
600 filename, linenum);
601 if (*activep) {
602 if (opcode == oLocalForward)
603 add_local_forward(options, fwd_port, buf,
604 fwd_host_port);
605 else if (opcode == oRemoteForward)
606 add_remote_forward(options, fwd_port, buf,
607 fwd_host_port);
608 }
Damien Miller95def091999-11-25 00:26:21 +1100609 break;
610
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000611 case oDynamicForward:
612 arg = strdelim(&s);
613 if (!arg || *arg == '\0')
614 fatal("%.200s line %d: Missing port argument.",
615 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000616 fwd_port = a2port(arg);
617 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000618 fatal("%.200s line %d: Badly formatted port number.",
619 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000620 if (*activep)
621 add_local_forward(options, fwd_port, "socks4", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000622 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000623
Damien Miller95def091999-11-25 00:26:21 +1100624 case oHost:
625 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000626 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000627 if (match_pattern(host, arg)) {
628 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100629 *activep = 1;
630 break;
631 }
Damien Millerbe484b52000-07-15 14:14:16 +1000632 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100633 return 0;
634
635 case oEscapeChar:
636 intptr = &options->escape_char;
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 argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000640 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000641 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
642 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000643 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000644 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000645 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000646 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100647 else {
648 fatal("%.200s line %d: Bad escape character.",
649 filename, linenum);
650 /* NOTREACHED */
651 value = 0; /* Avoid compiler warning. */
652 }
653 if (*activep && *intptr == -1)
654 *intptr = value;
655 break;
656
657 default:
658 fatal("process_config_line: Unimplemented opcode %d", opcode);
659 }
660
661 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000662 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000663 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
664 filename, linenum, arg);
665 }
Damien Miller95def091999-11-25 00:26:21 +1100666 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667}
668
669
Damien Miller5428f641999-11-25 11:54:57 +1100670/*
671 * Reads the config file and modifies the options accordingly. Options
672 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000673 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100674 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000676int
Damien Miller95def091999-11-25 00:26:21 +1100677read_config_file(const char *filename, const char *host, Options *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678{
Damien Miller95def091999-11-25 00:26:21 +1100679 FILE *f;
680 char line[1024];
681 int active, linenum;
682 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller95def091999-11-25 00:26:21 +1100684 /* Open the file. */
685 f = fopen(filename, "r");
686 if (!f)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000687 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000688
Damien Miller95def091999-11-25 00:26:21 +1100689 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000690
Damien Miller5428f641999-11-25 11:54:57 +1100691 /*
692 * Mark that we are now processing the options. This flag is turned
693 * on/off by Host specifications.
694 */
Damien Miller95def091999-11-25 00:26:21 +1100695 active = 1;
696 linenum = 0;
697 while (fgets(line, sizeof(line), f)) {
698 /* Update line number counter. */
699 linenum++;
700 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
701 bad_options++;
702 }
703 fclose(f);
704 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000705 fatal("%s: terminating, %d bad configuration options",
Damien Miller95def091999-11-25 00:26:21 +1100706 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000707 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708}
709
Damien Miller5428f641999-11-25 11:54:57 +1100710/*
711 * Initializes options to special values that indicate that they have not yet
712 * been set. Read_config_file will only set options with this value. Options
713 * are processed in the following order: command line, user config file,
714 * system config file. Last, fill_default_options is called.
715 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716
Damien Miller4af51302000-04-16 11:18:38 +1000717void
Damien Miller95def091999-11-25 00:26:21 +1100718initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000719{
Damien Miller95def091999-11-25 00:26:21 +1100720 memset(options, 'X', sizeof(*options));
721 options->forward_agent = -1;
722 options->forward_x11 = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000723 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100724 options->gateway_ports = -1;
725 options->use_privileged_port = -1;
726 options->rhosts_authentication = -1;
727 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100728 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000729 options->challenge_response_authentication = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000730#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100731 options->kerberos_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000732#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000733#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100734 options->kerberos_tgt_passing = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000735#endif
736#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100737 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000738#endif
Damien Miller95def091999-11-25 00:26:21 +1100739 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100740 options->kbd_interactive_authentication = -1;
741 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100742 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000743 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100744 options->fallback_to_rsh = -1;
745 options->use_rsh = -1;
746 options->batch_mode = -1;
747 options->check_host_ip = -1;
748 options->strict_host_key_checking = -1;
749 options->compression = -1;
750 options->keepalives = -1;
751 options->compression_level = -1;
752 options->port = -1;
753 options->connection_attempts = -1;
754 options->number_of_password_prompts = -1;
755 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000756 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000757 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000758 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000759 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100760 options->num_identity_files = 0;
761 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000762 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100763 options->proxy_command = NULL;
764 options->user = NULL;
765 options->escape_char = -1;
766 options->system_hostfile = NULL;
767 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000768 options->system_hostfile2 = NULL;
769 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100770 options->num_local_forwards = 0;
771 options->num_remote_forwards = 0;
772 options->log_level = (LogLevel) - 1;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000773 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000774 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000775 options->smartcard_device = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776}
777
Damien Miller5428f641999-11-25 11:54:57 +1100778/*
779 * Called after processing other sources of option data, this fills those
780 * options for which no value has been specified with their default values.
781 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000782
Damien Miller4af51302000-04-16 11:18:38 +1000783void
Damien Miller95def091999-11-25 00:26:21 +1100784fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000785{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000786 int len;
787
Damien Miller95def091999-11-25 00:26:21 +1100788 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000789 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100790 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100791 options->forward_x11 = 0;
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000792#ifdef _PATH_XAUTH
Damien Millerd3a18572000-06-07 19:55:44 +1000793 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000794 options->xauth_location = _PATH_XAUTH;
795#endif
Damien Miller95def091999-11-25 00:26:21 +1100796 if (options->gateway_ports == -1)
797 options->gateway_ports = 0;
798 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000799 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100800 if (options->rhosts_authentication == -1)
801 options->rhosts_authentication = 1;
802 if (options->rsa_authentication == -1)
803 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804 if (options->pubkey_authentication == -1)
805 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000806 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000807 options->challenge_response_authentication = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000808#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100809 if (options->kerberos_authentication == -1)
810 options->kerberos_authentication = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000811#endif
812#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100813 if (options->kerberos_tgt_passing == -1)
814 options->kerberos_tgt_passing = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000815#endif
816#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100817 if (options->afs_token_passing == -1)
818 options->afs_token_passing = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000819#endif
Damien Miller95def091999-11-25 00:26:21 +1100820 if (options->password_authentication == -1)
821 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100822 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000823 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100824 if (options->rhosts_rsa_authentication == -1)
825 options->rhosts_rsa_authentication = 1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000826 if (options->hostbased_authentication == -1)
827 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100828 if (options->fallback_to_rsh == -1)
Damien Miller182ee6e2000-07-12 09:45:27 +1000829 options->fallback_to_rsh = 0;
Damien Miller95def091999-11-25 00:26:21 +1100830 if (options->use_rsh == -1)
831 options->use_rsh = 0;
832 if (options->batch_mode == -1)
833 options->batch_mode = 0;
834 if (options->check_host_ip == -1)
835 options->check_host_ip = 1;
836 if (options->strict_host_key_checking == -1)
837 options->strict_host_key_checking = 2; /* 2 is default */
838 if (options->compression == -1)
839 options->compression = 0;
840 if (options->keepalives == -1)
841 options->keepalives = 1;
842 if (options->compression_level == -1)
843 options->compression_level = 6;
844 if (options->port == -1)
845 options->port = 0; /* Filled in ssh_connect. */
846 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000847 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100848 if (options->number_of_password_prompts == -1)
849 options->number_of_password_prompts = 3;
850 /* Selected in ssh_login(). */
851 if (options->cipher == -1)
852 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000853 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000854 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000855 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000856 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000857 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100858 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100859 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000860 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100861 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000862 xmalloc(len);
863 snprintf(options->identity_files[options->num_identity_files++],
864 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100865 }
866 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000867 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
868 options->identity_files[options->num_identity_files] =
869 xmalloc(len);
870 snprintf(options->identity_files[options->num_identity_files++],
871 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
872
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000873 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100874 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000875 xmalloc(len);
876 snprintf(options->identity_files[options->num_identity_files++],
877 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100878 }
Damien Millereba71ba2000-04-29 23:57:08 +1000879 }
Damien Miller95def091999-11-25 00:26:21 +1100880 if (options->escape_char == -1)
881 options->escape_char = '~';
882 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000883 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100884 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000885 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000886 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000887 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000888 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000889 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Miller95def091999-11-25 00:26:21 +1100890 if (options->log_level == (LogLevel) - 1)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000891 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100892 /* options->proxy_command should not be set by default */
893 /* options->user will be set in the main program if appropriate */
894 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000895 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000896 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000897}