blob: de8eb7cd3d2fb316d795a1f2e53e90372e5c2294 [file] [log] [blame]
Damien Miller0faf7472013-10-17 11:47:23 +11001/* $OpenBSD: readconf.c,v 1.208 2013/10/16 02:31:45 djm 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>
Damien Miller194fd902013-10-15 12:13:05 +110020#include <sys/wait.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100021
22#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110023#include <netinet/in_systm.h>
24#include <netinet/ip.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025
Damien Millerc7b06362006-03-15 11:53:45 +110026#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100027#include <errno.h>
Damien Miller194fd902013-10-15 12:13:05 +110028#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100029#include <netdb.h>
Damien Miller194fd902013-10-15 12:13:05 +110030#include <paths.h>
31#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100033#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100034#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100036#include <unistd.h>
Darren Tuckere194ba42013-05-16 20:47:31 +100037#ifdef HAVE_UTIL_H
Darren Tuckerb7ee8522013-05-16 20:33:10 +100038#include <util.h>
Darren Tuckere194ba42013-05-16 20:47:31 +100039#endif
Damien Millerc7b06362006-03-15 11:53:45 +110040
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100042#include "ssh.h"
Damien Miller78928792000-04-12 20:17:38 +100043#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "cipher.h"
45#include "pathnames.h"
46#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100047#include "key.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "readconf.h"
49#include "match.h"
50#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100051#include "buffer.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000052#include "kex.h"
53#include "mac.h"
Damien Miller194fd902013-10-15 12:13:05 +110054#include "uidswap.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
56/* Format of the configuration file:
57
58 # Configuration data is parsed as follows:
59 # 1. command line options
60 # 2. user-specific file
61 # 3. system-wide file
62 # Any configuration value is only changed the first time it is set.
63 # Thus, host-specific definitions should be at the beginning of the
64 # configuration file, and defaults at the end.
65
66 # Host-specific declarations. These may override anything above. A single
67 # host may match multiple declarations; these are processed in the order
68 # that they are given in.
69
70 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000071 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
73 Host fake.com
74 HostName another.host.name.real.org
75 User blaah
76 Port 34289
77 ForwardX11 no
78 ForwardAgent no
79
80 Host books.com
81 RemoteForward 9999 shadows.cs.hut.fi:9999
82 Cipher 3des
83
84 Host fascist.blob.com
85 Port 23123
86 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087 PasswordAuthentication no
88
89 Host puukko.hut.fi
90 User t35124p
91 ProxyCommand ssh-proxy %h %p
92
93 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000094 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
96 Host *.su
97 Cipher none
98 PasswordAuthentication no
99
Damien Millerd27b9472005-12-13 19:29:02 +1100100 Host vpn.fake.com
101 Tunnel yes
102 TunnelDevice 3
103
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104 # Defaults for various options
105 Host *
106 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +1100107 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108 PasswordAuthentication yes
109 RSAAuthentication yes
110 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +1100112 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113 IdentityFile ~/.ssh/identity
114 Port 22
115 EscapeChar ~
116
117*/
118
119/* Keyword tokens. */
120
Damien Miller95def091999-11-25 00:26:21 +1100121typedef enum {
122 oBadOption,
Damien Miller194fd902013-10-15 12:13:05 +1100123 oHost, oMatch,
Damien Miller1ab6a512010-06-26 10:02:24 +1000124 oForwardAgent, oForwardX11, oForwardX11Trusted, oForwardX11Timeout,
125 oGatewayPorts, oExitOnForwardFailure,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000126 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000127 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +1100128 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
Damien Miller194fd902013-10-15 12:13:05 +1100129 oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
Damien Miller95def091999-11-25 00:26:21 +1100130 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
131 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +1100132 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000133 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100134 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000135 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000136 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Damien Miller7ea845e2010-02-12 09:21:02 +1100137 oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000138 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000139 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000140 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100141 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millere11e1ea2010-08-03 16:04:46 +1000142 oSendEnv, oControlPath, oControlMaster, oControlPersist,
143 oHashKnownHosts,
Damien Millerd27b9472005-12-13 19:29:02 +1100144 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100145 oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication,
Damien Miller1262b662013-08-21 02:44:24 +1000146 oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
Damien Miller0faf7472013-10-17 11:47:23 +1100147 oCanonicalDomains, oCanonicaliseHostname, oCanonicaliseMaxDots,
148 oCanonicaliseFallbackLocal, oCanonicalisePermittedCNAMEs,
Darren Tucker07636982013-05-16 20:30:03 +1000149 oIgnoredUnknownOption, oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150} OpCodes;
151
152/* Textual representations of the tokens. */
153
Damien Miller95def091999-11-25 00:26:21 +1100154static struct {
155 const char *name;
156 OpCodes opcode;
157} keywords[] = {
158 { "forwardagent", oForwardAgent },
159 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000160 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000161 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000162 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000163 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100164 { "gatewayports", oGatewayPorts },
165 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000166 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100167 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100168 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
169 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100170 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100171 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000172 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000173 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000174 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000175 { "challengeresponseauthentication", oChallengeResponseAuthentication },
176 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
177 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000178 { "kerberosauthentication", oUnsupported },
179 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000180 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000181#if defined(GSSAPI)
182 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000183 { "gssapidelegatecredentials", oGssDelegateCreds },
184#else
185 { "gssapiauthentication", oUnsupported },
186 { "gssapidelegatecredentials", oUnsupported },
187#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000188 { "fallbacktorsh", oDeprecated },
189 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100190 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100191 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100192 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100193 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000194 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100195 { "proxycommand", oProxyCommand },
196 { "port", oPort },
197 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000198 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000199 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000200 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100201 { "remoteforward", oRemoteForward },
202 { "localforward", oLocalForward },
203 { "user", oUser },
204 { "host", oHost },
Damien Miller194fd902013-10-15 12:13:05 +1100205 { "match", oMatch },
Damien Miller95def091999-11-25 00:26:21 +1100206 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100207 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000208 { "globalknownhostsfile2", oDeprecated },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100209 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000210 { "userknownhostsfile2", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100211 { "connectionattempts", oConnectionAttempts },
212 { "batchmode", oBatchMode },
213 { "checkhostip", oCheckHostIP },
214 { "stricthostkeychecking", oStrictHostKeyChecking },
215 { "compression", oCompression },
216 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100217 { "tcpkeepalive", oTCPKeepAlive },
218 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100219 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100220 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000221 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000222 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000223 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000224 { "bindaddress", oBindAddress },
Damien Miller7ea845e2010-02-12 09:21:02 +1100225#ifdef ENABLE_PKCS11
226 { "smartcarddevice", oPKCS11Provider },
227 { "pkcs11provider", oPKCS11Provider },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000228#else
229 { "smartcarddevice", oUnsupported },
Damien Miller7ea845e2010-02-12 09:21:02 +1100230 { "pkcs11provider", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000231#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100232 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000233 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000234 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100235 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000236 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000237 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000238 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100239 { "serveraliveinterval", oServerAliveInterval },
240 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000241 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000242 { "controlpath", oControlPath },
243 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000244 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100245 { "hashknownhosts", oHashKnownHosts },
Damien Millerd27b9472005-12-13 19:29:02 +1100246 { "tunnel", oTunnel },
247 { "tunneldevice", oTunnelDevice },
248 { "localcommand", oLocalCommand },
249 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000250 { "visualhostkey", oVisualHostKey },
Darren Tucker71e4d542009-07-06 07:12:27 +1000251 { "useroaming", oUseRoaming },
Damien Miller01ed2272008-11-05 16:20:46 +1100252#ifdef JPAKE
253 { "zeroknowledgepasswordauthentication",
254 oZeroKnowledgePasswordAuthentication },
255#else
256 { "zeroknowledgepasswordauthentication", oUnsupported },
257#endif
Damien Millerd5f62bf2010-09-24 22:11:14 +1000258 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100259 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000260 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000261 { "proxyusefdpass", oProxyUseFdpass },
Damien Miller0faf7472013-10-17 11:47:23 +1100262 { "canonicaldomains", oCanonicalDomains },
263 { "canonicalisefallbacklocal", oCanonicaliseFallbackLocal },
264 { "canonicalisehostname", oCanonicaliseHostname },
265 { "canonicalisemaxdots", oCanonicaliseMaxDots },
266 { "canonicalisepermittedcnames", oCanonicalisePermittedCNAMEs },
Darren Tucker07636982013-05-16 20:30:03 +1000267 { "ignoreunknown", oIgnoreUnknown },
Damien Miller01ed2272008-11-05 16:20:46 +1100268
Ben Lindstrom65366a82001-12-06 16:32:47 +0000269 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100270};
271
Damien Miller5428f641999-11-25 11:54:57 +1100272/*
273 * Adds a local TCP/IP port forward to options. Never returns if there is an
274 * error.
275 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
Damien Miller4af51302000-04-16 11:18:38 +1000277void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100278add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279{
Damien Miller95def091999-11-25 00:26:21 +1100280 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000281#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100282 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100283 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000284 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100285#endif
Damien Miller232cfb12010-06-26 09:50:30 +1000286 options->local_forwards = xrealloc(options->local_forwards,
287 options->num_local_forwards + 1,
288 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100289 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100290
Damien Miller1a0442f2008-11-05 16:30:06 +1100291 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100292 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100293 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100294 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000295}
296
Damien Miller5428f641999-11-25 11:54:57 +1100297/*
298 * Adds a remote TCP/IP port forward to options. Never returns if there is
299 * an error.
300 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301
Damien Miller4af51302000-04-16 11:18:38 +1000302void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100303add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304{
Damien Miller95def091999-11-25 00:26:21 +1100305 Forward *fwd;
Damien Miller232cfb12010-06-26 09:50:30 +1000306
307 options->remote_forwards = xrealloc(options->remote_forwards,
308 options->num_remote_forwards + 1,
309 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100310 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100311
Damien Miller1a0442f2008-11-05 16:30:06 +1100312 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100313 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100314 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100315 fwd->connect_port = newfwd->connect_port;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100316 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000317 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318}
319
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000320static void
321clear_forwardings(Options *options)
322{
323 int i;
324
Damien Millerf91ee4c2005-03-01 21:24:33 +1100325 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000326 free(options->local_forwards[i].listen_host);
327 free(options->local_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100328 }
Damien Miller232cfb12010-06-26 09:50:30 +1000329 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000330 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000331 options->local_forwards = NULL;
332 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000333 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100334 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000335 free(options->remote_forwards[i].listen_host);
336 free(options->remote_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100337 }
Damien Miller232cfb12010-06-26 09:50:30 +1000338 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000339 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000340 options->remote_forwards = NULL;
341 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000342 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100343 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000344}
345
Darren Tucker19104782013-04-05 11:13:08 +1100346void
347add_identity_file(Options *options, const char *dir, const char *filename,
348 int userprovided)
349{
350 char *path;
351
352 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
353 fatal("Too many identity files specified (max %d)",
354 SSH_MAX_IDENTITY_FILES);
355
356 if (dir == NULL) /* no dir, filename is absolute */
357 path = xstrdup(filename);
358 else
359 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
360
361 options->identity_file_userprovided[options->num_identity_files] =
362 userprovided;
363 options->identity_files[options->num_identity_files++] = path;
364}
365
Damien Miller194fd902013-10-15 12:13:05 +1100366int
367default_ssh_port(void)
368{
369 static int port;
370 struct servent *sp;
371
372 if (port == 0) {
373 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
374 port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
375 }
376 return port;
377}
378
379/*
380 * Execute a command in a shell.
381 * Return its exit status or -1 on abnormal exit.
382 */
383static int
384execute_in_shell(const char *cmd)
385{
386 char *shell, *command_string;
387 pid_t pid;
388 int devnull, status;
389 extern uid_t original_real_uid;
390
391 if ((shell = getenv("SHELL")) == NULL)
392 shell = _PATH_BSHELL;
393
394 /*
395 * Use "exec" to avoid "sh -c" processes on some platforms
396 * (e.g. Solaris)
397 */
398 xasprintf(&command_string, "exec %s", cmd);
399
400 /* Need this to redirect subprocess stdin/out */
401 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
402 fatal("open(/dev/null): %s", strerror(errno));
403
404 debug("Executing command: '%.500s'", cmd);
405
406 /* Fork and execute the command. */
407 if ((pid = fork()) == 0) {
408 char *argv[4];
409
410 /* Child. Permanently give up superuser privileges. */
411 permanently_drop_suid(original_real_uid);
412
413 /* Redirect child stdin and stdout. Leave stderr */
414 if (dup2(devnull, STDIN_FILENO) == -1)
415 fatal("dup2: %s", strerror(errno));
416 if (dup2(devnull, STDOUT_FILENO) == -1)
417 fatal("dup2: %s", strerror(errno));
418 if (devnull > STDERR_FILENO)
419 close(devnull);
420 closefrom(STDERR_FILENO + 1);
421
422 argv[0] = shell;
423 argv[1] = "-c";
424 argv[2] = command_string;
425 argv[3] = NULL;
426
427 execv(argv[0], argv);
428 error("Unable to execute '%.100s': %s", cmd, strerror(errno));
429 /* Die with signal to make this error apparent to parent. */
430 signal(SIGTERM, SIG_DFL);
431 kill(getpid(), SIGTERM);
432 _exit(1);
433 }
434 /* Parent. */
435 if (pid < 0)
436 fatal("%s: fork: %.100s", __func__, strerror(errno));
437
438 close(devnull);
439 free(command_string);
440
441 while (waitpid(pid, &status, 0) == -1) {
442 if (errno != EINTR && errno != EAGAIN)
443 fatal("%s: waitpid: %s", __func__, strerror(errno));
444 }
445 if (!WIFEXITED(status)) {
446 error("command '%.100s' exited abnormally", cmd);
447 return -1;
448 }
449 debug3("command returned status %d", WEXITSTATUS(status));
450 return WEXITSTATUS(status);
451}
452
453/*
454 * Parse and execute a Match directive.
455 */
456static int
457match_cfg_line(Options *options, char **condition, struct passwd *pw,
458 const char *host_arg, const char *filename, int linenum)
459{
460 char *arg, *attrib, *cmd, *cp = *condition;
461 const char *ruser, *host;
462 int r, port, result = 1;
463 size_t len;
464 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
465
466 /*
467 * Configuration is likely to be incomplete at this point so we
468 * must be prepared to use default values.
469 */
470 port = options->port <= 0 ? default_ssh_port() : options->port;
471 ruser = options->user == NULL ? pw->pw_name : options->user;
472 host = options->hostname == NULL ? host_arg : options->hostname;
473
474 debug3("checking match for '%s' host %s", cp, host);
475 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
476 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
477 error("Missing Match criteria for %s", attrib);
478 return -1;
479 }
480 len = strlen(arg);
481 if (strcasecmp(attrib, "host") == 0) {
482 if (match_hostname(host, arg, len) != 1)
483 result = 0;
484 else
485 debug("%.200s line %d: matched 'Host %.100s' ",
486 filename, linenum, host);
487 } else if (strcasecmp(attrib, "originalhost") == 0) {
488 if (match_hostname(host_arg, arg, len) != 1)
489 result = 0;
490 else
491 debug("%.200s line %d: matched "
492 "'OriginalHost %.100s' ",
493 filename, linenum, host_arg);
494 } else if (strcasecmp(attrib, "user") == 0) {
495 if (match_pattern_list(ruser, arg, len, 0) != 1)
496 result = 0;
497 else
498 debug("%.200s line %d: matched 'User %.100s' ",
499 filename, linenum, ruser);
500 } else if (strcasecmp(attrib, "localuser") == 0) {
501 if (match_pattern_list(pw->pw_name, arg, len, 0) != 1)
502 result = 0;
503 else
504 debug("%.200s line %d: matched "
505 "'LocalUser %.100s' ",
506 filename, linenum, pw->pw_name);
507 } else if (strcasecmp(attrib, "command") == 0) {
508 if (gethostname(thishost, sizeof(thishost)) == -1)
509 fatal("gethostname: %s", strerror(errno));
510 strlcpy(shorthost, thishost, sizeof(shorthost));
511 shorthost[strcspn(thishost, ".")] = '\0';
512 snprintf(portstr, sizeof(portstr), "%d", port);
513
514 cmd = percent_expand(arg,
515 "L", shorthost,
516 "d", pw->pw_dir,
517 "h", host,
518 "l", thishost,
519 "n", host_arg,
520 "p", portstr,
521 "r", ruser,
522 "u", pw->pw_name,
523 (char *)NULL);
524 r = execute_in_shell(cmd);
525 if (r == -1) {
526 fatal("%.200s line %d: match command '%.100s' "
527 "error", filename, linenum, cmd);
528 } else if (r == 0) {
529 debug("%.200s line %d: matched "
530 "'Command \"%.100s\"' ",
531 filename, linenum, cmd);
532 } else
533 result = 0;
534 free(cmd);
535 } else {
536 error("Unsupported Match attribute %s", attrib);
537 return -1;
538 }
539 }
540 debug3("match %sfound", result ? "" : "not ");
541 *condition = cp;
542 return result;
543}
544
Damien Miller0faf7472013-10-17 11:47:23 +1100545/* Check and prepare a domain name: removes trailing '.' and lowercases */
546static void
547valid_domain(char *name, const char *filename, int linenum)
548{
549 size_t i, l = strlen(name);
550 u_char c, last = '\0';
551
552 if (l == 0)
553 fatal("%s line %d: empty hostname suffix", filename, linenum);
554 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
555 fatal("%s line %d: hostname suffix \"%.100s\" "
556 "starts with invalid character", filename, linenum, name);
557 for (i = 0; i < l; i++) {
558 c = tolower((u_char)name[i]);
559 name[i] = (char)c;
560 if (last == '.' && c == '.')
561 fatal("%s line %d: hostname suffix \"%.100s\" contains "
562 "consecutive separators", filename, linenum, name);
563 if (c != '.' && c != '-' && !isalnum(c) &&
564 c != '_') /* technically invalid, but common */
565 fatal("%s line %d: hostname suffix \"%.100s\" contains "
566 "invalid characters", filename, linenum, name);
567 last = c;
568 }
569 if (name[l - 1] == '.')
570 name[l - 1] = '\0';
571}
572
Damien Miller5428f641999-11-25 11:54:57 +1100573/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000574 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100575 */
Damien Miller4af51302000-04-16 11:18:38 +1000576static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000577parse_token(const char *cp, const char *filename, int linenum,
578 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579{
Darren Tucker07636982013-05-16 20:30:03 +1000580 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581
Damien Miller95def091999-11-25 00:26:21 +1100582 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000583 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100584 return keywords[i].opcode;
Darren Tucker07636982013-05-16 20:30:03 +1000585 if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,
586 strlen(ignored_unknown), 1) == 1)
587 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000588 error("%s: line %d: Bad configuration option: %s",
589 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100590 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591}
592
Damien Millere9fc72e2013-10-15 12:14:12 +1100593/* Multistate option parsing */
594struct multistate {
595 char *key;
596 int value;
597};
598static const struct multistate multistate_flag[] = {
599 { "true", 1 },
600 { "false", 0 },
601 { "yes", 1 },
602 { "no", 0 },
603 { NULL, -1 }
604};
605static const struct multistate multistate_yesnoask[] = {
606 { "true", 1 },
607 { "false", 0 },
608 { "yes", 1 },
609 { "no", 0 },
610 { "ask", 2 },
611 { NULL, -1 }
612};
613static const struct multistate multistate_addressfamily[] = {
614 { "inet", AF_INET },
615 { "inet6", AF_INET6 },
616 { "any", AF_UNSPEC },
617 { NULL, -1 }
618};
619static const struct multistate multistate_controlmaster[] = {
620 { "true", SSHCTL_MASTER_YES },
621 { "yes", SSHCTL_MASTER_YES },
622 { "false", SSHCTL_MASTER_NO },
623 { "no", SSHCTL_MASTER_NO },
624 { "auto", SSHCTL_MASTER_AUTO },
625 { "ask", SSHCTL_MASTER_ASK },
626 { "autoask", SSHCTL_MASTER_AUTO_ASK },
627 { NULL, -1 }
628};
629static const struct multistate multistate_tunnel[] = {
630 { "ethernet", SSH_TUNMODE_ETHERNET },
631 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
632 { "true", SSH_TUNMODE_DEFAULT },
633 { "yes", SSH_TUNMODE_DEFAULT },
634 { "false", SSH_TUNMODE_NO },
635 { "no", SSH_TUNMODE_NO },
636 { NULL, -1 }
637};
638static const struct multistate multistate_requesttty[] = {
639 { "true", REQUEST_TTY_YES },
640 { "yes", REQUEST_TTY_YES },
641 { "false", REQUEST_TTY_NO },
642 { "no", REQUEST_TTY_NO },
643 { "force", REQUEST_TTY_FORCE },
644 { "auto", REQUEST_TTY_AUTO },
645 { NULL, -1 }
646};
Damien Miller0faf7472013-10-17 11:47:23 +1100647static const struct multistate multistate_canonicalisehostname[] = {
648 { "true", SSH_CANONICALISE_YES },
649 { "false", SSH_CANONICALISE_NO },
650 { "yes", SSH_CANONICALISE_YES },
651 { "no", SSH_CANONICALISE_NO },
652 { "always", SSH_CANONICALISE_ALWAYS },
653 { NULL, -1 }
654};
Damien Millere9fc72e2013-10-15 12:14:12 +1100655
Damien Miller5428f641999-11-25 11:54:57 +1100656/*
657 * Processes a single option line as used in the configuration files. This
658 * only sets those values that have not already been set.
659 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100660#define WHITESPACE " \t\r\n"
Damien Miller2ccf6611999-11-15 15:25:10 +1100661int
Damien Miller194fd902013-10-15 12:13:05 +1100662process_config_line(Options *options, struct passwd *pw, const char *host,
663 char *line, const char *filename, int linenum, int *activep, int userconfig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664{
Damien Miller295ee632011-05-29 21:42:31 +1000665 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
666 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000667 u_int i, *uintptr, max_entries = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100668 int negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100669 LogLevel *log_level_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000670 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100671 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100672 Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100673 const struct multistate *multistate_ptr;
Damien Miller0faf7472013-10-17 11:47:23 +1100674 struct allowed_cname *cname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675
Damien Miller194fd902013-10-15 12:13:05 +1100676 if (activep == NULL) { /* We are processing a command line directive */
677 cmdline = 1;
678 activep = &cmdline;
679 }
680
Damien Millerc652cac2003-05-14 13:40:54 +1000681 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100682 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000683 if (strchr(WHITESPACE, line[len]) == NULL)
684 break;
685 line[len] = '\0';
686 }
687
Damien Millerbe484b52000-07-15 14:14:16 +1000688 s = line;
689 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100690 if ((keyword = strdelim(&s)) == NULL)
691 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000692 /* Ignore leading whitespace. */
693 if (*keyword == '\0')
694 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000695 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100696 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000697 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100698 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Darren Tucker07636982013-05-16 20:30:03 +1000700 opcode = parse_token(keyword, filename, linenum,
701 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000702
Damien Miller95def091999-11-25 00:26:21 +1100703 switch (opcode) {
704 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100705 /* don't panic, but count bad options */
706 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100707 /* NOTREACHED */
Darren Tucker07636982013-05-16 20:30:03 +1000708 case oIgnoredUnknownOption:
709 debug("%s line %d: Ignored unknown option \"%s\"",
710 filename, linenum, keyword);
711 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000712 case oConnectTimeout:
713 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100714parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000715 arg = strdelim(&s);
716 if (!arg || *arg == '\0')
717 fatal("%s line %d: missing time value.",
718 filename, linenum);
719 if ((value = convtime(arg)) == -1)
720 fatal("%s line %d: invalid time value.",
721 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100722 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000723 *intptr = value;
724 break;
725
Damien Miller95def091999-11-25 00:26:21 +1100726 case oForwardAgent:
727 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100728 parse_flag:
729 multistate_ptr = multistate_flag;
730 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000731 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000732 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100733 fatal("%s line %d: missing argument.",
734 filename, linenum);
735 value = -1;
736 for (i = 0; multistate_ptr[i].key != NULL; i++) {
737 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
738 value = multistate_ptr[i].value;
739 break;
740 }
741 }
742 if (value == -1)
743 fatal("%s line %d: unsupported option \"%s\".",
744 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100745 if (*activep && *intptr == -1)
746 *intptr = value;
747 break;
748
749 case oForwardX11:
750 intptr = &options->forward_x11;
751 goto parse_flag;
752
Darren Tucker0a118da2003-10-15 15:54:32 +1000753 case oForwardX11Trusted:
754 intptr = &options->forward_x11_trusted;
755 goto parse_flag;
Damien Miller1ab6a512010-06-26 10:02:24 +1000756
757 case oForwardX11Timeout:
758 intptr = &options->forward_x11_timeout;
759 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000760
Damien Miller95def091999-11-25 00:26:21 +1100761 case oGatewayPorts:
762 intptr = &options->gateway_ports;
763 goto parse_flag;
764
Darren Tuckere7d4b192006-07-12 22:17:10 +1000765 case oExitOnForwardFailure:
766 intptr = &options->exit_on_forward_failure;
767 goto parse_flag;
768
Damien Miller95def091999-11-25 00:26:21 +1100769 case oUsePrivilegedPort:
770 intptr = &options->use_privileged_port;
771 goto parse_flag;
772
Damien Miller95def091999-11-25 00:26:21 +1100773 case oPasswordAuthentication:
774 intptr = &options->password_authentication;
775 goto parse_flag;
776
Damien Miller01ed2272008-11-05 16:20:46 +1100777 case oZeroKnowledgePasswordAuthentication:
778 intptr = &options->zero_knowledge_password_authentication;
779 goto parse_flag;
780
Damien Miller874d77b2000-10-14 16:23:11 +1100781 case oKbdInteractiveAuthentication:
782 intptr = &options->kbd_interactive_authentication;
783 goto parse_flag;
784
785 case oKbdInteractiveDevices:
786 charptr = &options->kbd_interactive_devices;
787 goto parse_string;
788
Damien Miller0bc1bd82000-11-13 22:57:25 +1100789 case oPubkeyAuthentication:
790 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000791 goto parse_flag;
792
Damien Miller95def091999-11-25 00:26:21 +1100793 case oRSAAuthentication:
794 intptr = &options->rsa_authentication;
795 goto parse_flag;
796
797 case oRhostsRSAAuthentication:
798 intptr = &options->rhosts_rsa_authentication;
799 goto parse_flag;
800
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000801 case oHostbasedAuthentication:
802 intptr = &options->hostbased_authentication;
803 goto parse_flag;
804
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000805 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000806 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100807 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000808
Darren Tucker0efd1552003-08-26 11:49:55 +1000809 case oGssAuthentication:
810 intptr = &options->gss_authentication;
811 goto parse_flag;
812
813 case oGssDelegateCreds:
814 intptr = &options->gss_deleg_creds;
815 goto parse_flag;
816
Damien Miller95def091999-11-25 00:26:21 +1100817 case oBatchMode:
818 intptr = &options->batch_mode;
819 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000820
Damien Miller95def091999-11-25 00:26:21 +1100821 case oCheckHostIP:
822 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000823 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000824
Damien Miller37876e92003-05-15 10:19:46 +1000825 case oVerifyHostKeyDNS:
826 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100827 multistate_ptr = multistate_yesnoask;
828 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000829
Damien Miller95def091999-11-25 00:26:21 +1100830 case oStrictHostKeyChecking:
831 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100832 multistate_ptr = multistate_yesnoask;
833 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834
Damien Miller95def091999-11-25 00:26:21 +1100835 case oCompression:
836 intptr = &options->compression;
837 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000838
Damien Miller12c150e2003-12-17 16:31:10 +1100839 case oTCPKeepAlive:
840 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100841 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000842
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000843 case oNoHostAuthenticationForLocalhost:
844 intptr = &options->no_host_authentication_for_localhost;
845 goto parse_flag;
846
Damien Miller95def091999-11-25 00:26:21 +1100847 case oNumberOfPasswordPrompts:
848 intptr = &options->number_of_password_prompts;
849 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000850
Damien Miller95def091999-11-25 00:26:21 +1100851 case oCompressionLevel:
852 intptr = &options->compression_level;
853 goto parse_int;
854
Damien Millera5539d22003-04-09 20:50:06 +1000855 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +1000856 arg = strdelim(&s);
857 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000858 fatal("%.200s line %d: Missing argument.", filename,
859 linenum);
860 if (strcmp(arg, "default") == 0) {
861 val64 = 0;
862 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +1000863 if (scan_scaled(arg, &val64) == -1)
864 fatal("%.200s line %d: Bad number '%s': %s",
865 filename, linenum, arg, strerror(errno));
866 /* check for too-large or too-small limits */
867 if (val64 > UINT_MAX)
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000868 fatal("%.200s line %d: RekeyLimit too large",
869 filename, linenum);
870 if (val64 != 0 && val64 < 16)
871 fatal("%.200s line %d: RekeyLimit too small",
872 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +1000873 }
Damien Miller3dff1762008-02-10 22:25:52 +1100874 if (*activep && options->rekey_limit == -1)
875 options->rekey_limit = (u_int32_t)val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000876 if (s != NULL) { /* optional rekey interval present */
877 if (strcmp(s, "none") == 0) {
878 (void)strdelim(&s); /* discard */
879 break;
880 }
881 intptr = &options->rekey_interval;
882 goto parse_time;
883 }
Damien Millera5539d22003-04-09 20:50:06 +1000884 break;
885
Damien Miller95def091999-11-25 00:26:21 +1100886 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000887 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000888 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100889 fatal("%.200s line %d: Missing argument.", filename, linenum);
890 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100891 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000892 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100893 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100894 filename, linenum, SSH_MAX_IDENTITY_FILES);
Darren Tuckeraefa3682013-04-05 11:18:35 +1100895 add_identity_file(options, NULL, arg, userconfig);
Damien Miller95def091999-11-25 00:26:21 +1100896 }
897 break;
898
Damien Millerd3a18572000-06-07 19:55:44 +1000899 case oXAuthLocation:
900 charptr=&options->xauth_location;
901 goto parse_string;
902
Damien Miller95def091999-11-25 00:26:21 +1100903 case oUser:
904 charptr = &options->user;
905parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000906 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000907 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +1000908 fatal("%.200s line %d: Missing argument.",
909 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100910 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000911 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100912 break;
913
914 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000915 cpptr = (char **)&options->system_hostfiles;
916 uintptr = &options->num_system_hostfiles;
917 max_entries = SSH_MAX_HOSTS_FILES;
918parse_char_array:
919 if (*activep && *uintptr == 0) {
920 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
921 if ((*uintptr) >= max_entries)
922 fatal("%s line %d: "
923 "too many authorized keys files.",
924 filename, linenum);
925 cpptr[(*uintptr)++] = xstrdup(arg);
926 }
927 }
928 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100929
930 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000931 cpptr = (char **)&options->user_hostfiles;
932 uintptr = &options->num_user_hostfiles;
933 max_entries = SSH_MAX_HOSTS_FILES;
934 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +1000935
Damien Miller95def091999-11-25 00:26:21 +1100936 case oHostName:
937 charptr = &options->hostname;
938 goto parse_string;
939
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000940 case oHostKeyAlias:
941 charptr = &options->host_key_alias;
942 goto parse_string;
943
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000944 case oPreferredAuthentications:
945 charptr = &options->preferred_authentications;
946 goto parse_string;
947
Ben Lindstrome0f88042001-04-30 13:06:24 +0000948 case oBindAddress:
949 charptr = &options->bind_address;
950 goto parse_string;
951
Damien Miller7ea845e2010-02-12 09:21:02 +1100952 case oPKCS11Provider:
953 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000954 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000955
Damien Miller95def091999-11-25 00:26:21 +1100956 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +1100957 charptr = &options->proxy_command;
958parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000959 if (s == NULL)
960 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +1100961 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100962 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100963 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100964 return 0;
965
966 case oPort:
967 intptr = &options->port;
968parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000969 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000970 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100971 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000972 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100973 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100974
975 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000976 value = strtol(arg, &endofnumber, 0);
977 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100978 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100979 if (*activep && *intptr == -1)
980 *intptr = value;
981 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982
Damien Miller95def091999-11-25 00:26:21 +1100983 case oConnectionAttempts:
984 intptr = &options->connection_attempts;
985 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100986
Damien Miller95def091999-11-25 00:26:21 +1100987 case oCipher:
988 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000989 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000990 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000991 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000992 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100993 if (value == -1)
994 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100995 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100996 if (*activep && *intptr == -1)
997 *intptr = value;
998 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller78928792000-04-12 20:17:38 +10001000 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001001 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001002 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001003 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001004 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001005 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001006 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001007 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001008 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001009 break;
1010
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001011 case oMacs:
1012 arg = strdelim(&s);
1013 if (!arg || *arg == '\0')
1014 fatal("%.200s line %d: Missing argument.", filename, linenum);
1015 if (!mac_valid(arg))
1016 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001017 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001018 if (*activep && options->macs == NULL)
1019 options->macs = xstrdup(arg);
1020 break;
1021
Damien Millerd5f62bf2010-09-24 22:11:14 +10001022 case oKexAlgorithms:
1023 arg = strdelim(&s);
1024 if (!arg || *arg == '\0')
1025 fatal("%.200s line %d: Missing argument.",
1026 filename, linenum);
1027 if (!kex_names_valid(arg))
1028 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1029 filename, linenum, arg ? arg : "<NONE>");
1030 if (*activep && options->kex_algorithms == NULL)
1031 options->kex_algorithms = xstrdup(arg);
1032 break;
1033
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001034 case oHostKeyAlgorithms:
1035 arg = strdelim(&s);
1036 if (!arg || *arg == '\0')
1037 fatal("%.200s line %d: Missing argument.", filename, linenum);
1038 if (!key_names_valid2(arg))
1039 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001040 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001041 if (*activep && options->hostkeyalgorithms == NULL)
1042 options->hostkeyalgorithms = xstrdup(arg);
1043 break;
1044
Damien Miller78928792000-04-12 20:17:38 +10001045 case oProtocol:
1046 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +10001047 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001048 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001049 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001050 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +10001051 if (value == SSH_PROTO_UNKNOWN)
1052 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001053 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001054 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
1055 *intptr = value;
1056 break;
1057
Damien Miller95def091999-11-25 00:26:21 +11001058 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001059 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001060 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001061 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001062 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001063 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001064 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001065 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1066 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001067 break;
1068
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001069 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001070 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001071 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001072 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001073 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001074 fatal("%.200s line %d: Missing port argument.",
1075 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001076
Damien Millera699d952008-11-03 19:27:34 +11001077 if (opcode == oLocalForward ||
1078 opcode == oRemoteForward) {
1079 arg2 = strdelim(&s);
1080 if (arg2 == NULL || *arg2 == '\0')
1081 fatal("%.200s line %d: Missing target argument.",
1082 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001083
Damien Millera699d952008-11-03 19:27:34 +11001084 /* construct a string for parse_forward */
1085 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1086 } else if (opcode == oDynamicForward) {
1087 strlcpy(fwdarg, arg, sizeof(fwdarg));
1088 }
1089
1090 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001091 opcode == oDynamicForward ? 1 : 0,
1092 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001093 fatal("%.200s line %d: Bad forwarding specification.",
1094 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001095
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001096 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001097 if (opcode == oLocalForward ||
1098 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001099 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001100 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001101 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001102 }
Damien Miller95def091999-11-25 00:26:21 +11001103 break;
1104
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001105 case oClearAllForwardings:
1106 intptr = &options->clear_forwardings;
1107 goto parse_flag;
1108
Damien Miller95def091999-11-25 00:26:21 +11001109 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001110 if (cmdline)
1111 fatal("Host directive not supported as a command-line "
1112 "option");
Damien Miller95def091999-11-25 00:26:21 +11001113 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001114 arg2 = NULL;
1115 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1116 negated = *arg == '!';
1117 if (negated)
1118 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001119 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001120 if (negated) {
1121 debug("%.200s line %d: Skipping Host "
1122 "block because of negated match "
1123 "for %.100s", filename, linenum,
1124 arg);
1125 *activep = 0;
1126 break;
1127 }
1128 if (!*activep)
1129 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001130 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001131 }
Damien Millerfe924212011-05-15 08:44:45 +10001132 }
1133 if (*activep)
1134 debug("%.200s line %d: Applying options for %.100s",
1135 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001136 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001137 return 0;
1138
Damien Miller194fd902013-10-15 12:13:05 +11001139 case oMatch:
1140 if (cmdline)
1141 fatal("Host directive not supported as a command-line "
1142 "option");
1143 value = match_cfg_line(options, &s, pw, host,
1144 filename, linenum);
1145 if (value < 0)
1146 fatal("%.200s line %d: Bad Match condition", filename,
1147 linenum);
1148 *activep = value;
1149 break;
1150
Damien Miller95def091999-11-25 00:26:21 +11001151 case oEscapeChar:
1152 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001153 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001154 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001155 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001156 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001157 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1158 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +10001159 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +00001160 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +10001161 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001162 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +11001163 else {
1164 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001165 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001166 /* NOTREACHED */
1167 value = 0; /* Avoid compiler warning. */
1168 }
1169 if (*activep && *intptr == -1)
1170 *intptr = value;
1171 break;
1172
Damien Miller20a8f972003-05-18 20:50:30 +10001173 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001174 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001175 multistate_ptr = multistate_addressfamily;
1176 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001177
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001178 case oEnableSSHKeysign:
1179 intptr = &options->enable_ssh_keysign;
1180 goto parse_flag;
1181
Damien Millerbd394c32004-03-08 23:12:36 +11001182 case oIdentitiesOnly:
1183 intptr = &options->identities_only;
1184 goto parse_flag;
1185
Damien Miller509b0102003-12-17 16:33:10 +11001186 case oServerAliveInterval:
1187 intptr = &options->server_alive_interval;
1188 goto parse_time;
1189
1190 case oServerAliveCountMax:
1191 intptr = &options->server_alive_count_max;
1192 goto parse_int;
1193
Darren Tucker46bc0752004-05-02 22:11:30 +10001194 case oSendEnv:
1195 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1196 if (strchr(arg, '=') != NULL)
1197 fatal("%s line %d: Invalid environment name.",
1198 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001199 if (!*activep)
1200 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001201 if (options->num_send_env >= MAX_SEND_ENV)
1202 fatal("%s line %d: too many send env.",
1203 filename, linenum);
1204 options->send_env[options->num_send_env++] =
1205 xstrdup(arg);
1206 }
1207 break;
1208
Damien Miller0e220db2004-06-15 10:34:08 +10001209 case oControlPath:
1210 charptr = &options->control_path;
1211 goto parse_string;
1212
1213 case oControlMaster:
1214 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001215 multistate_ptr = multistate_controlmaster;
1216 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001217
Damien Millere11e1ea2010-08-03 16:04:46 +10001218 case oControlPersist:
1219 /* no/false/yes/true, or a time spec */
1220 intptr = &options->control_persist;
1221 arg = strdelim(&s);
1222 if (!arg || *arg == '\0')
1223 fatal("%.200s line %d: Missing ControlPersist"
1224 " argument.", filename, linenum);
1225 value = 0;
1226 value2 = 0; /* timeout */
1227 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1228 value = 0;
1229 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1230 value = 1;
1231 else if ((value2 = convtime(arg)) >= 0)
1232 value = 1;
1233 else
1234 fatal("%.200s line %d: Bad ControlPersist argument.",
1235 filename, linenum);
1236 if (*activep && *intptr == -1) {
1237 *intptr = value;
1238 options->control_persist_timeout = value2;
1239 }
1240 break;
1241
Damien Millere1776152005-03-01 21:47:37 +11001242 case oHashKnownHosts:
1243 intptr = &options->hash_known_hosts;
1244 goto parse_flag;
1245
Damien Millerd27b9472005-12-13 19:29:02 +11001246 case oTunnel:
1247 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001248 multistate_ptr = multistate_tunnel;
1249 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001250
1251 case oTunnelDevice:
1252 arg = strdelim(&s);
1253 if (!arg || *arg == '\0')
1254 fatal("%.200s line %d: Missing argument.", filename, linenum);
1255 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001256 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001257 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1258 if (*activep) {
1259 options->tun_local = value;
1260 options->tun_remote = value2;
1261 }
1262 break;
1263
1264 case oLocalCommand:
1265 charptr = &options->local_command;
1266 goto parse_command;
1267
1268 case oPermitLocalCommand:
1269 intptr = &options->permit_local_command;
1270 goto parse_flag;
1271
Damien Miller10288242008-06-30 00:04:03 +10001272 case oVisualHostKey:
1273 intptr = &options->visual_host_key;
1274 goto parse_flag;
1275
Damien Miller0dac6fb2010-11-20 15:19:38 +11001276 case oIPQoS:
1277 arg = strdelim(&s);
1278 if ((value = parse_ipqos(arg)) == -1)
1279 fatal("%s line %d: Bad IPQoS value: %s",
1280 filename, linenum, arg);
1281 arg = strdelim(&s);
1282 if (arg == NULL)
1283 value2 = value;
1284 else if ((value2 = parse_ipqos(arg)) == -1)
1285 fatal("%s line %d: Bad IPQoS value: %s",
1286 filename, linenum, arg);
1287 if (*activep) {
1288 options->ip_qos_interactive = value;
1289 options->ip_qos_bulk = value2;
1290 }
1291 break;
1292
Darren Tucker71e4d542009-07-06 07:12:27 +10001293 case oUseRoaming:
1294 intptr = &options->use_roaming;
1295 goto parse_flag;
1296
Damien Miller21771e22011-05-15 08:45:50 +10001297 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001298 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001299 multistate_ptr = multistate_requesttty;
1300 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001301
Darren Tucker07636982013-05-16 20:30:03 +10001302 case oIgnoreUnknown:
1303 charptr = &options->ignored_unknown;
1304 goto parse_string;
1305
Damien Miller1262b662013-08-21 02:44:24 +10001306 case oProxyUseFdpass:
1307 intptr = &options->proxy_use_fdpass;
1308 goto parse_flag;
1309
Damien Miller0faf7472013-10-17 11:47:23 +11001310 case oCanonicalDomains:
1311 value = options->num_canonical_domains != 0;
1312 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1313 valid_domain(arg, filename, linenum);
1314 if (!*activep || value)
1315 continue;
1316 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1317 fatal("%s line %d: too many hostname suffixes.",
1318 filename, linenum);
1319 options->canonical_domains[
1320 options->num_canonical_domains++] = xstrdup(arg);
1321 }
1322 break;
1323
1324 case oCanonicalisePermittedCNAMEs:
1325 value = options->num_permitted_cnames != 0;
1326 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1327 /* Either '*' for everything or 'list:list' */
1328 if (strcmp(arg, "*") == 0)
1329 arg2 = arg;
1330 else {
1331 lowercase(arg);
1332 if ((arg2 = strchr(arg, ':')) == NULL ||
1333 arg2[1] == '\0') {
1334 fatal("%s line %d: "
1335 "Invalid permitted CNAME \"%s\"",
1336 filename, linenum, arg);
1337 }
1338 *arg2 = '\0';
1339 arg2++;
1340 }
1341 if (!*activep || value)
1342 continue;
1343 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1344 fatal("%s line %d: too many permitted CNAMEs.",
1345 filename, linenum);
1346 cname = options->permitted_cnames +
1347 options->num_permitted_cnames++;
1348 cname->source_list = xstrdup(arg);
1349 cname->target_list = xstrdup(arg2);
1350 }
1351 break;
1352
1353 case oCanonicaliseHostname:
1354 intptr = &options->canonicalise_hostname;
1355 multistate_ptr = multistate_canonicalisehostname;
1356 goto parse_multistate;
1357
1358 case oCanonicaliseMaxDots:
1359 intptr = &options->canonicalise_max_dots;
1360 goto parse_int;
1361
1362 case oCanonicaliseFallbackLocal:
1363 intptr = &options->canonicalise_fallback_local;
1364 goto parse_flag;
1365
Ben Lindstrom4daea862002-06-09 20:04:02 +00001366 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001367 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001368 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001369 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001370
Damien Millerf9b3feb2003-05-16 11:38:32 +10001371 case oUnsupported:
1372 error("%s line %d: Unsupported option \"%s\"",
1373 filename, linenum, keyword);
1374 return 0;
1375
Damien Miller95def091999-11-25 00:26:21 +11001376 default:
1377 fatal("process_config_line: Unimplemented opcode %d", opcode);
1378 }
1379
1380 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001381 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001382 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001383 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001384 }
Damien Miller95def091999-11-25 00:26:21 +11001385 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386}
1387
1388
Damien Miller5428f641999-11-25 11:54:57 +11001389/*
1390 * Reads the config file and modifies the options accordingly. Options
1391 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001392 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001393 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001395int
Damien Miller194fd902013-10-15 12:13:05 +11001396read_config_file(const char *filename, struct passwd *pw, const char *host,
1397 Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398{
Damien Miller95def091999-11-25 00:26:21 +11001399 FILE *f;
1400 char line[1024];
1401 int active, linenum;
1402 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403
Damien Miller57a44762004-04-20 20:11:57 +10001404 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001405 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Darren Tuckeraefa3682013-04-05 11:18:35 +11001407 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001408 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001409
Damien Miller33793852004-06-15 10:27:55 +10001410 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001411 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001412 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001413 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001414 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001415 }
1416
Damien Miller95def091999-11-25 00:26:21 +11001417 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001418
Damien Miller5428f641999-11-25 11:54:57 +11001419 /*
1420 * Mark that we are now processing the options. This flag is turned
1421 * on/off by Host specifications.
1422 */
Damien Miller95def091999-11-25 00:26:21 +11001423 active = 1;
1424 linenum = 0;
1425 while (fgets(line, sizeof(line), f)) {
1426 /* Update line number counter. */
1427 linenum++;
Damien Miller194fd902013-10-15 12:13:05 +11001428 if (process_config_line(options, pw, host, line, filename,
1429 linenum, &active, flags & SSHCONF_USERCONF) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001430 bad_options++;
1431 }
1432 fclose(f);
1433 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001434 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001435 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001436 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001437}
1438
Damien Miller5428f641999-11-25 11:54:57 +11001439/*
1440 * Initializes options to special values that indicate that they have not yet
1441 * been set. Read_config_file will only set options with this value. Options
1442 * are processed in the following order: command line, user config file,
1443 * system config file. Last, fill_default_options is called.
1444 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001445
Damien Miller4af51302000-04-16 11:18:38 +10001446void
Damien Miller95def091999-11-25 00:26:21 +11001447initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448{
Damien Miller95def091999-11-25 00:26:21 +11001449 memset(options, 'X', sizeof(*options));
1450 options->forward_agent = -1;
1451 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001452 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001453 options->forward_x11_timeout = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001454 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001455 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001456 options->gateway_ports = -1;
1457 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001458 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001459 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001460 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001461 options->gss_authentication = -1;
1462 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001463 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001464 options->kbd_interactive_authentication = -1;
1465 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001466 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001467 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001468 options->batch_mode = -1;
1469 options->check_host_ip = -1;
1470 options->strict_host_key_checking = -1;
1471 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001472 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001473 options->compression_level = -1;
1474 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001475 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001476 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001477 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001478 options->number_of_password_prompts = -1;
1479 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001480 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001481 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001482 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001483 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001484 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001485 options->num_identity_files = 0;
1486 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001487 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001488 options->proxy_command = NULL;
1489 options->user = NULL;
1490 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001491 options->num_system_hostfiles = 0;
1492 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001493 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001494 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001495 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001496 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001497 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +11001498 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001499 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001500 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001501 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001502 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001503 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001504 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001505 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001506 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001507 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001508 options->server_alive_interval = -1;
1509 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001510 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001511 options->control_path = NULL;
1512 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001513 options->control_persist = -1;
1514 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001515 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001516 options->tun_open = -1;
1517 options->tun_local = -1;
1518 options->tun_remote = -1;
1519 options->local_command = NULL;
1520 options->permit_local_command = -1;
Darren Tucker71e4d542009-07-06 07:12:27 +10001521 options->use_roaming = -1;
Damien Miller10288242008-06-30 00:04:03 +10001522 options->visual_host_key = -1;
Damien Miller01ed2272008-11-05 16:20:46 +11001523 options->zero_knowledge_password_authentication = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001524 options->ip_qos_interactive = -1;
1525 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001526 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001527 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001528 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001529 options->num_canonical_domains = 0;
1530 options->num_permitted_cnames = 0;
1531 options->canonicalise_max_dots = -1;
1532 options->canonicalise_fallback_local = -1;
1533 options->canonicalise_hostname = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001534}
1535
Damien Miller5428f641999-11-25 11:54:57 +11001536/*
1537 * Called after processing other sources of option data, this fills those
1538 * options for which no value has been specified with their default values.
1539 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001540
Damien Miller4af51302000-04-16 11:18:38 +10001541void
Damien Miller95def091999-11-25 00:26:21 +11001542fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001543{
Damien Miller95def091999-11-25 00:26:21 +11001544 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001545 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001546 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001547 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001548 if (options->forward_x11_trusted == -1)
1549 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001550 if (options->forward_x11_timeout == -1)
1551 options->forward_x11_timeout = 1200;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001552 if (options->exit_on_forward_failure == -1)
1553 options->exit_on_forward_failure = 0;
Damien Millerd3a18572000-06-07 19:55:44 +10001554 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001555 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +11001556 if (options->gateway_ports == -1)
1557 options->gateway_ports = 0;
1558 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001559 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001560 if (options->rsa_authentication == -1)
1561 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001562 if (options->pubkey_authentication == -1)
1563 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001564 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001565 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001566 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001567 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001568 if (options->gss_deleg_creds == -1)
1569 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001570 if (options->password_authentication == -1)
1571 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001572 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001573 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001574 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001575 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001576 if (options->hostbased_authentication == -1)
1577 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001578 if (options->batch_mode == -1)
1579 options->batch_mode = 0;
1580 if (options->check_host_ip == -1)
1581 options->check_host_ip = 1;
1582 if (options->strict_host_key_checking == -1)
1583 options->strict_host_key_checking = 2; /* 2 is default */
1584 if (options->compression == -1)
1585 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001586 if (options->tcp_keep_alive == -1)
1587 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001588 if (options->compression_level == -1)
1589 options->compression_level = 6;
1590 if (options->port == -1)
1591 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001592 if (options->address_family == -1)
1593 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001594 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001595 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001596 if (options->number_of_password_prompts == -1)
1597 options->number_of_password_prompts = 3;
1598 /* Selected in ssh_login(). */
1599 if (options->cipher == -1)
1600 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001601 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001602 /* options->macs, default set in myproposals.h */
Damien Millerd5f62bf2010-09-24 22:11:14 +10001603 /* options->kex_algorithms, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001604 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001605 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001606 options->protocol = SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001607 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001608 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001609 add_identity_file(options, "~/",
1610 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001611 }
1612 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001613 add_identity_file(options, "~/",
1614 _PATH_SSH_CLIENT_ID_RSA, 0);
1615 add_identity_file(options, "~/",
1616 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001617#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001618 add_identity_file(options, "~/",
1619 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001620#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001621 }
Damien Millereba71ba2000-04-29 23:57:08 +10001622 }
Damien Miller95def091999-11-25 00:26:21 +11001623 if (options->escape_char == -1)
1624 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001625 if (options->num_system_hostfiles == 0) {
1626 options->system_hostfiles[options->num_system_hostfiles++] =
1627 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1628 options->system_hostfiles[options->num_system_hostfiles++] =
1629 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1630 }
1631 if (options->num_user_hostfiles == 0) {
1632 options->user_hostfiles[options->num_user_hostfiles++] =
1633 xstrdup(_PATH_SSH_USER_HOSTFILE);
1634 options->user_hostfiles[options->num_user_hostfiles++] =
1635 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1636 }
Damien Millerfcd93202002-02-05 12:26:34 +11001637 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001638 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001639 if (options->clear_forwardings == 1)
1640 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001641 if (options->no_host_authentication_for_localhost == - 1)
1642 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001643 if (options->identities_only == -1)
1644 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001645 if (options->enable_ssh_keysign == -1)
1646 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001647 if (options->rekey_limit == -1)
1648 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001649 if (options->rekey_interval == -1)
1650 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001651 if (options->verify_host_key_dns == -1)
1652 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001653 if (options->server_alive_interval == -1)
1654 options->server_alive_interval = 0;
1655 if (options->server_alive_count_max == -1)
1656 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001657 if (options->control_master == -1)
1658 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001659 if (options->control_persist == -1) {
1660 options->control_persist = 0;
1661 options->control_persist_timeout = 0;
1662 }
Damien Millere1776152005-03-01 21:47:37 +11001663 if (options->hash_known_hosts == -1)
1664 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001665 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001666 options->tun_open = SSH_TUNMODE_NO;
1667 if (options->tun_local == -1)
1668 options->tun_local = SSH_TUNID_ANY;
1669 if (options->tun_remote == -1)
1670 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001671 if (options->permit_local_command == -1)
1672 options->permit_local_command = 0;
Darren Tucker71e4d542009-07-06 07:12:27 +10001673 if (options->use_roaming == -1)
1674 options->use_roaming = 1;
Damien Miller10288242008-06-30 00:04:03 +10001675 if (options->visual_host_key == -1)
1676 options->visual_host_key = 0;
Damien Miller01ed2272008-11-05 16:20:46 +11001677 if (options->zero_knowledge_password_authentication == -1)
1678 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001679 if (options->ip_qos_interactive == -1)
1680 options->ip_qos_interactive = IPTOS_LOWDELAY;
1681 if (options->ip_qos_bulk == -1)
1682 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10001683 if (options->request_tty == -1)
1684 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10001685 if (options->proxy_use_fdpass == -1)
1686 options->proxy_use_fdpass = 0;
Damien Miller0faf7472013-10-17 11:47:23 +11001687 if (options->canonicalise_max_dots == -1)
1688 options->canonicalise_max_dots = 1;
1689 if (options->canonicalise_fallback_local == -1)
1690 options->canonicalise_fallback_local = 1;
1691 if (options->canonicalise_hostname == -1)
1692 options->canonicalise_hostname = SSH_CANONICALISE_NO;
Damien Millere9fc72e2013-10-15 12:14:12 +11001693#define CLEAR_ON_NONE(v) \
1694 do { \
1695 if (v != NULL && strcasecmp(v, "none") == 0) { \
1696 free(v); \
1697 v = NULL; \
1698 } \
1699 } while(0)
1700 CLEAR_ON_NONE(options->local_command);
1701 CLEAR_ON_NONE(options->proxy_command);
1702 CLEAR_ON_NONE(options->control_path);
Damien Miller95def091999-11-25 00:26:21 +11001703 /* options->user will be set in the main program if appropriate */
1704 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001705 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001706 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001707}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001708
1709/*
1710 * parse_forward
1711 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11001712 * dynamicfwd == 0
Damien Millerf91ee4c2005-03-01 21:24:33 +11001713 * [listenhost:]listenport:connecthost:connectport
Damien Millera699d952008-11-03 19:27:34 +11001714 * dynamicfwd == 1
1715 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11001716 * returns number of arguments parsed or zero on error
1717 */
1718int
Damien Miller4bf648f2009-02-14 16:28:21 +11001719parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001720{
1721 int i;
1722 char *p, *cp, *fwdarg[4];
1723
1724 memset(fwd, '\0', sizeof(*fwd));
1725
1726 cp = p = xstrdup(fwdspec);
1727
1728 /* skip leading spaces */
Darren Tucker03b1cdb2007-03-21 20:46:03 +11001729 while (isspace(*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001730 cp++;
1731
1732 for (i = 0; i < 4; ++i)
1733 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1734 break;
1735
Damien Millerf4b39532008-11-03 19:28:21 +11001736 /* Check for trailing garbage */
Damien Millerf91ee4c2005-03-01 21:24:33 +11001737 if (cp != NULL)
1738 i = 0; /* failure */
1739
1740 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11001741 case 1:
1742 fwd->listen_host = NULL;
1743 fwd->listen_port = a2port(fwdarg[0]);
1744 fwd->connect_host = xstrdup("socks");
1745 break;
1746
1747 case 2:
1748 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1749 fwd->listen_port = a2port(fwdarg[1]);
1750 fwd->connect_host = xstrdup("socks");
1751 break;
1752
Damien Millerf91ee4c2005-03-01 21:24:33 +11001753 case 3:
1754 fwd->listen_host = NULL;
1755 fwd->listen_port = a2port(fwdarg[0]);
1756 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1757 fwd->connect_port = a2port(fwdarg[2]);
1758 break;
1759
1760 case 4:
1761 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1762 fwd->listen_port = a2port(fwdarg[1]);
1763 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1764 fwd->connect_port = a2port(fwdarg[3]);
1765 break;
1766 default:
1767 i = 0; /* failure */
1768 }
1769
Darren Tuckera627d422013-06-02 07:31:17 +10001770 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001771
Damien Millera699d952008-11-03 19:27:34 +11001772 if (dynamicfwd) {
1773 if (!(i == 1 || i == 2))
1774 goto fail_free;
1775 } else {
1776 if (!(i == 3 || i == 4))
1777 goto fail_free;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001778 if (fwd->connect_port <= 0)
Damien Millera699d952008-11-03 19:27:34 +11001779 goto fail_free;
1780 }
1781
Damien Miller4bf648f2009-02-14 16:28:21 +11001782 if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001783 goto fail_free;
1784
1785 if (fwd->connect_host != NULL &&
1786 strlen(fwd->connect_host) >= NI_MAXHOST)
1787 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11001788 if (fwd->listen_host != NULL &&
1789 strlen(fwd->listen_host) >= NI_MAXHOST)
1790 goto fail_free;
1791
Damien Millerf91ee4c2005-03-01 21:24:33 +11001792
1793 return (i);
1794
1795 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10001796 free(fwd->connect_host);
1797 fwd->connect_host = NULL;
1798 free(fwd->listen_host);
1799 fwd->listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11001800 return (0);
1801}