blob: b30c61f287e42e80b1b8ab3c94e629cc50a806af [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 Lindstrom982dbbc2001-04-17 18:11:36 +000015RCSID("$OpenBSD: readconf.c,v 1.76 2001/04/17 10:53:25 markus 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,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100100 oKerberosAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101#endif /* KRB4 */
102#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100103 oKerberosTgtPassing, oAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104#endif
Damien Miller95def091999-11-25 00:26:21 +1100105 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
106 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
107 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
108 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000109 oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000110 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100111 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000112 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000113 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
114 oHostKeyAlgorithms
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115} OpCodes;
116
117/* Textual representations of the tokens. */
118
Damien Miller95def091999-11-25 00:26:21 +1100119static struct {
120 const char *name;
121 OpCodes opcode;
122} keywords[] = {
123 { "forwardagent", oForwardAgent },
124 { "forwardx11", oForwardX11 },
Damien Millerd3a18572000-06-07 19:55:44 +1000125 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100126 { "gatewayports", oGatewayPorts },
127 { "useprivilegedport", oUsePrivilegedPort },
128 { "rhostsauthentication", oRhostsAuthentication },
129 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100130 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
131 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100132 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100133 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000134 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000135 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000136 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000137 { "challengeresponseauthentication", oChallengeResponseAuthentication },
138 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
139 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100141 { "kerberosauthentication", oKerberosAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142#endif /* KRB4 */
143#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100144 { "kerberostgtpassing", oKerberosTgtPassing },
145 { "afstokenpassing", oAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146#endif
Damien Miller95def091999-11-25 00:26:21 +1100147 { "fallbacktorsh", oFallBackToRsh },
148 { "usersh", oUseRsh },
149 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100150 { "identityfile2", oIdentityFile }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100151 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000152 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100153 { "proxycommand", oProxyCommand },
154 { "port", oPort },
155 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000156 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000157 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000158 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100159 { "remoteforward", oRemoteForward },
160 { "localforward", oLocalForward },
161 { "user", oUser },
162 { "host", oHost },
163 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100164 { "globalknownhostsfile", oGlobalKnownHostsFile },
165 { "userknownhostsfile", oUserKnownHostsFile },
Damien Millereba71ba2000-04-29 23:57:08 +1000166 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
167 { "userknownhostsfile2", oUserKnownHostsFile2 },
Damien Miller95def091999-11-25 00:26:21 +1100168 { "connectionattempts", oConnectionAttempts },
169 { "batchmode", oBatchMode },
170 { "checkhostip", oCheckHostIP },
171 { "stricthostkeychecking", oStrictHostKeyChecking },
172 { "compression", oCompression },
173 { "compressionlevel", oCompressionLevel },
174 { "keepalive", oKeepAlives },
175 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100176 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000177 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000178 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000179 { "hostkeyalgorithms", oHostKeyAlgorithms },
Damien Miller95def091999-11-25 00:26:21 +1100180 { NULL, 0 }
Damien Miller5ce662a1999-11-11 17:57:39 +1100181};
182
Damien Miller5428f641999-11-25 11:54:57 +1100183/*
184 * Adds a local TCP/IP port forward to options. Never returns if there is an
185 * error.
186 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187
Damien Miller4af51302000-04-16 11:18:38 +1000188void
Damien Milleraae6c611999-12-06 11:47:28 +1100189add_local_forward(Options *options, u_short port, const char *host,
190 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191{
Damien Miller95def091999-11-25 00:26:21 +1100192 Forward *fwd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100193#ifndef HAVE_CYGWIN
Damien Miller95def091999-11-25 00:26:21 +1100194 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100195 if (port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000196 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100197#endif
Damien Miller95def091999-11-25 00:26:21 +1100198 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
199 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
200 fwd = &options->local_forwards[options->num_local_forwards++];
201 fwd->port = port;
202 fwd->host = xstrdup(host);
203 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204}
205
Damien Miller5428f641999-11-25 11:54:57 +1100206/*
207 * Adds a remote TCP/IP port forward to options. Never returns if there is
208 * an error.
209 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210
Damien Miller4af51302000-04-16 11:18:38 +1000211void
Damien Milleraae6c611999-12-06 11:47:28 +1100212add_remote_forward(Options *options, u_short port, const char *host,
213 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214{
Damien Miller95def091999-11-25 00:26:21 +1100215 Forward *fwd;
216 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
217 fatal("Too many remote forwards (max %d).",
218 SSH_MAX_FORWARDS_PER_DIRECTION);
219 fwd = &options->remote_forwards[options->num_remote_forwards++];
220 fwd->port = port;
221 fwd->host = xstrdup(host);
222 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller5428f641999-11-25 11:54:57 +1100225/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000226 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100227 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller4af51302000-04-16 11:18:38 +1000229static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100230parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000232 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller95def091999-11-25 00:26:21 +1100234 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100235 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100236 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000238 error("%s: line %d: Bad configuration option: %s",
239 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100240 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241}
242
Damien Miller5428f641999-11-25 11:54:57 +1100243/*
244 * Processes a single option line as used in the configuration files. This
245 * only sets those values that have not already been set.
246 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller2ccf6611999-11-15 15:25:10 +1100248int
249process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100250 char *line, const char *filename, int linenum,
251 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252{
Damien Miller37023962000-07-11 17:31:38 +1000253 char buf[256], *s, *string, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100254 int opcode, *intptr, value;
255 u_short fwd_port, fwd_host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Millerbe484b52000-07-15 14:14:16 +1000257 s = line;
258 /* Get the keyword. (Each line is supposed to begin with a keyword). */
259 keyword = strdelim(&s);
260 /* Ignore leading whitespace. */
261 if (*keyword == '\0')
262 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000263 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100264 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller37023962000-07-11 17:31:38 +1000266 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267
Damien Miller95def091999-11-25 00:26:21 +1100268 switch (opcode) {
269 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100270 /* don't panic, but count bad options */
271 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100272 /* NOTREACHED */
273 case oForwardAgent:
274 intptr = &options->forward_agent;
275parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000276 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000277 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100278 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
279 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000280 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100281 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000282 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100283 value = 0;
284 else
285 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
286 if (*activep && *intptr == -1)
287 *intptr = value;
288 break;
289
290 case oForwardX11:
291 intptr = &options->forward_x11;
292 goto parse_flag;
293
294 case oGatewayPorts:
295 intptr = &options->gateway_ports;
296 goto parse_flag;
297
298 case oUsePrivilegedPort:
299 intptr = &options->use_privileged_port;
300 goto parse_flag;
301
302 case oRhostsAuthentication:
303 intptr = &options->rhosts_authentication;
304 goto parse_flag;
305
306 case oPasswordAuthentication:
307 intptr = &options->password_authentication;
308 goto parse_flag;
309
Damien Miller874d77b2000-10-14 16:23:11 +1100310 case oKbdInteractiveAuthentication:
311 intptr = &options->kbd_interactive_authentication;
312 goto parse_flag;
313
314 case oKbdInteractiveDevices:
315 charptr = &options->kbd_interactive_devices;
316 goto parse_string;
317
Damien Miller0bc1bd82000-11-13 22:57:25 +1100318 case oPubkeyAuthentication:
319 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000320 goto parse_flag;
321
Damien Miller95def091999-11-25 00:26:21 +1100322 case oRSAAuthentication:
323 intptr = &options->rsa_authentication;
324 goto parse_flag;
325
326 case oRhostsRSAAuthentication:
327 intptr = &options->rhosts_rsa_authentication;
328 goto parse_flag;
329
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000330 case oHostbasedAuthentication:
331 intptr = &options->hostbased_authentication;
332 goto parse_flag;
333
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000334 case oChallengeResponseAuthentication:
335 intptr = &options->challenge_reponse_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100336 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337
338#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100339 case oKerberosAuthentication:
340 intptr = &options->kerberos_authentication;
341 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342#endif /* KRB4 */
343
344#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100345 case oKerberosTgtPassing:
346 intptr = &options->kerberos_tgt_passing;
347 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348
Damien Miller95def091999-11-25 00:26:21 +1100349 case oAFSTokenPassing:
350 intptr = &options->afs_token_passing;
351 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353
Damien Miller95def091999-11-25 00:26:21 +1100354 case oFallBackToRsh:
355 intptr = &options->fallback_to_rsh;
356 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller95def091999-11-25 00:26:21 +1100358 case oUseRsh:
359 intptr = &options->use_rsh;
360 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 case oBatchMode:
363 intptr = &options->batch_mode;
364 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365
Damien Miller95def091999-11-25 00:26:21 +1100366 case oCheckHostIP:
367 intptr = &options->check_host_ip;
368 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369
Damien Miller95def091999-11-25 00:26:21 +1100370 case oStrictHostKeyChecking:
371 intptr = &options->strict_host_key_checking;
Damien Millerbe484b52000-07-15 14:14:16 +1000372 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000373 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000374 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller95def091999-11-25 00:26:21 +1100375 filename, linenum);
376 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000377 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100378 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000379 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100380 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000381 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100382 value = 2;
383 else
384 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
385 if (*activep && *intptr == -1)
386 *intptr = value;
387 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388
Damien Miller95def091999-11-25 00:26:21 +1100389 case oCompression:
390 intptr = &options->compression;
391 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Damien Miller95def091999-11-25 00:26:21 +1100393 case oKeepAlives:
394 intptr = &options->keepalives;
395 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
Damien Miller95def091999-11-25 00:26:21 +1100397 case oNumberOfPasswordPrompts:
398 intptr = &options->number_of_password_prompts;
399 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400
Damien Miller95def091999-11-25 00:26:21 +1100401 case oCompressionLevel:
402 intptr = &options->compression_level;
403 goto parse_int;
404
405 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000406 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000407 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100408 fatal("%.200s line %d: Missing argument.", filename, linenum);
409 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100410 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000411 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100412 fatal("%.200s line %d: Too many identity files specified (max %d).",
413 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100414 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000415 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000416 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100417 }
418 break;
419
Damien Millerd3a18572000-06-07 19:55:44 +1000420 case oXAuthLocation:
421 charptr=&options->xauth_location;
422 goto parse_string;
423
Damien Miller95def091999-11-25 00:26:21 +1100424 case oUser:
425 charptr = &options->user;
426parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000427 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000428 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100429 fatal("%.200s line %d: Missing argument.", filename, linenum);
430 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000431 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100432 break;
433
434 case oGlobalKnownHostsFile:
435 charptr = &options->system_hostfile;
436 goto parse_string;
437
438 case oUserKnownHostsFile:
439 charptr = &options->user_hostfile;
440 goto parse_string;
441
Damien Millereba71ba2000-04-29 23:57:08 +1000442 case oGlobalKnownHostsFile2:
443 charptr = &options->system_hostfile2;
444 goto parse_string;
445
446 case oUserKnownHostsFile2:
447 charptr = &options->user_hostfile2;
448 goto parse_string;
449
Damien Miller95def091999-11-25 00:26:21 +1100450 case oHostName:
451 charptr = &options->hostname;
452 goto parse_string;
453
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000454 case oHostKeyAlias:
455 charptr = &options->host_key_alias;
456 goto parse_string;
457
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000458 case oPreferredAuthentications:
459 charptr = &options->preferred_authentications;
460 goto parse_string;
461
Damien Miller95def091999-11-25 00:26:21 +1100462 case oProxyCommand:
463 charptr = &options->proxy_command;
464 string = xstrdup("");
Damien Millerbe484b52000-07-15 14:14:16 +1000465 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000466 string = xrealloc(string, strlen(string) + strlen(arg) + 2);
Damien Miller95def091999-11-25 00:26:21 +1100467 strcat(string, " ");
Damien Miller37023962000-07-11 17:31:38 +1000468 strcat(string, arg);
Damien Miller95def091999-11-25 00:26:21 +1100469 }
470 if (*activep && *charptr == NULL)
471 *charptr = string;
472 else
473 xfree(string);
474 return 0;
475
476 case oPort:
477 intptr = &options->port;
478parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000479 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000480 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100481 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000482 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100483 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100484
485 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000486 value = strtol(arg, &endofnumber, 0);
487 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100488 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100489 if (*activep && *intptr == -1)
490 *intptr = value;
491 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
Damien Miller95def091999-11-25 00:26:21 +1100493 case oConnectionAttempts:
494 intptr = &options->connection_attempts;
495 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100496
Damien Miller95def091999-11-25 00:26:21 +1100497 case oCipher:
498 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000499 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000500 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000501 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000502 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100503 if (value == -1)
504 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000505 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100506 if (*activep && *intptr == -1)
507 *intptr = value;
508 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
Damien Miller78928792000-04-12 20:17:38 +1000510 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000511 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000512 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000513 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000514 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000515 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000516 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000517 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000518 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000519 break;
520
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000521 case oMacs:
522 arg = strdelim(&s);
523 if (!arg || *arg == '\0')
524 fatal("%.200s line %d: Missing argument.", filename, linenum);
525 if (!mac_valid(arg))
526 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
527 filename, linenum, arg ? arg : "<NONE>");
528 if (*activep && options->macs == NULL)
529 options->macs = xstrdup(arg);
530 break;
531
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000532 case oHostKeyAlgorithms:
533 arg = strdelim(&s);
534 if (!arg || *arg == '\0')
535 fatal("%.200s line %d: Missing argument.", filename, linenum);
536 if (!key_names_valid2(arg))
537 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
538 filename, linenum, arg ? arg : "<NONE>");
539 if (*activep && options->hostkeyalgorithms == NULL)
540 options->hostkeyalgorithms = xstrdup(arg);
541 break;
542
Damien Miller78928792000-04-12 20:17:38 +1000543 case oProtocol:
544 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000545 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000546 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000547 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000548 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000549 if (value == SSH_PROTO_UNKNOWN)
550 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000551 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000552 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
553 *intptr = value;
554 break;
555
Damien Miller95def091999-11-25 00:26:21 +1100556 case oLogLevel:
557 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000558 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000559 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100560 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000561 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000562 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100563 if (*activep && (LogLevel) * intptr == -1)
564 *intptr = (LogLevel) value;
565 break;
566
567 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000568 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000569 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100570 fatal("%.200s line %d: Missing argument.", filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000571 fwd_port = a2port(arg);
572 if (fwd_port == 0)
Damien Miller95def091999-11-25 00:26:21 +1100573 fatal("%.200s line %d: Badly formatted port number.",
574 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000575 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000576 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100577 fatal("%.200s line %d: Missing second argument.",
578 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000579 if (sscanf(arg, "%255[^:]:%hu", buf, &fwd_host_port) != 2)
Damien Miller95def091999-11-25 00:26:21 +1100580 fatal("%.200s line %d: Badly formatted host:port.",
581 filename, linenum);
582 if (*activep)
583 add_remote_forward(options, fwd_port, buf, fwd_host_port);
584 break;
585
586 case oLocalForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000587 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000588 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100589 fatal("%.200s line %d: Missing argument.", filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000590 fwd_port = a2port(arg);
591 if (fwd_port == 0)
Damien Miller95def091999-11-25 00:26:21 +1100592 fatal("%.200s line %d: Badly formatted port number.",
593 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000594 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000595 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100596 fatal("%.200s line %d: Missing second argument.",
597 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000598 if (sscanf(arg, "%255[^:]:%hu", buf, &fwd_host_port) != 2)
Damien Miller95def091999-11-25 00:26:21 +1100599 fatal("%.200s line %d: Badly formatted host:port.",
600 filename, linenum);
601 if (*activep)
602 add_local_forward(options, fwd_port, buf, fwd_host_port);
603 break;
604
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000605 case oDynamicForward:
606 arg = strdelim(&s);
607 if (!arg || *arg == '\0')
608 fatal("%.200s line %d: Missing port argument.",
609 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000610 fwd_port = a2port(arg);
611 if (fwd_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000612 fatal("%.200s line %d: Badly formatted port number.",
613 filename, linenum);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000614 add_local_forward(options, fwd_port, "socks4", 0);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000615 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000616
Damien Miller95def091999-11-25 00:26:21 +1100617 case oHost:
618 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000619 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000620 if (match_pattern(host, arg)) {
621 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100622 *activep = 1;
623 break;
624 }
Damien Millerbe484b52000-07-15 14:14:16 +1000625 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100626 return 0;
627
628 case oEscapeChar:
629 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000630 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000631 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100632 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000633 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000634 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
635 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000636 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000637 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000638 else if (strcmp(arg, "none") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100639 value = -2;
640 else {
641 fatal("%.200s line %d: Bad escape character.",
642 filename, linenum);
643 /* NOTREACHED */
644 value = 0; /* Avoid compiler warning. */
645 }
646 if (*activep && *intptr == -1)
647 *intptr = value;
648 break;
649
650 default:
651 fatal("process_config_line: Unimplemented opcode %d", opcode);
652 }
653
654 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000655 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000656 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
657 filename, linenum, arg);
658 }
Damien Miller95def091999-11-25 00:26:21 +1100659 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660}
661
662
Damien Miller5428f641999-11-25 11:54:57 +1100663/*
664 * Reads the config file and modifies the options accordingly. Options
665 * should already be initialized before this call. This never returns if
666 * there is an error. If the file does not exist, this returns immediately.
667 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Damien Miller4af51302000-04-16 11:18:38 +1000669void
Damien Miller95def091999-11-25 00:26:21 +1100670read_config_file(const char *filename, const char *host, Options *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671{
Damien Miller95def091999-11-25 00:26:21 +1100672 FILE *f;
673 char line[1024];
674 int active, linenum;
675 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* Open the file. */
678 f = fopen(filename, "r");
679 if (!f)
680 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
Damien Miller95def091999-11-25 00:26:21 +1100682 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller5428f641999-11-25 11:54:57 +1100684 /*
685 * Mark that we are now processing the options. This flag is turned
686 * on/off by Host specifications.
687 */
Damien Miller95def091999-11-25 00:26:21 +1100688 active = 1;
689 linenum = 0;
690 while (fgets(line, sizeof(line), f)) {
691 /* Update line number counter. */
692 linenum++;
693 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
694 bad_options++;
695 }
696 fclose(f);
697 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000698 fatal("%s: terminating, %d bad configuration options",
Damien Miller95def091999-11-25 00:26:21 +1100699 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700}
701
Damien Miller5428f641999-11-25 11:54:57 +1100702/*
703 * Initializes options to special values that indicate that they have not yet
704 * been set. Read_config_file will only set options with this value. Options
705 * are processed in the following order: command line, user config file,
706 * system config file. Last, fill_default_options is called.
707 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708
Damien Miller4af51302000-04-16 11:18:38 +1000709void
Damien Miller95def091999-11-25 00:26:21 +1100710initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711{
Damien Miller95def091999-11-25 00:26:21 +1100712 memset(options, 'X', sizeof(*options));
713 options->forward_agent = -1;
714 options->forward_x11 = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000715 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100716 options->gateway_ports = -1;
717 options->use_privileged_port = -1;
718 options->rhosts_authentication = -1;
719 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100720 options->pubkey_authentication = -1;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000721 options->challenge_reponse_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000722#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100723 options->kerberos_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000724#endif
725#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100726 options->kerberos_tgt_passing = -1;
727 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728#endif
Damien Miller95def091999-11-25 00:26:21 +1100729 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100730 options->kbd_interactive_authentication = -1;
731 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100732 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000733 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100734 options->fallback_to_rsh = -1;
735 options->use_rsh = -1;
736 options->batch_mode = -1;
737 options->check_host_ip = -1;
738 options->strict_host_key_checking = -1;
739 options->compression = -1;
740 options->keepalives = -1;
741 options->compression_level = -1;
742 options->port = -1;
743 options->connection_attempts = -1;
744 options->number_of_password_prompts = -1;
745 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000746 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000747 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000748 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000749 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100750 options->num_identity_files = 0;
751 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000752 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100753 options->proxy_command = NULL;
754 options->user = NULL;
755 options->escape_char = -1;
756 options->system_hostfile = NULL;
757 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000758 options->system_hostfile2 = NULL;
759 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100760 options->num_local_forwards = 0;
761 options->num_remote_forwards = 0;
762 options->log_level = (LogLevel) - 1;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000763 options->preferred_authentications = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000764}
765
Damien Miller5428f641999-11-25 11:54:57 +1100766/*
767 * Called after processing other sources of option data, this fills those
768 * options for which no value has been specified with their default values.
769 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000770
Damien Miller4af51302000-04-16 11:18:38 +1000771void
Damien Miller95def091999-11-25 00:26:21 +1100772fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000774 int len;
775
Damien Miller95def091999-11-25 00:26:21 +1100776 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000777 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100778 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100779 options->forward_x11 = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000780#ifdef XAUTH_PATH
781 if (options->xauth_location == NULL)
782 options->xauth_location = XAUTH_PATH;
783#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100784 if (options->gateway_ports == -1)
785 options->gateway_ports = 0;
786 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000787 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100788 if (options->rhosts_authentication == -1)
789 options->rhosts_authentication = 1;
790 if (options->rsa_authentication == -1)
791 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100792 if (options->pubkey_authentication == -1)
793 options->pubkey_authentication = 1;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000794 if (options->challenge_reponse_authentication == -1)
795 options->challenge_reponse_authentication = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100797 if (options->kerberos_authentication == -1)
798 options->kerberos_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000799#endif /* KRB4 */
800#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100801 if (options->kerberos_tgt_passing == -1)
802 options->kerberos_tgt_passing = 1;
803 if (options->afs_token_passing == -1)
804 options->afs_token_passing = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100806 if (options->password_authentication == -1)
807 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100808 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000809 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100810 if (options->rhosts_rsa_authentication == -1)
811 options->rhosts_rsa_authentication = 1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000812 if (options->hostbased_authentication == -1)
813 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100814 if (options->fallback_to_rsh == -1)
Damien Miller182ee6e2000-07-12 09:45:27 +1000815 options->fallback_to_rsh = 0;
Damien Miller95def091999-11-25 00:26:21 +1100816 if (options->use_rsh == -1)
817 options->use_rsh = 0;
818 if (options->batch_mode == -1)
819 options->batch_mode = 0;
820 if (options->check_host_ip == -1)
821 options->check_host_ip = 1;
822 if (options->strict_host_key_checking == -1)
823 options->strict_host_key_checking = 2; /* 2 is default */
824 if (options->compression == -1)
825 options->compression = 0;
826 if (options->keepalives == -1)
827 options->keepalives = 1;
828 if (options->compression_level == -1)
829 options->compression_level = 6;
830 if (options->port == -1)
831 options->port = 0; /* Filled in ssh_connect. */
832 if (options->connection_attempts == -1)
833 options->connection_attempts = 4;
834 if (options->number_of_password_prompts == -1)
835 options->number_of_password_prompts = 3;
836 /* Selected in ssh_login(). */
837 if (options->cipher == -1)
838 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000839 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000840 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000841 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000842 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +0000843 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +1100844 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000846 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100847 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000848 xmalloc(len);
849 snprintf(options->identity_files[options->num_identity_files++],
850 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 }
852 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +0000853 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
854 options->identity_files[options->num_identity_files] =
855 xmalloc(len);
856 snprintf(options->identity_files[options->num_identity_files++],
857 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
858
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000859 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100860 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000861 xmalloc(len);
862 snprintf(options->identity_files[options->num_identity_files++],
863 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100864 }
Damien Millereba71ba2000-04-29 23:57:08 +1000865 }
Damien Miller95def091999-11-25 00:26:21 +1100866 if (options->escape_char == -1)
867 options->escape_char = '~';
868 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000869 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100870 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000871 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000872 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000873 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000874 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000875 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Miller95def091999-11-25 00:26:21 +1100876 if (options->log_level == (LogLevel) - 1)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000877 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100878 /* options->proxy_command should not be set by default */
879 /* options->user will be set in the main program if appropriate */
880 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000881 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000882 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883}