blob: 36265e431da53ca9f77b83762e22a02472650265 [file] [log] [blame]
Darren Tuckeraefa3682013-04-05 11:18:35 +11001/* $OpenBSD: readconf.c,v 1.196 2013/02/22 04:45:08 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Functions for reading the configuration files.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
18#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100019#include <sys/socket.h>
20
21#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110022#include <netinet/in_systm.h>
23#include <netinet/ip.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
Damien Millerc7b06362006-03-15 11:53:45 +110025#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100026#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100027#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100028#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100029#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100030#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100032#include <unistd.h>
Damien Millerc7b06362006-03-15 11:53:45 +110033
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100035#include "ssh.h"
Damien Miller78928792000-04-12 20:17:38 +100036#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000037#include "cipher.h"
38#include "pathnames.h"
39#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "key.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000041#include "readconf.h"
42#include "match.h"
43#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100044#include "buffer.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000045#include "kex.h"
46#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
48/* Format of the configuration file:
49
50 # Configuration data is parsed as follows:
51 # 1. command line options
52 # 2. user-specific file
53 # 3. system-wide file
54 # Any configuration value is only changed the first time it is set.
55 # Thus, host-specific definitions should be at the beginning of the
56 # configuration file, and defaults at the end.
57
58 # Host-specific declarations. These may override anything above. A single
59 # host may match multiple declarations; these are processed in the order
60 # that they are given in.
61
62 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000063 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
65 Host fake.com
66 HostName another.host.name.real.org
67 User blaah
68 Port 34289
69 ForwardX11 no
70 ForwardAgent no
71
72 Host books.com
73 RemoteForward 9999 shadows.cs.hut.fi:9999
74 Cipher 3des
75
76 Host fascist.blob.com
77 Port 23123
78 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079 PasswordAuthentication no
80
81 Host puukko.hut.fi
82 User t35124p
83 ProxyCommand ssh-proxy %h %p
84
85 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000086 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
88 Host *.su
89 Cipher none
90 PasswordAuthentication no
91
Damien Millerd27b9472005-12-13 19:29:02 +110092 Host vpn.fake.com
93 Tunnel yes
94 TunnelDevice 3
95
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096 # Defaults for various options
97 Host *
98 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +110099 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100 PasswordAuthentication yes
101 RSAAuthentication yes
102 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +1100104 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105 IdentityFile ~/.ssh/identity
106 Port 22
107 EscapeChar ~
108
109*/
110
111/* Keyword tokens. */
112
Damien Miller95def091999-11-25 00:26:21 +1100113typedef enum {
114 oBadOption,
Damien Miller1ab6a512010-06-26 10:02:24 +1000115 oForwardAgent, oForwardX11, oForwardX11Trusted, oForwardX11Timeout,
116 oGatewayPorts, oExitOnForwardFailure,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000117 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000118 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +1100119 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
120 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
121 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
122 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +1100123 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000124 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100125 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000126 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000127 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Damien Miller7ea845e2010-02-12 09:21:02 +1100128 oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000129 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000130 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000131 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100132 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millere11e1ea2010-08-03 16:04:46 +1000133 oSendEnv, oControlPath, oControlMaster, oControlPersist,
134 oHashKnownHosts,
Damien Millerd27b9472005-12-13 19:29:02 +1100135 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100136 oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication,
Damien Miller21771e22011-05-15 08:45:50 +1000137 oKexAlgorithms, oIPQoS, oRequestTTY,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100138 oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139} OpCodes;
140
141/* Textual representations of the tokens. */
142
Damien Miller95def091999-11-25 00:26:21 +1100143static struct {
144 const char *name;
145 OpCodes opcode;
146} keywords[] = {
147 { "forwardagent", oForwardAgent },
148 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000149 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000150 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000151 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000152 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100153 { "gatewayports", oGatewayPorts },
154 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000155 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100156 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100157 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
158 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100159 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100160 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000161 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000162 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000163 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000164 { "challengeresponseauthentication", oChallengeResponseAuthentication },
165 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
166 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000167 { "kerberosauthentication", oUnsupported },
168 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000169 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000170#if defined(GSSAPI)
171 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000172 { "gssapidelegatecredentials", oGssDelegateCreds },
173#else
174 { "gssapiauthentication", oUnsupported },
175 { "gssapidelegatecredentials", oUnsupported },
176#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000177 { "fallbacktorsh", oDeprecated },
178 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100179 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100180 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100181 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100182 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000183 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100184 { "proxycommand", oProxyCommand },
185 { "port", oPort },
186 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000187 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000188 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000189 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100190 { "remoteforward", oRemoteForward },
191 { "localforward", oLocalForward },
192 { "user", oUser },
193 { "host", oHost },
194 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100195 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000196 { "globalknownhostsfile2", oDeprecated },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100197 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000198 { "userknownhostsfile2", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100199 { "connectionattempts", oConnectionAttempts },
200 { "batchmode", oBatchMode },
201 { "checkhostip", oCheckHostIP },
202 { "stricthostkeychecking", oStrictHostKeyChecking },
203 { "compression", oCompression },
204 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100205 { "tcpkeepalive", oTCPKeepAlive },
206 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100207 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100208 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000209 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000210 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000211 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000212 { "bindaddress", oBindAddress },
Damien Miller7ea845e2010-02-12 09:21:02 +1100213#ifdef ENABLE_PKCS11
214 { "smartcarddevice", oPKCS11Provider },
215 { "pkcs11provider", oPKCS11Provider },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000216#else
217 { "smartcarddevice", oUnsupported },
Damien Miller7ea845e2010-02-12 09:21:02 +1100218 { "pkcs11provider", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000219#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100220 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000221 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000222 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100223 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000224 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000225 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000226 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100227 { "serveraliveinterval", oServerAliveInterval },
228 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000229 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000230 { "controlpath", oControlPath },
231 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000232 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100233 { "hashknownhosts", oHashKnownHosts },
Damien Millerd27b9472005-12-13 19:29:02 +1100234 { "tunnel", oTunnel },
235 { "tunneldevice", oTunnelDevice },
236 { "localcommand", oLocalCommand },
237 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000238 { "visualhostkey", oVisualHostKey },
Darren Tucker71e4d542009-07-06 07:12:27 +1000239 { "useroaming", oUseRoaming },
Damien Miller01ed2272008-11-05 16:20:46 +1100240#ifdef JPAKE
241 { "zeroknowledgepasswordauthentication",
242 oZeroKnowledgePasswordAuthentication },
243#else
244 { "zeroknowledgepasswordauthentication", oUnsupported },
245#endif
Damien Millerd5f62bf2010-09-24 22:11:14 +1000246 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100247 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000248 { "requesttty", oRequestTTY },
Damien Miller01ed2272008-11-05 16:20:46 +1100249
Ben Lindstrom65366a82001-12-06 16:32:47 +0000250 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100251};
252
Damien Miller5428f641999-11-25 11:54:57 +1100253/*
254 * Adds a local TCP/IP port forward to options. Never returns if there is an
255 * error.
256 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller4af51302000-04-16 11:18:38 +1000258void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100259add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Damien Miller95def091999-11-25 00:26:21 +1100261 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000262#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100263 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100264 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000265 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100266#endif
Damien Miller232cfb12010-06-26 09:50:30 +1000267 options->local_forwards = xrealloc(options->local_forwards,
268 options->num_local_forwards + 1,
269 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100270 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100271
Damien Miller1a0442f2008-11-05 16:30:06 +1100272 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100273 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100274 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100275 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276}
277
Damien Miller5428f641999-11-25 11:54:57 +1100278/*
279 * Adds a remote TCP/IP port forward to options. Never returns if there is
280 * an error.
281 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller4af51302000-04-16 11:18:38 +1000283void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100284add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285{
Damien Miller95def091999-11-25 00:26:21 +1100286 Forward *fwd;
Damien Miller232cfb12010-06-26 09:50:30 +1000287
288 options->remote_forwards = xrealloc(options->remote_forwards,
289 options->num_remote_forwards + 1,
290 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100291 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100292
Damien Miller1a0442f2008-11-05 16:30:06 +1100293 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100294 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100295 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100296 fwd->connect_port = newfwd->connect_port;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100297 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000298 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299}
300
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000301static void
302clear_forwardings(Options *options)
303{
304 int i;
305
Damien Millerf91ee4c2005-03-01 21:24:33 +1100306 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tucker1d55ca72005-03-14 22:58:40 +1100307 if (options->local_forwards[i].listen_host != NULL)
308 xfree(options->local_forwards[i].listen_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100309 xfree(options->local_forwards[i].connect_host);
310 }
Damien Miller232cfb12010-06-26 09:50:30 +1000311 if (options->num_local_forwards > 0) {
312 xfree(options->local_forwards);
313 options->local_forwards = NULL;
314 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000315 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100316 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tucker1d55ca72005-03-14 22:58:40 +1100317 if (options->remote_forwards[i].listen_host != NULL)
318 xfree(options->remote_forwards[i].listen_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100319 xfree(options->remote_forwards[i].connect_host);
320 }
Damien Miller232cfb12010-06-26 09:50:30 +1000321 if (options->num_remote_forwards > 0) {
322 xfree(options->remote_forwards);
323 options->remote_forwards = NULL;
324 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000325 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100326 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000327}
328
Darren Tucker19104782013-04-05 11:13:08 +1100329void
330add_identity_file(Options *options, const char *dir, const char *filename,
331 int userprovided)
332{
333 char *path;
334
335 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
336 fatal("Too many identity files specified (max %d)",
337 SSH_MAX_IDENTITY_FILES);
338
339 if (dir == NULL) /* no dir, filename is absolute */
340 path = xstrdup(filename);
341 else
342 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
343
344 options->identity_file_userprovided[options->num_identity_files] =
345 userprovided;
346 options->identity_files[options->num_identity_files++] = path;
347}
348
Damien Miller5428f641999-11-25 11:54:57 +1100349/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000350 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100351 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
Damien Miller4af51302000-04-16 11:18:38 +1000353static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100354parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000356 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller95def091999-11-25 00:26:21 +1100358 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100359 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100360 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000362 error("%s: line %d: Bad configuration option: %s",
363 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100364 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365}
366
Damien Miller5428f641999-11-25 11:54:57 +1100367/*
368 * Processes a single option line as used in the configuration files. This
369 * only sets those values that have not already been set.
370 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100371#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Damien Miller2ccf6611999-11-15 15:25:10 +1100373int
374process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100375 char *line, const char *filename, int linenum,
Darren Tuckeraefa3682013-04-05 11:18:35 +1100376 int *activep, int userconfig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377{
Damien Miller295ee632011-05-29 21:42:31 +1000378 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
379 char **cpptr, fwdarg[256];
380 u_int *uintptr, max_entries = 0;
Damien Millerfe924212011-05-15 08:44:45 +1000381 int negated, opcode, *intptr, value, value2, scale;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100382 LogLevel *log_level_ptr;
Damien Millerb59d4fe2006-03-15 11:30:38 +1100383 long long orig, val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100384 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100385 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386
Damien Millerc652cac2003-05-14 13:40:54 +1000387 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100388 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000389 if (strchr(WHITESPACE, line[len]) == NULL)
390 break;
391 line[len] = '\0';
392 }
393
Damien Millerbe484b52000-07-15 14:14:16 +1000394 s = line;
395 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100396 if ((keyword = strdelim(&s)) == NULL)
397 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000398 /* Ignore leading whitespace. */
399 if (*keyword == '\0')
400 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000401 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100402 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403
Damien Miller37023962000-07-11 17:31:38 +1000404 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405
Damien Miller95def091999-11-25 00:26:21 +1100406 switch (opcode) {
407 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100408 /* don't panic, but count bad options */
409 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100410 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000411 case oConnectTimeout:
412 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100413parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000414 arg = strdelim(&s);
415 if (!arg || *arg == '\0')
416 fatal("%s line %d: missing time value.",
417 filename, linenum);
418 if ((value = convtime(arg)) == -1)
419 fatal("%s line %d: invalid time value.",
420 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100421 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000422 *intptr = value;
423 break;
424
Damien Miller95def091999-11-25 00:26:21 +1100425 case oForwardAgent:
426 intptr = &options->forward_agent;
427parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000428 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000429 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100430 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
431 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000432 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100433 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000434 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100435 value = 0;
436 else
437 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
438 if (*activep && *intptr == -1)
439 *intptr = value;
440 break;
441
442 case oForwardX11:
443 intptr = &options->forward_x11;
444 goto parse_flag;
445
Darren Tucker0a118da2003-10-15 15:54:32 +1000446 case oForwardX11Trusted:
447 intptr = &options->forward_x11_trusted;
448 goto parse_flag;
Damien Miller1ab6a512010-06-26 10:02:24 +1000449
450 case oForwardX11Timeout:
451 intptr = &options->forward_x11_timeout;
452 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000453
Damien Miller95def091999-11-25 00:26:21 +1100454 case oGatewayPorts:
455 intptr = &options->gateway_ports;
456 goto parse_flag;
457
Darren Tuckere7d4b192006-07-12 22:17:10 +1000458 case oExitOnForwardFailure:
459 intptr = &options->exit_on_forward_failure;
460 goto parse_flag;
461
Damien Miller95def091999-11-25 00:26:21 +1100462 case oUsePrivilegedPort:
463 intptr = &options->use_privileged_port;
464 goto parse_flag;
465
Damien Miller95def091999-11-25 00:26:21 +1100466 case oPasswordAuthentication:
467 intptr = &options->password_authentication;
468 goto parse_flag;
469
Damien Miller01ed2272008-11-05 16:20:46 +1100470 case oZeroKnowledgePasswordAuthentication:
471 intptr = &options->zero_knowledge_password_authentication;
472 goto parse_flag;
473
Damien Miller874d77b2000-10-14 16:23:11 +1100474 case oKbdInteractiveAuthentication:
475 intptr = &options->kbd_interactive_authentication;
476 goto parse_flag;
477
478 case oKbdInteractiveDevices:
479 charptr = &options->kbd_interactive_devices;
480 goto parse_string;
481
Damien Miller0bc1bd82000-11-13 22:57:25 +1100482 case oPubkeyAuthentication:
483 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000484 goto parse_flag;
485
Damien Miller95def091999-11-25 00:26:21 +1100486 case oRSAAuthentication:
487 intptr = &options->rsa_authentication;
488 goto parse_flag;
489
490 case oRhostsRSAAuthentication:
491 intptr = &options->rhosts_rsa_authentication;
492 goto parse_flag;
493
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000494 case oHostbasedAuthentication:
495 intptr = &options->hostbased_authentication;
496 goto parse_flag;
497
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000498 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000499 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100500 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000501
Darren Tucker0efd1552003-08-26 11:49:55 +1000502 case oGssAuthentication:
503 intptr = &options->gss_authentication;
504 goto parse_flag;
505
506 case oGssDelegateCreds:
507 intptr = &options->gss_deleg_creds;
508 goto parse_flag;
509
Damien Miller95def091999-11-25 00:26:21 +1100510 case oBatchMode:
511 intptr = &options->batch_mode;
512 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513
Damien Miller95def091999-11-25 00:26:21 +1100514 case oCheckHostIP:
515 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000516 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Miller37876e92003-05-15 10:19:46 +1000518 case oVerifyHostKeyDNS:
519 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100520 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000521
Damien Miller95def091999-11-25 00:26:21 +1100522 case oStrictHostKeyChecking:
523 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100524parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000525 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000526 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000527 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100528 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100529 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000530 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100531 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000532 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100533 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000534 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100535 value = 2;
536 else
537 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
538 if (*activep && *intptr == -1)
539 *intptr = value;
540 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000541
Damien Miller95def091999-11-25 00:26:21 +1100542 case oCompression:
543 intptr = &options->compression;
544 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Damien Miller12c150e2003-12-17 16:31:10 +1100546 case oTCPKeepAlive:
547 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100548 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000550 case oNoHostAuthenticationForLocalhost:
551 intptr = &options->no_host_authentication_for_localhost;
552 goto parse_flag;
553
Damien Miller95def091999-11-25 00:26:21 +1100554 case oNumberOfPasswordPrompts:
555 intptr = &options->number_of_password_prompts;
556 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Miller95def091999-11-25 00:26:21 +1100558 case oCompressionLevel:
559 intptr = &options->compression_level;
560 goto parse_int;
561
Damien Millera5539d22003-04-09 20:50:06 +1000562 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +1000563 arg = strdelim(&s);
564 if (!arg || *arg == '\0')
565 fatal("%.200s line %d: Missing argument.", filename, linenum);
566 if (arg[0] < '0' || arg[0] > '9')
567 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Millerb59d4fe2006-03-15 11:30:38 +1100568 orig = val64 = strtoll(arg, &endofnumber, 10);
Damien Millera5539d22003-04-09 20:50:06 +1000569 if (arg == endofnumber)
570 fatal("%.200s line %d: Bad number.", filename, linenum);
571 switch (toupper(*endofnumber)) {
Damien Millerb59d4fe2006-03-15 11:30:38 +1100572 case '\0':
573 scale = 1;
574 break;
Damien Millera5539d22003-04-09 20:50:06 +1000575 case 'K':
Damien Millerb59d4fe2006-03-15 11:30:38 +1100576 scale = 1<<10;
Damien Millera5539d22003-04-09 20:50:06 +1000577 break;
578 case 'M':
Damien Millerb59d4fe2006-03-15 11:30:38 +1100579 scale = 1<<20;
Damien Millera5539d22003-04-09 20:50:06 +1000580 break;
581 case 'G':
Damien Millerb59d4fe2006-03-15 11:30:38 +1100582 scale = 1<<30;
Damien Millera5539d22003-04-09 20:50:06 +1000583 break;
Damien Millerb59d4fe2006-03-15 11:30:38 +1100584 default:
585 fatal("%.200s line %d: Invalid RekeyLimit suffix",
586 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +1000587 }
Damien Millerb59d4fe2006-03-15 11:30:38 +1100588 val64 *= scale;
589 /* detect integer wrap and too-large limits */
Damien Miller3dff1762008-02-10 22:25:52 +1100590 if ((val64 / scale) != orig || val64 > UINT_MAX)
Damien Millerb59d4fe2006-03-15 11:30:38 +1100591 fatal("%.200s line %d: RekeyLimit too large",
592 filename, linenum);
593 if (val64 < 16)
594 fatal("%.200s line %d: RekeyLimit too small",
595 filename, linenum);
Damien Miller3dff1762008-02-10 22:25:52 +1100596 if (*activep && options->rekey_limit == -1)
597 options->rekey_limit = (u_int32_t)val64;
Damien Millera5539d22003-04-09 20:50:06 +1000598 break;
599
Damien Miller95def091999-11-25 00:26:21 +1100600 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000601 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000602 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100603 fatal("%.200s line %d: Missing argument.", filename, linenum);
604 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100605 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000606 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100607 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100608 filename, linenum, SSH_MAX_IDENTITY_FILES);
Darren Tuckeraefa3682013-04-05 11:18:35 +1100609 add_identity_file(options, NULL, arg, userconfig);
Damien Miller95def091999-11-25 00:26:21 +1100610 }
611 break;
612
Damien Millerd3a18572000-06-07 19:55:44 +1000613 case oXAuthLocation:
614 charptr=&options->xauth_location;
615 goto parse_string;
616
Damien Miller95def091999-11-25 00:26:21 +1100617 case oUser:
618 charptr = &options->user;
619parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000620 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000621 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +1000622 fatal("%.200s line %d: Missing argument.",
623 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100624 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000625 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100626 break;
627
628 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000629 cpptr = (char **)&options->system_hostfiles;
630 uintptr = &options->num_system_hostfiles;
631 max_entries = SSH_MAX_HOSTS_FILES;
632parse_char_array:
633 if (*activep && *uintptr == 0) {
634 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
635 if ((*uintptr) >= max_entries)
636 fatal("%s line %d: "
637 "too many authorized keys files.",
638 filename, linenum);
639 cpptr[(*uintptr)++] = xstrdup(arg);
640 }
641 }
642 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100643
644 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000645 cpptr = (char **)&options->user_hostfiles;
646 uintptr = &options->num_user_hostfiles;
647 max_entries = SSH_MAX_HOSTS_FILES;
648 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +1000649
Damien Miller95def091999-11-25 00:26:21 +1100650 case oHostName:
651 charptr = &options->hostname;
652 goto parse_string;
653
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000654 case oHostKeyAlias:
655 charptr = &options->host_key_alias;
656 goto parse_string;
657
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000658 case oPreferredAuthentications:
659 charptr = &options->preferred_authentications;
660 goto parse_string;
661
Ben Lindstrome0f88042001-04-30 13:06:24 +0000662 case oBindAddress:
663 charptr = &options->bind_address;
664 goto parse_string;
665
Damien Miller7ea845e2010-02-12 09:21:02 +1100666 case oPKCS11Provider:
667 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000668 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000669
Damien Miller95def091999-11-25 00:26:21 +1100670 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +1100671 charptr = &options->proxy_command;
672parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000673 if (s == NULL)
674 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +1100675 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100676 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100677 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100678 return 0;
679
680 case oPort:
681 intptr = &options->port;
682parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000683 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000684 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100685 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000686 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100687 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100688
689 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000690 value = strtol(arg, &endofnumber, 0);
691 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100692 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100693 if (*activep && *intptr == -1)
694 *intptr = value;
695 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696
Damien Miller95def091999-11-25 00:26:21 +1100697 case oConnectionAttempts:
698 intptr = &options->connection_attempts;
699 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100700
Damien Miller95def091999-11-25 00:26:21 +1100701 case oCipher:
702 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000703 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000704 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000705 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000706 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100707 if (value == -1)
708 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100709 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100710 if (*activep && *intptr == -1)
711 *intptr = value;
712 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713
Damien Miller78928792000-04-12 20:17:38 +1000714 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000715 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000716 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000717 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000718 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000719 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100720 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000721 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000722 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000723 break;
724
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000725 case oMacs:
726 arg = strdelim(&s);
727 if (!arg || *arg == '\0')
728 fatal("%.200s line %d: Missing argument.", filename, linenum);
729 if (!mac_valid(arg))
730 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100731 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000732 if (*activep && options->macs == NULL)
733 options->macs = xstrdup(arg);
734 break;
735
Damien Millerd5f62bf2010-09-24 22:11:14 +1000736 case oKexAlgorithms:
737 arg = strdelim(&s);
738 if (!arg || *arg == '\0')
739 fatal("%.200s line %d: Missing argument.",
740 filename, linenum);
741 if (!kex_names_valid(arg))
742 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
743 filename, linenum, arg ? arg : "<NONE>");
744 if (*activep && options->kex_algorithms == NULL)
745 options->kex_algorithms = xstrdup(arg);
746 break;
747
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000748 case oHostKeyAlgorithms:
749 arg = strdelim(&s);
750 if (!arg || *arg == '\0')
751 fatal("%.200s line %d: Missing argument.", filename, linenum);
752 if (!key_names_valid2(arg))
753 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100754 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000755 if (*activep && options->hostkeyalgorithms == NULL)
756 options->hostkeyalgorithms = xstrdup(arg);
757 break;
758
Damien Miller78928792000-04-12 20:17:38 +1000759 case oProtocol:
760 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000761 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000762 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000763 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000764 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000765 if (value == SSH_PROTO_UNKNOWN)
766 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100767 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000768 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
769 *intptr = value;
770 break;
771
Damien Miller95def091999-11-25 00:26:21 +1100772 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100773 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000774 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000775 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100776 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000777 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100778 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100779 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
780 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +1100781 break;
782
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000783 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100784 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +1100785 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000786 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100787 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000788 fatal("%.200s line %d: Missing port argument.",
789 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100790
Damien Millera699d952008-11-03 19:27:34 +1100791 if (opcode == oLocalForward ||
792 opcode == oRemoteForward) {
793 arg2 = strdelim(&s);
794 if (arg2 == NULL || *arg2 == '\0')
795 fatal("%.200s line %d: Missing target argument.",
796 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100797
Damien Millera699d952008-11-03 19:27:34 +1100798 /* construct a string for parse_forward */
799 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
800 } else if (opcode == oDynamicForward) {
801 strlcpy(fwdarg, arg, sizeof(fwdarg));
802 }
803
804 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +1100805 opcode == oDynamicForward ? 1 : 0,
806 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000807 fatal("%.200s line %d: Bad forwarding specification.",
808 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100809
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000810 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +1100811 if (opcode == oLocalForward ||
812 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100813 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000814 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100815 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000816 }
Damien Miller95def091999-11-25 00:26:21 +1100817 break;
818
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000819 case oClearAllForwardings:
820 intptr = &options->clear_forwardings;
821 goto parse_flag;
822
Damien Miller95def091999-11-25 00:26:21 +1100823 case oHost:
824 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +1000825 arg2 = NULL;
826 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
827 negated = *arg == '!';
828 if (negated)
829 arg++;
Damien Miller37023962000-07-11 17:31:38 +1000830 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +1000831 if (negated) {
832 debug("%.200s line %d: Skipping Host "
833 "block because of negated match "
834 "for %.100s", filename, linenum,
835 arg);
836 *activep = 0;
837 break;
838 }
839 if (!*activep)
840 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +1100841 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +1100842 }
Damien Millerfe924212011-05-15 08:44:45 +1000843 }
844 if (*activep)
845 debug("%.200s line %d: Applying options for %.100s",
846 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +1000847 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100848 return 0;
849
850 case oEscapeChar:
851 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000852 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000853 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100854 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000855 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000856 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
857 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000858 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000859 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000860 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000861 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100862 else {
863 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100864 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100865 /* NOTREACHED */
866 value = 0; /* Avoid compiler warning. */
867 }
868 if (*activep && *intptr == -1)
869 *intptr = value;
870 break;
871
Damien Miller20a8f972003-05-18 20:50:30 +1000872 case oAddressFamily:
873 arg = strdelim(&s);
Damien Miller17b23d82005-05-26 12:11:56 +1000874 if (!arg || *arg == '\0')
875 fatal("%s line %d: missing address family.",
876 filename, linenum);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000877 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000878 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000879 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000880 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000881 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000882 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000883 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000884 else
885 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000886 if (*activep && *intptr == -1)
887 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000888 break;
889
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000890 case oEnableSSHKeysign:
891 intptr = &options->enable_ssh_keysign;
892 goto parse_flag;
893
Damien Millerbd394c32004-03-08 23:12:36 +1100894 case oIdentitiesOnly:
895 intptr = &options->identities_only;
896 goto parse_flag;
897
Damien Miller509b0102003-12-17 16:33:10 +1100898 case oServerAliveInterval:
899 intptr = &options->server_alive_interval;
900 goto parse_time;
901
902 case oServerAliveCountMax:
903 intptr = &options->server_alive_count_max;
904 goto parse_int;
905
Darren Tucker46bc0752004-05-02 22:11:30 +1000906 case oSendEnv:
907 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
908 if (strchr(arg, '=') != NULL)
909 fatal("%s line %d: Invalid environment name.",
910 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +1100911 if (!*activep)
912 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +1000913 if (options->num_send_env >= MAX_SEND_ENV)
914 fatal("%s line %d: too many send env.",
915 filename, linenum);
916 options->send_env[options->num_send_env++] =
917 xstrdup(arg);
918 }
919 break;
920
Damien Miller0e220db2004-06-15 10:34:08 +1000921 case oControlPath:
922 charptr = &options->control_path;
923 goto parse_string;
924
925 case oControlMaster:
926 intptr = &options->control_master;
Damien Millerd14b1e72005-06-16 13:19:41 +1000927 arg = strdelim(&s);
928 if (!arg || *arg == '\0')
929 fatal("%.200s line %d: Missing ControlMaster argument.",
930 filename, linenum);
931 value = 0; /* To avoid compiler warning... */
932 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
933 value = SSHCTL_MASTER_YES;
934 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
935 value = SSHCTL_MASTER_NO;
936 else if (strcmp(arg, "auto") == 0)
937 value = SSHCTL_MASTER_AUTO;
938 else if (strcmp(arg, "ask") == 0)
939 value = SSHCTL_MASTER_ASK;
940 else if (strcmp(arg, "autoask") == 0)
941 value = SSHCTL_MASTER_AUTO_ASK;
942 else
943 fatal("%.200s line %d: Bad ControlMaster argument.",
944 filename, linenum);
945 if (*activep && *intptr == -1)
946 *intptr = value;
947 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000948
Damien Millere11e1ea2010-08-03 16:04:46 +1000949 case oControlPersist:
950 /* no/false/yes/true, or a time spec */
951 intptr = &options->control_persist;
952 arg = strdelim(&s);
953 if (!arg || *arg == '\0')
954 fatal("%.200s line %d: Missing ControlPersist"
955 " argument.", filename, linenum);
956 value = 0;
957 value2 = 0; /* timeout */
958 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
959 value = 0;
960 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
961 value = 1;
962 else if ((value2 = convtime(arg)) >= 0)
963 value = 1;
964 else
965 fatal("%.200s line %d: Bad ControlPersist argument.",
966 filename, linenum);
967 if (*activep && *intptr == -1) {
968 *intptr = value;
969 options->control_persist_timeout = value2;
970 }
971 break;
972
Damien Millere1776152005-03-01 21:47:37 +1100973 case oHashKnownHosts:
974 intptr = &options->hash_known_hosts;
975 goto parse_flag;
976
Damien Millerd27b9472005-12-13 19:29:02 +1100977 case oTunnel:
978 intptr = &options->tun_open;
Damien Miller7b58e802005-12-13 19:33:19 +1100979 arg = strdelim(&s);
980 if (!arg || *arg == '\0')
981 fatal("%s line %d: Missing yes/point-to-point/"
982 "ethernet/no argument.", filename, linenum);
983 value = 0; /* silence compiler */
984 if (strcasecmp(arg, "ethernet") == 0)
985 value = SSH_TUNMODE_ETHERNET;
986 else if (strcasecmp(arg, "point-to-point") == 0)
987 value = SSH_TUNMODE_POINTOPOINT;
988 else if (strcasecmp(arg, "yes") == 0)
989 value = SSH_TUNMODE_DEFAULT;
990 else if (strcasecmp(arg, "no") == 0)
991 value = SSH_TUNMODE_NO;
992 else
993 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
994 "no argument: %s", filename, linenum, arg);
995 if (*activep)
996 *intptr = value;
997 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100998
999 case oTunnelDevice:
1000 arg = strdelim(&s);
1001 if (!arg || *arg == '\0')
1002 fatal("%.200s line %d: Missing argument.", filename, linenum);
1003 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001004 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001005 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1006 if (*activep) {
1007 options->tun_local = value;
1008 options->tun_remote = value2;
1009 }
1010 break;
1011
1012 case oLocalCommand:
1013 charptr = &options->local_command;
1014 goto parse_command;
1015
1016 case oPermitLocalCommand:
1017 intptr = &options->permit_local_command;
1018 goto parse_flag;
1019
Damien Miller10288242008-06-30 00:04:03 +10001020 case oVisualHostKey:
1021 intptr = &options->visual_host_key;
1022 goto parse_flag;
1023
Damien Miller0dac6fb2010-11-20 15:19:38 +11001024 case oIPQoS:
1025 arg = strdelim(&s);
1026 if ((value = parse_ipqos(arg)) == -1)
1027 fatal("%s line %d: Bad IPQoS value: %s",
1028 filename, linenum, arg);
1029 arg = strdelim(&s);
1030 if (arg == NULL)
1031 value2 = value;
1032 else if ((value2 = parse_ipqos(arg)) == -1)
1033 fatal("%s line %d: Bad IPQoS value: %s",
1034 filename, linenum, arg);
1035 if (*activep) {
1036 options->ip_qos_interactive = value;
1037 options->ip_qos_bulk = value2;
1038 }
1039 break;
1040
Darren Tucker71e4d542009-07-06 07:12:27 +10001041 case oUseRoaming:
1042 intptr = &options->use_roaming;
1043 goto parse_flag;
1044
Damien Miller21771e22011-05-15 08:45:50 +10001045 case oRequestTTY:
1046 arg = strdelim(&s);
1047 if (!arg || *arg == '\0')
1048 fatal("%s line %d: missing argument.",
1049 filename, linenum);
1050 intptr = &options->request_tty;
1051 if (strcasecmp(arg, "yes") == 0)
1052 value = REQUEST_TTY_YES;
1053 else if (strcasecmp(arg, "no") == 0)
1054 value = REQUEST_TTY_NO;
1055 else if (strcasecmp(arg, "force") == 0)
1056 value = REQUEST_TTY_FORCE;
1057 else if (strcasecmp(arg, "auto") == 0)
1058 value = REQUEST_TTY_AUTO;
1059 else
1060 fatal("Unsupported RequestTTY \"%s\"", arg);
1061 if (*activep && *intptr == -1)
1062 *intptr = value;
1063 break;
1064
Ben Lindstrom4daea862002-06-09 20:04:02 +00001065 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001066 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001067 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001068 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001069
Damien Millerf9b3feb2003-05-16 11:38:32 +10001070 case oUnsupported:
1071 error("%s line %d: Unsupported option \"%s\"",
1072 filename, linenum, keyword);
1073 return 0;
1074
Damien Miller95def091999-11-25 00:26:21 +11001075 default:
1076 fatal("process_config_line: Unimplemented opcode %d", opcode);
1077 }
1078
1079 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001080 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001081 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001082 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001083 }
Damien Miller95def091999-11-25 00:26:21 +11001084 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085}
1086
1087
Damien Miller5428f641999-11-25 11:54:57 +11001088/*
1089 * Reads the config file and modifies the options accordingly. Options
1090 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001091 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001092 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001093
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001094int
Darren Tuckerfc959702004-07-17 16:12:08 +10001095read_config_file(const char *filename, const char *host, Options *options,
Darren Tuckeraefa3682013-04-05 11:18:35 +11001096 int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001097{
Damien Miller95def091999-11-25 00:26:21 +11001098 FILE *f;
1099 char line[1024];
1100 int active, linenum;
1101 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102
Damien Miller57a44762004-04-20 20:11:57 +10001103 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001104 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001105
Darren Tuckeraefa3682013-04-05 11:18:35 +11001106 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001107 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001108
Damien Miller33793852004-06-15 10:27:55 +10001109 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001110 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001111 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001112 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001113 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001114 }
1115
Damien Miller95def091999-11-25 00:26:21 +11001116 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117
Damien Miller5428f641999-11-25 11:54:57 +11001118 /*
1119 * Mark that we are now processing the options. This flag is turned
1120 * on/off by Host specifications.
1121 */
Damien Miller95def091999-11-25 00:26:21 +11001122 active = 1;
1123 linenum = 0;
1124 while (fgets(line, sizeof(line), f)) {
1125 /* Update line number counter. */
1126 linenum++;
Darren Tuckeraefa3682013-04-05 11:18:35 +11001127 if (process_config_line(options, host, line, filename, linenum,
1128 &active, flags & SSHCONF_USERCONF) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001129 bad_options++;
1130 }
1131 fclose(f);
1132 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001133 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001134 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001135 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001136}
1137
Damien Miller5428f641999-11-25 11:54:57 +11001138/*
1139 * Initializes options to special values that indicate that they have not yet
1140 * been set. Read_config_file will only set options with this value. Options
1141 * are processed in the following order: command line, user config file,
1142 * system config file. Last, fill_default_options is called.
1143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001144
Damien Miller4af51302000-04-16 11:18:38 +10001145void
Damien Miller95def091999-11-25 00:26:21 +11001146initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001147{
Damien Miller95def091999-11-25 00:26:21 +11001148 memset(options, 'X', sizeof(*options));
1149 options->forward_agent = -1;
1150 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001151 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001152 options->forward_x11_timeout = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001153 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001154 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001155 options->gateway_ports = -1;
1156 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001157 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001158 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001159 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001160 options->gss_authentication = -1;
1161 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001162 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001163 options->kbd_interactive_authentication = -1;
1164 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001165 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001166 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001167 options->batch_mode = -1;
1168 options->check_host_ip = -1;
1169 options->strict_host_key_checking = -1;
1170 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001171 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001172 options->compression_level = -1;
1173 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001174 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001175 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001176 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001177 options->number_of_password_prompts = -1;
1178 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001179 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001180 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001181 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001182 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001183 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001184 options->num_identity_files = 0;
1185 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001186 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001187 options->proxy_command = NULL;
1188 options->user = NULL;
1189 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001190 options->num_system_hostfiles = 0;
1191 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001192 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001193 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001194 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001195 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001196 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +11001197 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001198 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001199 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001200 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001201 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001202 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001203 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001204 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +10001205 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001206 options->server_alive_interval = -1;
1207 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001208 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001209 options->control_path = NULL;
1210 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001211 options->control_persist = -1;
1212 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001213 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001214 options->tun_open = -1;
1215 options->tun_local = -1;
1216 options->tun_remote = -1;
1217 options->local_command = NULL;
1218 options->permit_local_command = -1;
Darren Tucker71e4d542009-07-06 07:12:27 +10001219 options->use_roaming = -1;
Damien Miller10288242008-06-30 00:04:03 +10001220 options->visual_host_key = -1;
Damien Miller01ed2272008-11-05 16:20:46 +11001221 options->zero_knowledge_password_authentication = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001222 options->ip_qos_interactive = -1;
1223 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001224 options->request_tty = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001225}
1226
Damien Miller5428f641999-11-25 11:54:57 +11001227/*
1228 * Called after processing other sources of option data, this fills those
1229 * options for which no value has been specified with their default values.
1230 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001231
Damien Miller4af51302000-04-16 11:18:38 +10001232void
Damien Miller95def091999-11-25 00:26:21 +11001233fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001235 int len;
1236
Damien Miller95def091999-11-25 00:26:21 +11001237 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001238 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001239 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001240 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001241 if (options->forward_x11_trusted == -1)
1242 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001243 if (options->forward_x11_timeout == -1)
1244 options->forward_x11_timeout = 1200;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001245 if (options->exit_on_forward_failure == -1)
1246 options->exit_on_forward_failure = 0;
Damien Millerd3a18572000-06-07 19:55:44 +10001247 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001248 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +11001249 if (options->gateway_ports == -1)
1250 options->gateway_ports = 0;
1251 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001252 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001253 if (options->rsa_authentication == -1)
1254 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001255 if (options->pubkey_authentication == -1)
1256 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001257 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001258 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001259 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001260 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001261 if (options->gss_deleg_creds == -1)
1262 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001263 if (options->password_authentication == -1)
1264 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001265 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001266 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001267 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001268 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001269 if (options->hostbased_authentication == -1)
1270 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001271 if (options->batch_mode == -1)
1272 options->batch_mode = 0;
1273 if (options->check_host_ip == -1)
1274 options->check_host_ip = 1;
1275 if (options->strict_host_key_checking == -1)
1276 options->strict_host_key_checking = 2; /* 2 is default */
1277 if (options->compression == -1)
1278 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001279 if (options->tcp_keep_alive == -1)
1280 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001281 if (options->compression_level == -1)
1282 options->compression_level = 6;
1283 if (options->port == -1)
1284 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001285 if (options->address_family == -1)
1286 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001287 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001288 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001289 if (options->number_of_password_prompts == -1)
1290 options->number_of_password_prompts = 3;
1291 /* Selected in ssh_login(). */
1292 if (options->cipher == -1)
1293 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001294 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001295 /* options->macs, default set in myproposals.h */
Damien Millerd5f62bf2010-09-24 22:11:14 +10001296 /* options->kex_algorithms, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001297 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001298 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001299 options->protocol = SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001300 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001301 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001302 add_identity_file(options, "~/",
1303 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001304 }
1305 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001306 add_identity_file(options, "~/",
1307 _PATH_SSH_CLIENT_ID_RSA, 0);
1308 add_identity_file(options, "~/",
1309 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001310#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001311 add_identity_file(options, "~/",
1312 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001313#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001314 }
Damien Millereba71ba2000-04-29 23:57:08 +10001315 }
Damien Miller95def091999-11-25 00:26:21 +11001316 if (options->escape_char == -1)
1317 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001318 if (options->num_system_hostfiles == 0) {
1319 options->system_hostfiles[options->num_system_hostfiles++] =
1320 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1321 options->system_hostfiles[options->num_system_hostfiles++] =
1322 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1323 }
1324 if (options->num_user_hostfiles == 0) {
1325 options->user_hostfiles[options->num_user_hostfiles++] =
1326 xstrdup(_PATH_SSH_USER_HOSTFILE);
1327 options->user_hostfiles[options->num_user_hostfiles++] =
1328 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1329 }
Damien Millerfcd93202002-02-05 12:26:34 +11001330 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001331 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001332 if (options->clear_forwardings == 1)
1333 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001334 if (options->no_host_authentication_for_localhost == - 1)
1335 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001336 if (options->identities_only == -1)
1337 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001338 if (options->enable_ssh_keysign == -1)
1339 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001340 if (options->rekey_limit == -1)
1341 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001342 if (options->verify_host_key_dns == -1)
1343 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001344 if (options->server_alive_interval == -1)
1345 options->server_alive_interval = 0;
1346 if (options->server_alive_count_max == -1)
1347 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001348 if (options->control_master == -1)
1349 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001350 if (options->control_persist == -1) {
1351 options->control_persist = 0;
1352 options->control_persist_timeout = 0;
1353 }
Damien Millere1776152005-03-01 21:47:37 +11001354 if (options->hash_known_hosts == -1)
1355 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001356 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001357 options->tun_open = SSH_TUNMODE_NO;
1358 if (options->tun_local == -1)
1359 options->tun_local = SSH_TUNID_ANY;
1360 if (options->tun_remote == -1)
1361 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001362 if (options->permit_local_command == -1)
1363 options->permit_local_command = 0;
Darren Tucker71e4d542009-07-06 07:12:27 +10001364 if (options->use_roaming == -1)
1365 options->use_roaming = 1;
Damien Miller10288242008-06-30 00:04:03 +10001366 if (options->visual_host_key == -1)
1367 options->visual_host_key = 0;
Damien Miller01ed2272008-11-05 16:20:46 +11001368 if (options->zero_knowledge_password_authentication == -1)
1369 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001370 if (options->ip_qos_interactive == -1)
1371 options->ip_qos_interactive = IPTOS_LOWDELAY;
1372 if (options->ip_qos_bulk == -1)
1373 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10001374 if (options->request_tty == -1)
1375 options->request_tty = REQUEST_TTY_AUTO;
Damien Millerd27b9472005-12-13 19:29:02 +11001376 /* options->local_command should not be set by default */
Damien Miller95def091999-11-25 00:26:21 +11001377 /* options->proxy_command should not be set by default */
1378 /* options->user will be set in the main program if appropriate */
1379 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001380 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001381 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001382}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001383
1384/*
1385 * parse_forward
1386 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11001387 * dynamicfwd == 0
Damien Millerf91ee4c2005-03-01 21:24:33 +11001388 * [listenhost:]listenport:connecthost:connectport
Damien Millera699d952008-11-03 19:27:34 +11001389 * dynamicfwd == 1
1390 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11001391 * returns number of arguments parsed or zero on error
1392 */
1393int
Damien Miller4bf648f2009-02-14 16:28:21 +11001394parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001395{
1396 int i;
1397 char *p, *cp, *fwdarg[4];
1398
1399 memset(fwd, '\0', sizeof(*fwd));
1400
1401 cp = p = xstrdup(fwdspec);
1402
1403 /* skip leading spaces */
Darren Tucker03b1cdb2007-03-21 20:46:03 +11001404 while (isspace(*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001405 cp++;
1406
1407 for (i = 0; i < 4; ++i)
1408 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1409 break;
1410
Damien Millerf4b39532008-11-03 19:28:21 +11001411 /* Check for trailing garbage */
Damien Millerf91ee4c2005-03-01 21:24:33 +11001412 if (cp != NULL)
1413 i = 0; /* failure */
1414
1415 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11001416 case 1:
1417 fwd->listen_host = NULL;
1418 fwd->listen_port = a2port(fwdarg[0]);
1419 fwd->connect_host = xstrdup("socks");
1420 break;
1421
1422 case 2:
1423 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1424 fwd->listen_port = a2port(fwdarg[1]);
1425 fwd->connect_host = xstrdup("socks");
1426 break;
1427
Damien Millerf91ee4c2005-03-01 21:24:33 +11001428 case 3:
1429 fwd->listen_host = NULL;
1430 fwd->listen_port = a2port(fwdarg[0]);
1431 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1432 fwd->connect_port = a2port(fwdarg[2]);
1433 break;
1434
1435 case 4:
1436 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1437 fwd->listen_port = a2port(fwdarg[1]);
1438 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1439 fwd->connect_port = a2port(fwdarg[3]);
1440 break;
1441 default:
1442 i = 0; /* failure */
1443 }
1444
1445 xfree(p);
1446
Damien Millera699d952008-11-03 19:27:34 +11001447 if (dynamicfwd) {
1448 if (!(i == 1 || i == 2))
1449 goto fail_free;
1450 } else {
1451 if (!(i == 3 || i == 4))
1452 goto fail_free;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001453 if (fwd->connect_port <= 0)
Damien Millera699d952008-11-03 19:27:34 +11001454 goto fail_free;
1455 }
1456
Damien Miller4bf648f2009-02-14 16:28:21 +11001457 if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001458 goto fail_free;
1459
1460 if (fwd->connect_host != NULL &&
1461 strlen(fwd->connect_host) >= NI_MAXHOST)
1462 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11001463 if (fwd->listen_host != NULL &&
1464 strlen(fwd->listen_host) >= NI_MAXHOST)
1465 goto fail_free;
1466
Damien Millerf91ee4c2005-03-01 21:24:33 +11001467
1468 return (i);
1469
1470 fail_free:
Damien Miller0d772d92008-12-09 14:12:05 +11001471 if (fwd->connect_host != NULL) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001472 xfree(fwd->connect_host);
Damien Miller0d772d92008-12-09 14:12:05 +11001473 fwd->connect_host = NULL;
1474 }
1475 if (fwd->listen_host != NULL) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001476 xfree(fwd->listen_host);
Damien Miller0d772d92008-12-09 14:12:05 +11001477 fwd->listen_host = NULL;
1478 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001479 return (0);
1480}