blob: a10aaff1c4d40cb6d05e5e944054f93a5235ab37 [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 Lindstrom226cfa02001-01-22 05:34:40 +000015RCSID("$OpenBSD: readconf.c,v 1.58 2001/01/21 19:05:53 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"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026
27/* Format of the configuration file:
28
29 # Configuration data is parsed as follows:
30 # 1. command line options
31 # 2. user-specific file
32 # 3. system-wide file
33 # Any configuration value is only changed the first time it is set.
34 # Thus, host-specific definitions should be at the beginning of the
35 # configuration file, and defaults at the end.
36
37 # Host-specific declarations. These may override anything above. A single
38 # host may match multiple declarations; these are processed in the order
39 # that they are given in.
40
41 Host *.ngs.fi ngs.fi
42 FallBackToRsh no
43
44 Host fake.com
45 HostName another.host.name.real.org
46 User blaah
47 Port 34289
48 ForwardX11 no
49 ForwardAgent no
50
51 Host books.com
52 RemoteForward 9999 shadows.cs.hut.fi:9999
53 Cipher 3des
54
55 Host fascist.blob.com
56 Port 23123
57 User tylonen
58 RhostsAuthentication no
59 PasswordAuthentication no
60
61 Host puukko.hut.fi
62 User t35124p
63 ProxyCommand ssh-proxy %h %p
64
65 Host *.fr
66 UseRsh yes
67
68 Host *.su
69 Cipher none
70 PasswordAuthentication no
71
72 # Defaults for various options
73 Host *
74 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +110075 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076 RhostsAuthentication yes
77 PasswordAuthentication yes
78 RSAAuthentication yes
79 RhostsRSAAuthentication yes
80 FallBackToRsh no
81 UseRsh no
82 StrictHostKeyChecking yes
83 KeepAlives no
84 IdentityFile ~/.ssh/identity
85 Port 22
86 EscapeChar ~
87
88*/
89
90/* Keyword tokens. */
91
Damien Miller95def091999-11-25 00:26:21 +110092typedef enum {
93 oBadOption,
94 oForwardAgent, oForwardX11, oGatewayPorts, oRhostsAuthentication,
95 oPasswordAuthentication, oRSAAuthentication, oFallBackToRsh, oUseRsh,
Damien Millerd3a18572000-06-07 19:55:44 +100096 oSkeyAuthentication, oXAuthLocation,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110098 oKerberosAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099#endif /* KRB4 */
100#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100101 oKerberosTgtPassing, oAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102#endif
Damien Miller95def091999-11-25 00:26:21 +1100103 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
104 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
105 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
106 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
107 oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100108 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol,
109 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000110 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111} OpCodes;
112
113/* Textual representations of the tokens. */
114
Damien Miller95def091999-11-25 00:26:21 +1100115static struct {
116 const char *name;
117 OpCodes opcode;
118} keywords[] = {
119 { "forwardagent", oForwardAgent },
120 { "forwardx11", oForwardX11 },
Damien Millerd3a18572000-06-07 19:55:44 +1000121 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100122 { "gatewayports", oGatewayPorts },
123 { "useprivilegedport", oUsePrivilegedPort },
124 { "rhostsauthentication", oRhostsAuthentication },
125 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100126 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
127 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100128 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100129 { "pubkeyauthentication", oPubkeyAuthentication },
130 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100131 { "skeyauthentication", oSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100133 { "kerberosauthentication", oKerberosAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134#endif /* KRB4 */
135#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100136 { "kerberostgtpassing", oKerberosTgtPassing },
137 { "afstokenpassing", oAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138#endif
Damien Miller95def091999-11-25 00:26:21 +1100139 { "fallbacktorsh", oFallBackToRsh },
140 { "usersh", oUseRsh },
141 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100142 { "identityfile2", oIdentityFile }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100143 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000144 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100145 { "proxycommand", oProxyCommand },
146 { "port", oPort },
147 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000148 { "ciphers", oCiphers },
149 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100150 { "remoteforward", oRemoteForward },
151 { "localforward", oLocalForward },
152 { "user", oUser },
153 { "host", oHost },
154 { "escapechar", oEscapeChar },
155 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
156 { "globalknownhostsfile", oGlobalKnownHostsFile },
157 { "userknownhostsfile", oUserKnownHostsFile },
Damien Millereba71ba2000-04-29 23:57:08 +1000158 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
159 { "userknownhostsfile2", oUserKnownHostsFile2 },
Damien Miller95def091999-11-25 00:26:21 +1100160 { "connectionattempts", oConnectionAttempts },
161 { "batchmode", oBatchMode },
162 { "checkhostip", oCheckHostIP },
163 { "stricthostkeychecking", oStrictHostKeyChecking },
164 { "compression", oCompression },
165 { "compressionlevel", oCompressionLevel },
166 { "keepalive", oKeepAlives },
167 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
168 { "tisauthentication", oTISAuthentication },
169 { "loglevel", oLogLevel },
170 { NULL, 0 }
Damien Miller5ce662a1999-11-11 17:57:39 +1100171};
172
Damien Miller5428f641999-11-25 11:54:57 +1100173/*
174 * Adds a local TCP/IP port forward to options. Never returns if there is an
175 * error.
176 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
Damien Miller4af51302000-04-16 11:18:38 +1000178void
Damien Milleraae6c611999-12-06 11:47:28 +1100179add_local_forward(Options *options, u_short port, const char *host,
180 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181{
Damien Miller95def091999-11-25 00:26:21 +1100182 Forward *fwd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100183#ifndef HAVE_CYGWIN
Damien Miller95def091999-11-25 00:26:21 +1100184 extern uid_t original_real_uid;
Damien Miller95def091999-11-25 00:26:21 +1100185 if (port < IPPORT_RESERVED && original_real_uid != 0)
186 fatal("Privileged ports can only be forwarded by root.\n");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100187#endif
Damien Miller95def091999-11-25 00:26:21 +1100188 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
189 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
190 fwd = &options->local_forwards[options->num_local_forwards++];
191 fwd->port = port;
192 fwd->host = xstrdup(host);
193 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194}
195
Damien Miller5428f641999-11-25 11:54:57 +1100196/*
197 * Adds a remote TCP/IP port forward to options. Never returns if there is
198 * an error.
199 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Damien Miller4af51302000-04-16 11:18:38 +1000201void
Damien Milleraae6c611999-12-06 11:47:28 +1100202add_remote_forward(Options *options, u_short port, const char *host,
203 u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller95def091999-11-25 00:26:21 +1100205 Forward *fwd;
206 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
207 fatal("Too many remote forwards (max %d).",
208 SSH_MAX_FORWARDS_PER_DIRECTION);
209 fwd = &options->remote_forwards[options->num_remote_forwards++];
210 fwd->port = port;
211 fwd->host = xstrdup(host);
212 fwd->host_port = host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213}
214
Damien Miller5428f641999-11-25 11:54:57 +1100215/*
216 * Returns the number of the token pointed to by cp of length len. Never
217 * returns if the token is not known.
218 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219
Damien Miller4af51302000-04-16 11:18:38 +1000220static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100221parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000223 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224
Damien Miller95def091999-11-25 00:26:21 +1100225 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100226 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100227 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller95def091999-11-25 00:26:21 +1100229 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
230 filename, linenum, cp);
231 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232}
233
Damien Miller5428f641999-11-25 11:54:57 +1100234/*
235 * Processes a single option line as used in the configuration files. This
236 * only sets those values that have not already been set.
237 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238
Damien Miller2ccf6611999-11-15 15:25:10 +1100239int
240process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100241 char *line, const char *filename, int linenum,
242 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243{
Damien Miller37023962000-07-11 17:31:38 +1000244 char buf[256], *s, *string, **charptr, *endofnumber, *keyword, *arg;
Damien Milleraae6c611999-12-06 11:47:28 +1100245 int opcode, *intptr, value;
246 u_short fwd_port, fwd_host_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Millerbe484b52000-07-15 14:14:16 +1000248 s = line;
249 /* Get the keyword. (Each line is supposed to begin with a keyword). */
250 keyword = strdelim(&s);
251 /* Ignore leading whitespace. */
252 if (*keyword == '\0')
253 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000254 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100255 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Miller37023962000-07-11 17:31:38 +1000257 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258
Damien Miller95def091999-11-25 00:26:21 +1100259 switch (opcode) {
260 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100261 /* don't panic, but count bad options */
262 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100263 /* NOTREACHED */
264 case oForwardAgent:
265 intptr = &options->forward_agent;
266parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000267 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000268 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100269 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
270 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000271 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100272 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000273 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100274 value = 0;
275 else
276 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
277 if (*activep && *intptr == -1)
278 *intptr = value;
279 break;
280
281 case oForwardX11:
282 intptr = &options->forward_x11;
283 goto parse_flag;
284
285 case oGatewayPorts:
286 intptr = &options->gateway_ports;
287 goto parse_flag;
288
289 case oUsePrivilegedPort:
290 intptr = &options->use_privileged_port;
291 goto parse_flag;
292
293 case oRhostsAuthentication:
294 intptr = &options->rhosts_authentication;
295 goto parse_flag;
296
297 case oPasswordAuthentication:
298 intptr = &options->password_authentication;
299 goto parse_flag;
300
Damien Miller874d77b2000-10-14 16:23:11 +1100301 case oKbdInteractiveAuthentication:
302 intptr = &options->kbd_interactive_authentication;
303 goto parse_flag;
304
305 case oKbdInteractiveDevices:
306 charptr = &options->kbd_interactive_devices;
307 goto parse_string;
308
Damien Miller0bc1bd82000-11-13 22:57:25 +1100309 case oPubkeyAuthentication:
310 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000311 goto parse_flag;
312
Damien Miller95def091999-11-25 00:26:21 +1100313 case oRSAAuthentication:
314 intptr = &options->rsa_authentication;
315 goto parse_flag;
316
317 case oRhostsRSAAuthentication:
318 intptr = &options->rhosts_rsa_authentication;
319 goto parse_flag;
320
321 case oTISAuthentication:
322 /* fallthrough, there is no difference on the client side */
323 case oSkeyAuthentication:
324 intptr = &options->skey_authentication;
325 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
327#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100328 case oKerberosAuthentication:
329 intptr = &options->kerberos_authentication;
330 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331#endif /* KRB4 */
332
333#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100334 case oKerberosTgtPassing:
335 intptr = &options->kerberos_tgt_passing;
336 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337
Damien Miller95def091999-11-25 00:26:21 +1100338 case oAFSTokenPassing:
339 intptr = &options->afs_token_passing;
340 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342
Damien Miller95def091999-11-25 00:26:21 +1100343 case oFallBackToRsh:
344 intptr = &options->fallback_to_rsh;
345 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346
Damien Miller95def091999-11-25 00:26:21 +1100347 case oUseRsh:
348 intptr = &options->use_rsh;
349 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350
Damien Miller95def091999-11-25 00:26:21 +1100351 case oBatchMode:
352 intptr = &options->batch_mode;
353 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller95def091999-11-25 00:26:21 +1100355 case oCheckHostIP:
356 intptr = &options->check_host_ip;
357 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
Damien Miller95def091999-11-25 00:26:21 +1100359 case oStrictHostKeyChecking:
360 intptr = &options->strict_host_key_checking;
Damien Millerbe484b52000-07-15 14:14:16 +1000361 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000362 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100363 fatal("%.200s line %d: Missing yes/no argument.",
364 filename, linenum);
365 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000366 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100367 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000368 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100369 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000370 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100371 value = 2;
372 else
373 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
374 if (*activep && *intptr == -1)
375 *intptr = value;
376 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377
Damien Miller95def091999-11-25 00:26:21 +1100378 case oCompression:
379 intptr = &options->compression;
380 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000381
Damien Miller95def091999-11-25 00:26:21 +1100382 case oKeepAlives:
383 intptr = &options->keepalives;
384 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385
Damien Miller95def091999-11-25 00:26:21 +1100386 case oNumberOfPasswordPrompts:
387 intptr = &options->number_of_password_prompts;
388 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389
Damien Miller95def091999-11-25 00:26:21 +1100390 case oCompressionLevel:
391 intptr = &options->compression_level;
392 goto parse_int;
393
394 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000395 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000396 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100397 fatal("%.200s line %d: Missing argument.", filename, linenum);
398 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100399 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000400 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100401 fatal("%.200s line %d: Too many identity files specified (max %d).",
402 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100403 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000404 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000405 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100406 }
407 break;
408
Damien Millerd3a18572000-06-07 19:55:44 +1000409 case oXAuthLocation:
410 charptr=&options->xauth_location;
411 goto parse_string;
412
Damien Miller95def091999-11-25 00:26:21 +1100413 case oUser:
414 charptr = &options->user;
415parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000416 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000417 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100418 fatal("%.200s line %d: Missing argument.", filename, linenum);
419 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000420 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100421 break;
422
423 case oGlobalKnownHostsFile:
424 charptr = &options->system_hostfile;
425 goto parse_string;
426
427 case oUserKnownHostsFile:
428 charptr = &options->user_hostfile;
429 goto parse_string;
430
Damien Millereba71ba2000-04-29 23:57:08 +1000431 case oGlobalKnownHostsFile2:
432 charptr = &options->system_hostfile2;
433 goto parse_string;
434
435 case oUserKnownHostsFile2:
436 charptr = &options->user_hostfile2;
437 goto parse_string;
438
Damien Miller95def091999-11-25 00:26:21 +1100439 case oHostName:
440 charptr = &options->hostname;
441 goto parse_string;
442
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000443 case oHostKeyAlias:
444 charptr = &options->host_key_alias;
445 goto parse_string;
446
Damien Miller95def091999-11-25 00:26:21 +1100447 case oProxyCommand:
448 charptr = &options->proxy_command;
449 string = xstrdup("");
Damien Millerbe484b52000-07-15 14:14:16 +1000450 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000451 string = xrealloc(string, strlen(string) + strlen(arg) + 2);
Damien Miller95def091999-11-25 00:26:21 +1100452 strcat(string, " ");
Damien Miller37023962000-07-11 17:31:38 +1000453 strcat(string, arg);
Damien Miller95def091999-11-25 00:26:21 +1100454 }
455 if (*activep && *charptr == NULL)
456 *charptr = string;
457 else
458 xfree(string);
459 return 0;
460
461 case oPort:
462 intptr = &options->port;
463parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000464 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000465 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100466 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000467 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100468 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100469
470 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000471 value = strtol(arg, &endofnumber, 0);
472 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100473 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100474 if (*activep && *intptr == -1)
475 *intptr = value;
476 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477
Damien Miller95def091999-11-25 00:26:21 +1100478 case oConnectionAttempts:
479 intptr = &options->connection_attempts;
480 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100481
Damien Miller95def091999-11-25 00:26:21 +1100482 case oCipher:
483 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000484 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000485 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000486 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000487 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100488 if (value == -1)
489 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000490 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100491 if (*activep && *intptr == -1)
492 *intptr = value;
493 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494
Damien Miller78928792000-04-12 20:17:38 +1000495 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000496 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000497 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000498 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000499 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000500 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000501 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000502 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000503 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000504 break;
505
506 case oProtocol:
507 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000508 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000509 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000510 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000511 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000512 if (value == SSH_PROTO_UNKNOWN)
513 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000514 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000515 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
516 *intptr = value;
517 break;
518
Damien Miller95def091999-11-25 00:26:21 +1100519 case oLogLevel:
520 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000521 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000522 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100523 if (value == (LogLevel) - 1)
524 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000525 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100526 if (*activep && (LogLevel) * intptr == -1)
527 *intptr = (LogLevel) value;
528 break;
529
530 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000531 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000532 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100533 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000534 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100535 fatal("%.200s line %d: Badly formatted port number.",
536 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000537 fwd_port = atoi(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000538 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000539 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100540 fatal("%.200s line %d: Missing second argument.",
541 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000542 if (sscanf(arg, "%255[^:]:%hu", buf, &fwd_host_port) != 2)
Damien Miller95def091999-11-25 00:26:21 +1100543 fatal("%.200s line %d: Badly formatted host:port.",
544 filename, linenum);
545 if (*activep)
546 add_remote_forward(options, fwd_port, buf, fwd_host_port);
547 break;
548
549 case oLocalForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000550 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000551 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100552 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000553 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100554 fatal("%.200s line %d: Badly formatted port number.",
555 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000556 fwd_port = atoi(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000557 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000558 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100559 fatal("%.200s line %d: Missing second argument.",
560 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000561 if (sscanf(arg, "%255[^:]:%hu", buf, &fwd_host_port) != 2)
Damien Miller95def091999-11-25 00:26:21 +1100562 fatal("%.200s line %d: Badly formatted host:port.",
563 filename, linenum);
564 if (*activep)
565 add_local_forward(options, fwd_port, buf, fwd_host_port);
566 break;
567
568 case oHost:
569 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000570 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000571 if (match_pattern(host, arg)) {
572 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100573 *activep = 1;
574 break;
575 }
Damien Millerbe484b52000-07-15 14:14:16 +1000576 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100577 return 0;
578
579 case oEscapeChar:
580 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000581 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000582 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100583 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000584 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000585 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
586 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000587 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000588 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000589 else if (strcmp(arg, "none") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100590 value = -2;
591 else {
592 fatal("%.200s line %d: Bad escape character.",
593 filename, linenum);
594 /* NOTREACHED */
595 value = 0; /* Avoid compiler warning. */
596 }
597 if (*activep && *intptr == -1)
598 *intptr = value;
599 break;
600
601 default:
602 fatal("process_config_line: Unimplemented opcode %d", opcode);
603 }
604
605 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000606 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000607 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
608 filename, linenum, arg);
609 }
Damien Miller95def091999-11-25 00:26:21 +1100610 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611}
612
613
Damien Miller5428f641999-11-25 11:54:57 +1100614/*
615 * Reads the config file and modifies the options accordingly. Options
616 * should already be initialized before this call. This never returns if
617 * there is an error. If the file does not exist, this returns immediately.
618 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Damien Miller4af51302000-04-16 11:18:38 +1000620void
Damien Miller95def091999-11-25 00:26:21 +1100621read_config_file(const char *filename, const char *host, Options *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622{
Damien Miller95def091999-11-25 00:26:21 +1100623 FILE *f;
624 char line[1024];
625 int active, linenum;
626 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627
Damien Miller95def091999-11-25 00:26:21 +1100628 /* Open the file. */
629 f = fopen(filename, "r");
630 if (!f)
631 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Damien Miller95def091999-11-25 00:26:21 +1100633 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
Damien Miller5428f641999-11-25 11:54:57 +1100635 /*
636 * Mark that we are now processing the options. This flag is turned
637 * on/off by Host specifications.
638 */
Damien Miller95def091999-11-25 00:26:21 +1100639 active = 1;
640 linenum = 0;
641 while (fgets(line, sizeof(line), f)) {
642 /* Update line number counter. */
643 linenum++;
644 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
645 bad_options++;
646 }
647 fclose(f);
648 if (bad_options > 0)
649 fatal("%s: terminating, %d bad configuration options\n",
650 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651}
652
Damien Miller5428f641999-11-25 11:54:57 +1100653/*
654 * Initializes options to special values that indicate that they have not yet
655 * been set. Read_config_file will only set options with this value. Options
656 * are processed in the following order: command line, user config file,
657 * system config file. Last, fill_default_options is called.
658 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller4af51302000-04-16 11:18:38 +1000660void
Damien Miller95def091999-11-25 00:26:21 +1100661initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662{
Damien Miller95def091999-11-25 00:26:21 +1100663 memset(options, 'X', sizeof(*options));
664 options->forward_agent = -1;
665 options->forward_x11 = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000666 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100667 options->gateway_ports = -1;
668 options->use_privileged_port = -1;
669 options->rhosts_authentication = -1;
670 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100671 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100672 options->skey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100674 options->kerberos_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675#endif
676#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100677 options->kerberos_tgt_passing = -1;
678 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679#endif
Damien Miller95def091999-11-25 00:26:21 +1100680 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100681 options->kbd_interactive_authentication = -1;
682 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100683 options->rhosts_rsa_authentication = -1;
684 options->fallback_to_rsh = -1;
685 options->use_rsh = -1;
686 options->batch_mode = -1;
687 options->check_host_ip = -1;
688 options->strict_host_key_checking = -1;
689 options->compression = -1;
690 options->keepalives = -1;
691 options->compression_level = -1;
692 options->port = -1;
693 options->connection_attempts = -1;
694 options->number_of_password_prompts = -1;
695 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000696 options->ciphers = NULL;
697 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100698 options->num_identity_files = 0;
699 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000700 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100701 options->proxy_command = NULL;
702 options->user = NULL;
703 options->escape_char = -1;
704 options->system_hostfile = NULL;
705 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000706 options->system_hostfile2 = NULL;
707 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100708 options->num_local_forwards = 0;
709 options->num_remote_forwards = 0;
710 options->log_level = (LogLevel) - 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711}
712
Damien Miller5428f641999-11-25 11:54:57 +1100713/*
714 * Called after processing other sources of option data, this fills those
715 * options for which no value has been specified with their default values.
716 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717
Damien Miller4af51302000-04-16 11:18:38 +1000718void
Damien Miller95def091999-11-25 00:26:21 +1100719fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720{
Damien Miller95def091999-11-25 00:26:21 +1100721 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000722 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100723 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100724 options->forward_x11 = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000725#ifdef XAUTH_PATH
726 if (options->xauth_location == NULL)
727 options->xauth_location = XAUTH_PATH;
728#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100729 if (options->gateway_ports == -1)
730 options->gateway_ports = 0;
731 if (options->use_privileged_port == -1)
732 options->use_privileged_port = 1;
733 if (options->rhosts_authentication == -1)
734 options->rhosts_authentication = 1;
735 if (options->rsa_authentication == -1)
736 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100737 if (options->pubkey_authentication == -1)
738 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100739 if (options->skey_authentication == -1)
740 options->skey_authentication = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100742 if (options->kerberos_authentication == -1)
743 options->kerberos_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000744#endif /* KRB4 */
745#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100746 if (options->kerberos_tgt_passing == -1)
747 options->kerberos_tgt_passing = 1;
748 if (options->afs_token_passing == -1)
749 options->afs_token_passing = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100751 if (options->password_authentication == -1)
752 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100753 if (options->kbd_interactive_authentication == -1)
754 options->kbd_interactive_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100755 if (options->rhosts_rsa_authentication == -1)
756 options->rhosts_rsa_authentication = 1;
757 if (options->fallback_to_rsh == -1)
Damien Miller182ee6e2000-07-12 09:45:27 +1000758 options->fallback_to_rsh = 0;
Damien Miller95def091999-11-25 00:26:21 +1100759 if (options->use_rsh == -1)
760 options->use_rsh = 0;
761 if (options->batch_mode == -1)
762 options->batch_mode = 0;
763 if (options->check_host_ip == -1)
764 options->check_host_ip = 1;
765 if (options->strict_host_key_checking == -1)
766 options->strict_host_key_checking = 2; /* 2 is default */
767 if (options->compression == -1)
768 options->compression = 0;
769 if (options->keepalives == -1)
770 options->keepalives = 1;
771 if (options->compression_level == -1)
772 options->compression_level = 6;
773 if (options->port == -1)
774 options->port = 0; /* Filled in ssh_connect. */
775 if (options->connection_attempts == -1)
776 options->connection_attempts = 4;
777 if (options->number_of_password_prompts == -1)
778 options->number_of_password_prompts = 3;
779 /* Selected in ssh_login(). */
780 if (options->cipher == -1)
781 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +1000782 /* options->ciphers, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +1000783 if (options->protocol == SSH_PROTO_UNKNOWN)
Damien Millereba71ba2000-04-29 23:57:08 +1000784 options->protocol = SSH_PROTO_1|SSH_PROTO_2|SSH_PROTO_1_PREFERRED;
Damien Miller95def091999-11-25 00:26:21 +1100785 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100786 if (options->protocol & SSH_PROTO_1) {
787 options->identity_files[options->num_identity_files] =
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000788 xmalloc(2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100789 sprintf(options->identity_files[options->num_identity_files++],
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000790 "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100791 }
792 if (options->protocol & SSH_PROTO_2) {
793 options->identity_files[options->num_identity_files] =
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000794 xmalloc(2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100795 sprintf(options->identity_files[options->num_identity_files++],
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000796 "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797 }
Damien Millereba71ba2000-04-29 23:57:08 +1000798 }
Damien Miller95def091999-11-25 00:26:21 +1100799 if (options->escape_char == -1)
800 options->escape_char = '~';
801 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000802 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +1100803 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000804 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +1000805 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000806 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +1000807 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000808 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Miller95def091999-11-25 00:26:21 +1100809 if (options->log_level == (LogLevel) - 1)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000810 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100811 /* options->proxy_command should not be set by default */
812 /* options->user will be set in the main program if appropriate */
813 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000814 /* options->host_key_alias should not be set by default */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000815}