blob: dad2490076aba42d3a39f4a0c93f73ca180427fb [file] [log] [blame]
Damien Miller084bcd22013-10-23 16:30:51 +11001/* $OpenBSD: readconf.c,v 1.211 2013/10/23 03:03:07 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 Miller38505592013-10-17 11:48:13 +1100147 oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots,
148 oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs,
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 },
Damien Miller38505592013-10-17 11:48:13 +1100263 { "canonicalizefallbacklocal", oCanonicalizeFallbackLocal },
264 { "canonicalizehostname", oCanonicalizeHostname },
265 { "canonicalizemaxdots", oCanonicalizeMaxDots },
266 { "canonicalizepermittedcnames", oCanonicalizePermittedCNAMEs },
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{
Damien Miller084bcd22013-10-23 16:30:51 +1100460 char *arg, *attrib, *cmd, *cp = *condition, *host;
461 const char *ruser;
Damien Miller194fd902013-10-15 12:13:05 +1100462 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;
Damien Miller084bcd22013-10-23 16:30:51 +1100472 if (options->hostname != NULL) {
473 host = percent_expand(options->hostname,
474 "h", host_arg, (char *)NULL);
475 } else
476 host = xstrdup(host_arg);
Damien Miller194fd902013-10-15 12:13:05 +1100477
478 debug3("checking match for '%s' host %s", cp, host);
479 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
480 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
481 error("Missing Match criteria for %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100482 result = -1;
483 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100484 }
485 len = strlen(arg);
486 if (strcasecmp(attrib, "host") == 0) {
487 if (match_hostname(host, arg, len) != 1)
488 result = 0;
489 else
490 debug("%.200s line %d: matched 'Host %.100s' ",
491 filename, linenum, host);
492 } else if (strcasecmp(attrib, "originalhost") == 0) {
493 if (match_hostname(host_arg, arg, len) != 1)
494 result = 0;
495 else
496 debug("%.200s line %d: matched "
497 "'OriginalHost %.100s' ",
498 filename, linenum, host_arg);
499 } else if (strcasecmp(attrib, "user") == 0) {
500 if (match_pattern_list(ruser, arg, len, 0) != 1)
501 result = 0;
502 else
503 debug("%.200s line %d: matched 'User %.100s' ",
504 filename, linenum, ruser);
505 } else if (strcasecmp(attrib, "localuser") == 0) {
506 if (match_pattern_list(pw->pw_name, arg, len, 0) != 1)
507 result = 0;
508 else
509 debug("%.200s line %d: matched "
510 "'LocalUser %.100s' ",
511 filename, linenum, pw->pw_name);
Damien Miller8a04be72013-10-23 16:29:40 +1100512 } else if (strcasecmp(attrib, "exec") == 0) {
Damien Miller194fd902013-10-15 12:13:05 +1100513 if (gethostname(thishost, sizeof(thishost)) == -1)
514 fatal("gethostname: %s", strerror(errno));
515 strlcpy(shorthost, thishost, sizeof(shorthost));
516 shorthost[strcspn(thishost, ".")] = '\0';
517 snprintf(portstr, sizeof(portstr), "%d", port);
518
519 cmd = percent_expand(arg,
520 "L", shorthost,
521 "d", pw->pw_dir,
522 "h", host,
523 "l", thishost,
524 "n", host_arg,
525 "p", portstr,
526 "r", ruser,
527 "u", pw->pw_name,
528 (char *)NULL);
529 r = execute_in_shell(cmd);
530 if (r == -1) {
Damien Miller8a04be72013-10-23 16:29:40 +1100531 fatal("%.200s line %d: match exec '%.100s' "
Damien Miller194fd902013-10-15 12:13:05 +1100532 "error", filename, linenum, cmd);
533 } else if (r == 0) {
534 debug("%.200s line %d: matched "
Damien Miller8a04be72013-10-23 16:29:40 +1100535 "'exec \"%.100s\"' ",
Damien Miller194fd902013-10-15 12:13:05 +1100536 filename, linenum, cmd);
537 } else
538 result = 0;
539 free(cmd);
540 } else {
541 error("Unsupported Match attribute %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100542 result = -1;
543 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100544 }
545 }
546 debug3("match %sfound", result ? "" : "not ");
547 *condition = cp;
Damien Miller084bcd22013-10-23 16:30:51 +1100548 out:
549 free(host);
Damien Miller194fd902013-10-15 12:13:05 +1100550 return result;
551}
552
Damien Miller0faf7472013-10-17 11:47:23 +1100553/* Check and prepare a domain name: removes trailing '.' and lowercases */
554static void
555valid_domain(char *name, const char *filename, int linenum)
556{
557 size_t i, l = strlen(name);
558 u_char c, last = '\0';
559
560 if (l == 0)
561 fatal("%s line %d: empty hostname suffix", filename, linenum);
562 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
563 fatal("%s line %d: hostname suffix \"%.100s\" "
564 "starts with invalid character", filename, linenum, name);
565 for (i = 0; i < l; i++) {
566 c = tolower((u_char)name[i]);
567 name[i] = (char)c;
568 if (last == '.' && c == '.')
569 fatal("%s line %d: hostname suffix \"%.100s\" contains "
570 "consecutive separators", filename, linenum, name);
571 if (c != '.' && c != '-' && !isalnum(c) &&
572 c != '_') /* technically invalid, but common */
573 fatal("%s line %d: hostname suffix \"%.100s\" contains "
574 "invalid characters", filename, linenum, name);
575 last = c;
576 }
577 if (name[l - 1] == '.')
578 name[l - 1] = '\0';
579}
580
Damien Miller5428f641999-11-25 11:54:57 +1100581/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000582 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100583 */
Damien Miller4af51302000-04-16 11:18:38 +1000584static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000585parse_token(const char *cp, const char *filename, int linenum,
586 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587{
Darren Tucker07636982013-05-16 20:30:03 +1000588 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Damien Miller95def091999-11-25 00:26:21 +1100590 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000591 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100592 return keywords[i].opcode;
Darren Tucker07636982013-05-16 20:30:03 +1000593 if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,
594 strlen(ignored_unknown), 1) == 1)
595 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000596 error("%s: line %d: Bad configuration option: %s",
597 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100598 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599}
600
Damien Millere9fc72e2013-10-15 12:14:12 +1100601/* Multistate option parsing */
602struct multistate {
603 char *key;
604 int value;
605};
606static const struct multistate multistate_flag[] = {
607 { "true", 1 },
608 { "false", 0 },
609 { "yes", 1 },
610 { "no", 0 },
611 { NULL, -1 }
612};
613static const struct multistate multistate_yesnoask[] = {
614 { "true", 1 },
615 { "false", 0 },
616 { "yes", 1 },
617 { "no", 0 },
618 { "ask", 2 },
619 { NULL, -1 }
620};
621static const struct multistate multistate_addressfamily[] = {
622 { "inet", AF_INET },
623 { "inet6", AF_INET6 },
624 { "any", AF_UNSPEC },
625 { NULL, -1 }
626};
627static const struct multistate multistate_controlmaster[] = {
628 { "true", SSHCTL_MASTER_YES },
629 { "yes", SSHCTL_MASTER_YES },
630 { "false", SSHCTL_MASTER_NO },
631 { "no", SSHCTL_MASTER_NO },
632 { "auto", SSHCTL_MASTER_AUTO },
633 { "ask", SSHCTL_MASTER_ASK },
634 { "autoask", SSHCTL_MASTER_AUTO_ASK },
635 { NULL, -1 }
636};
637static const struct multistate multistate_tunnel[] = {
638 { "ethernet", SSH_TUNMODE_ETHERNET },
639 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
640 { "true", SSH_TUNMODE_DEFAULT },
641 { "yes", SSH_TUNMODE_DEFAULT },
642 { "false", SSH_TUNMODE_NO },
643 { "no", SSH_TUNMODE_NO },
644 { NULL, -1 }
645};
646static const struct multistate multistate_requesttty[] = {
647 { "true", REQUEST_TTY_YES },
648 { "yes", REQUEST_TTY_YES },
649 { "false", REQUEST_TTY_NO },
650 { "no", REQUEST_TTY_NO },
651 { "force", REQUEST_TTY_FORCE },
652 { "auto", REQUEST_TTY_AUTO },
653 { NULL, -1 }
654};
Damien Miller38505592013-10-17 11:48:13 +1100655static const struct multistate multistate_canonicalizehostname[] = {
Damien Miller0faf7472013-10-17 11:47:23 +1100656 { "true", SSH_CANONICALISE_YES },
657 { "false", SSH_CANONICALISE_NO },
658 { "yes", SSH_CANONICALISE_YES },
659 { "no", SSH_CANONICALISE_NO },
660 { "always", SSH_CANONICALISE_ALWAYS },
661 { NULL, -1 }
662};
Damien Millere9fc72e2013-10-15 12:14:12 +1100663
Damien Miller5428f641999-11-25 11:54:57 +1100664/*
665 * Processes a single option line as used in the configuration files. This
666 * only sets those values that have not already been set.
667 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100668#define WHITESPACE " \t\r\n"
Damien Miller2ccf6611999-11-15 15:25:10 +1100669int
Damien Miller194fd902013-10-15 12:13:05 +1100670process_config_line(Options *options, struct passwd *pw, const char *host,
671 char *line, const char *filename, int linenum, int *activep, int userconfig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672{
Damien Miller295ee632011-05-29 21:42:31 +1000673 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
674 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000675 u_int i, *uintptr, max_entries = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100676 int negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100677 LogLevel *log_level_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000678 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100679 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100680 Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100681 const struct multistate *multistate_ptr;
Damien Miller0faf7472013-10-17 11:47:23 +1100682 struct allowed_cname *cname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller194fd902013-10-15 12:13:05 +1100684 if (activep == NULL) { /* We are processing a command line directive */
685 cmdline = 1;
686 activep = &cmdline;
687 }
688
Damien Millerc652cac2003-05-14 13:40:54 +1000689 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100690 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000691 if (strchr(WHITESPACE, line[len]) == NULL)
692 break;
693 line[len] = '\0';
694 }
695
Damien Millerbe484b52000-07-15 14:14:16 +1000696 s = line;
697 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100698 if ((keyword = strdelim(&s)) == NULL)
699 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000700 /* Ignore leading whitespace. */
701 if (*keyword == '\0')
702 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000703 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100704 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000705 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100706 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000707
Darren Tucker07636982013-05-16 20:30:03 +1000708 opcode = parse_token(keyword, filename, linenum,
709 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000710
Damien Miller95def091999-11-25 00:26:21 +1100711 switch (opcode) {
712 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100713 /* don't panic, but count bad options */
714 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100715 /* NOTREACHED */
Darren Tucker07636982013-05-16 20:30:03 +1000716 case oIgnoredUnknownOption:
717 debug("%s line %d: Ignored unknown option \"%s\"",
718 filename, linenum, keyword);
719 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000720 case oConnectTimeout:
721 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100722parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000723 arg = strdelim(&s);
724 if (!arg || *arg == '\0')
725 fatal("%s line %d: missing time value.",
726 filename, linenum);
727 if ((value = convtime(arg)) == -1)
728 fatal("%s line %d: invalid time value.",
729 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100730 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000731 *intptr = value;
732 break;
733
Damien Miller95def091999-11-25 00:26:21 +1100734 case oForwardAgent:
735 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100736 parse_flag:
737 multistate_ptr = multistate_flag;
738 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000739 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000740 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100741 fatal("%s line %d: missing argument.",
742 filename, linenum);
743 value = -1;
744 for (i = 0; multistate_ptr[i].key != NULL; i++) {
745 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
746 value = multistate_ptr[i].value;
747 break;
748 }
749 }
750 if (value == -1)
751 fatal("%s line %d: unsupported option \"%s\".",
752 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100753 if (*activep && *intptr == -1)
754 *intptr = value;
755 break;
756
757 case oForwardX11:
758 intptr = &options->forward_x11;
759 goto parse_flag;
760
Darren Tucker0a118da2003-10-15 15:54:32 +1000761 case oForwardX11Trusted:
762 intptr = &options->forward_x11_trusted;
763 goto parse_flag;
Damien Miller1ab6a512010-06-26 10:02:24 +1000764
765 case oForwardX11Timeout:
766 intptr = &options->forward_x11_timeout;
767 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000768
Damien Miller95def091999-11-25 00:26:21 +1100769 case oGatewayPorts:
770 intptr = &options->gateway_ports;
771 goto parse_flag;
772
Darren Tuckere7d4b192006-07-12 22:17:10 +1000773 case oExitOnForwardFailure:
774 intptr = &options->exit_on_forward_failure;
775 goto parse_flag;
776
Damien Miller95def091999-11-25 00:26:21 +1100777 case oUsePrivilegedPort:
778 intptr = &options->use_privileged_port;
779 goto parse_flag;
780
Damien Miller95def091999-11-25 00:26:21 +1100781 case oPasswordAuthentication:
782 intptr = &options->password_authentication;
783 goto parse_flag;
784
Damien Miller01ed2272008-11-05 16:20:46 +1100785 case oZeroKnowledgePasswordAuthentication:
786 intptr = &options->zero_knowledge_password_authentication;
787 goto parse_flag;
788
Damien Miller874d77b2000-10-14 16:23:11 +1100789 case oKbdInteractiveAuthentication:
790 intptr = &options->kbd_interactive_authentication;
791 goto parse_flag;
792
793 case oKbdInteractiveDevices:
794 charptr = &options->kbd_interactive_devices;
795 goto parse_string;
796
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797 case oPubkeyAuthentication:
798 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000799 goto parse_flag;
800
Damien Miller95def091999-11-25 00:26:21 +1100801 case oRSAAuthentication:
802 intptr = &options->rsa_authentication;
803 goto parse_flag;
804
805 case oRhostsRSAAuthentication:
806 intptr = &options->rhosts_rsa_authentication;
807 goto parse_flag;
808
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000809 case oHostbasedAuthentication:
810 intptr = &options->hostbased_authentication;
811 goto parse_flag;
812
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000813 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000814 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100815 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000816
Darren Tucker0efd1552003-08-26 11:49:55 +1000817 case oGssAuthentication:
818 intptr = &options->gss_authentication;
819 goto parse_flag;
820
821 case oGssDelegateCreds:
822 intptr = &options->gss_deleg_creds;
823 goto parse_flag;
824
Damien Miller95def091999-11-25 00:26:21 +1100825 case oBatchMode:
826 intptr = &options->batch_mode;
827 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828
Damien Miller95def091999-11-25 00:26:21 +1100829 case oCheckHostIP:
830 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000831 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000832
Damien Miller37876e92003-05-15 10:19:46 +1000833 case oVerifyHostKeyDNS:
834 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100835 multistate_ptr = multistate_yesnoask;
836 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000837
Damien Miller95def091999-11-25 00:26:21 +1100838 case oStrictHostKeyChecking:
839 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100840 multistate_ptr = multistate_yesnoask;
841 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000842
Damien Miller95def091999-11-25 00:26:21 +1100843 case oCompression:
844 intptr = &options->compression;
845 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846
Damien Miller12c150e2003-12-17 16:31:10 +1100847 case oTCPKeepAlive:
848 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100849 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000850
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000851 case oNoHostAuthenticationForLocalhost:
852 intptr = &options->no_host_authentication_for_localhost;
853 goto parse_flag;
854
Damien Miller95def091999-11-25 00:26:21 +1100855 case oNumberOfPasswordPrompts:
856 intptr = &options->number_of_password_prompts;
857 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000858
Damien Miller95def091999-11-25 00:26:21 +1100859 case oCompressionLevel:
860 intptr = &options->compression_level;
861 goto parse_int;
862
Damien Millera5539d22003-04-09 20:50:06 +1000863 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +1000864 arg = strdelim(&s);
865 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000866 fatal("%.200s line %d: Missing argument.", filename,
867 linenum);
868 if (strcmp(arg, "default") == 0) {
869 val64 = 0;
870 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +1000871 if (scan_scaled(arg, &val64) == -1)
872 fatal("%.200s line %d: Bad number '%s': %s",
873 filename, linenum, arg, strerror(errno));
874 /* check for too-large or too-small limits */
875 if (val64 > UINT_MAX)
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000876 fatal("%.200s line %d: RekeyLimit too large",
877 filename, linenum);
878 if (val64 != 0 && val64 < 16)
879 fatal("%.200s line %d: RekeyLimit too small",
880 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +1000881 }
Damien Miller3dff1762008-02-10 22:25:52 +1100882 if (*activep && options->rekey_limit == -1)
883 options->rekey_limit = (u_int32_t)val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000884 if (s != NULL) { /* optional rekey interval present */
885 if (strcmp(s, "none") == 0) {
886 (void)strdelim(&s); /* discard */
887 break;
888 }
889 intptr = &options->rekey_interval;
890 goto parse_time;
891 }
Damien Millera5539d22003-04-09 20:50:06 +1000892 break;
893
Damien Miller95def091999-11-25 00:26:21 +1100894 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000895 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000896 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100897 fatal("%.200s line %d: Missing argument.", filename, linenum);
898 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100899 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000900 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100901 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100902 filename, linenum, SSH_MAX_IDENTITY_FILES);
Darren Tuckeraefa3682013-04-05 11:18:35 +1100903 add_identity_file(options, NULL, arg, userconfig);
Damien Miller95def091999-11-25 00:26:21 +1100904 }
905 break;
906
Damien Millerd3a18572000-06-07 19:55:44 +1000907 case oXAuthLocation:
908 charptr=&options->xauth_location;
909 goto parse_string;
910
Damien Miller95def091999-11-25 00:26:21 +1100911 case oUser:
912 charptr = &options->user;
913parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000914 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000915 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +1000916 fatal("%.200s line %d: Missing argument.",
917 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100918 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000919 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100920 break;
921
922 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000923 cpptr = (char **)&options->system_hostfiles;
924 uintptr = &options->num_system_hostfiles;
925 max_entries = SSH_MAX_HOSTS_FILES;
926parse_char_array:
927 if (*activep && *uintptr == 0) {
928 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
929 if ((*uintptr) >= max_entries)
930 fatal("%s line %d: "
931 "too many authorized keys files.",
932 filename, linenum);
933 cpptr[(*uintptr)++] = xstrdup(arg);
934 }
935 }
936 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100937
938 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000939 cpptr = (char **)&options->user_hostfiles;
940 uintptr = &options->num_user_hostfiles;
941 max_entries = SSH_MAX_HOSTS_FILES;
942 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +1000943
Damien Miller95def091999-11-25 00:26:21 +1100944 case oHostName:
945 charptr = &options->hostname;
946 goto parse_string;
947
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000948 case oHostKeyAlias:
949 charptr = &options->host_key_alias;
950 goto parse_string;
951
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000952 case oPreferredAuthentications:
953 charptr = &options->preferred_authentications;
954 goto parse_string;
955
Ben Lindstrome0f88042001-04-30 13:06:24 +0000956 case oBindAddress:
957 charptr = &options->bind_address;
958 goto parse_string;
959
Damien Miller7ea845e2010-02-12 09:21:02 +1100960 case oPKCS11Provider:
961 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000962 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000963
Damien Miller95def091999-11-25 00:26:21 +1100964 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +1100965 charptr = &options->proxy_command;
966parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000967 if (s == NULL)
968 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +1100969 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100970 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100971 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100972 return 0;
973
974 case oPort:
975 intptr = &options->port;
976parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000977 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000978 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100979 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000980 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100981 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100982
983 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000984 value = strtol(arg, &endofnumber, 0);
985 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100986 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100987 if (*activep && *intptr == -1)
988 *intptr = value;
989 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 case oConnectionAttempts:
992 intptr = &options->connection_attempts;
993 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100994
Damien Miller95def091999-11-25 00:26:21 +1100995 case oCipher:
996 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000997 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000998 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000999 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001000 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +11001001 if (value == -1)
1002 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001003 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +11001004 if (*activep && *intptr == -1)
1005 *intptr = value;
1006 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001007
Damien Miller78928792000-04-12 20:17:38 +10001008 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001009 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001010 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001011 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001012 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001013 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001014 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001015 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001016 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001017 break;
1018
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001019 case oMacs:
1020 arg = strdelim(&s);
1021 if (!arg || *arg == '\0')
1022 fatal("%.200s line %d: Missing argument.", filename, linenum);
1023 if (!mac_valid(arg))
1024 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001025 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001026 if (*activep && options->macs == NULL)
1027 options->macs = xstrdup(arg);
1028 break;
1029
Damien Millerd5f62bf2010-09-24 22:11:14 +10001030 case oKexAlgorithms:
1031 arg = strdelim(&s);
1032 if (!arg || *arg == '\0')
1033 fatal("%.200s line %d: Missing argument.",
1034 filename, linenum);
1035 if (!kex_names_valid(arg))
1036 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1037 filename, linenum, arg ? arg : "<NONE>");
1038 if (*activep && options->kex_algorithms == NULL)
1039 options->kex_algorithms = xstrdup(arg);
1040 break;
1041
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001042 case oHostKeyAlgorithms:
1043 arg = strdelim(&s);
1044 if (!arg || *arg == '\0')
1045 fatal("%.200s line %d: Missing argument.", filename, linenum);
1046 if (!key_names_valid2(arg))
1047 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001048 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001049 if (*activep && options->hostkeyalgorithms == NULL)
1050 options->hostkeyalgorithms = xstrdup(arg);
1051 break;
1052
Damien Miller78928792000-04-12 20:17:38 +10001053 case oProtocol:
1054 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +10001055 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001056 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001057 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001058 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +10001059 if (value == SSH_PROTO_UNKNOWN)
1060 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001061 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001062 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
1063 *intptr = value;
1064 break;
1065
Damien Miller95def091999-11-25 00:26:21 +11001066 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001067 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001068 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001069 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001070 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001071 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001072 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001073 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1074 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001075 break;
1076
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001077 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001078 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001079 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001080 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001081 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001082 fatal("%.200s line %d: Missing port argument.",
1083 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001084
Damien Millera699d952008-11-03 19:27:34 +11001085 if (opcode == oLocalForward ||
1086 opcode == oRemoteForward) {
1087 arg2 = strdelim(&s);
1088 if (arg2 == NULL || *arg2 == '\0')
1089 fatal("%.200s line %d: Missing target argument.",
1090 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001091
Damien Millera699d952008-11-03 19:27:34 +11001092 /* construct a string for parse_forward */
1093 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1094 } else if (opcode == oDynamicForward) {
1095 strlcpy(fwdarg, arg, sizeof(fwdarg));
1096 }
1097
1098 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001099 opcode == oDynamicForward ? 1 : 0,
1100 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001101 fatal("%.200s line %d: Bad forwarding specification.",
1102 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001103
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001104 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001105 if (opcode == oLocalForward ||
1106 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001107 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001108 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001109 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001110 }
Damien Miller95def091999-11-25 00:26:21 +11001111 break;
1112
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001113 case oClearAllForwardings:
1114 intptr = &options->clear_forwardings;
1115 goto parse_flag;
1116
Damien Miller95def091999-11-25 00:26:21 +11001117 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001118 if (cmdline)
1119 fatal("Host directive not supported as a command-line "
1120 "option");
Damien Miller95def091999-11-25 00:26:21 +11001121 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001122 arg2 = NULL;
1123 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1124 negated = *arg == '!';
1125 if (negated)
1126 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001127 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001128 if (negated) {
1129 debug("%.200s line %d: Skipping Host "
1130 "block because of negated match "
1131 "for %.100s", filename, linenum,
1132 arg);
1133 *activep = 0;
1134 break;
1135 }
1136 if (!*activep)
1137 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001138 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001139 }
Damien Millerfe924212011-05-15 08:44:45 +10001140 }
1141 if (*activep)
1142 debug("%.200s line %d: Applying options for %.100s",
1143 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001144 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001145 return 0;
1146
Damien Miller194fd902013-10-15 12:13:05 +11001147 case oMatch:
1148 if (cmdline)
1149 fatal("Host directive not supported as a command-line "
1150 "option");
1151 value = match_cfg_line(options, &s, pw, host,
1152 filename, linenum);
1153 if (value < 0)
1154 fatal("%.200s line %d: Bad Match condition", filename,
1155 linenum);
1156 *activep = value;
1157 break;
1158
Damien Miller95def091999-11-25 00:26:21 +11001159 case oEscapeChar:
1160 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001161 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001162 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001163 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001164 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001165 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1166 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +10001167 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +00001168 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +10001169 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001170 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +11001171 else {
1172 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001173 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001174 /* NOTREACHED */
1175 value = 0; /* Avoid compiler warning. */
1176 }
1177 if (*activep && *intptr == -1)
1178 *intptr = value;
1179 break;
1180
Damien Miller20a8f972003-05-18 20:50:30 +10001181 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001182 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001183 multistate_ptr = multistate_addressfamily;
1184 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001185
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001186 case oEnableSSHKeysign:
1187 intptr = &options->enable_ssh_keysign;
1188 goto parse_flag;
1189
Damien Millerbd394c32004-03-08 23:12:36 +11001190 case oIdentitiesOnly:
1191 intptr = &options->identities_only;
1192 goto parse_flag;
1193
Damien Miller509b0102003-12-17 16:33:10 +11001194 case oServerAliveInterval:
1195 intptr = &options->server_alive_interval;
1196 goto parse_time;
1197
1198 case oServerAliveCountMax:
1199 intptr = &options->server_alive_count_max;
1200 goto parse_int;
1201
Darren Tucker46bc0752004-05-02 22:11:30 +10001202 case oSendEnv:
1203 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1204 if (strchr(arg, '=') != NULL)
1205 fatal("%s line %d: Invalid environment name.",
1206 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001207 if (!*activep)
1208 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001209 if (options->num_send_env >= MAX_SEND_ENV)
1210 fatal("%s line %d: too many send env.",
1211 filename, linenum);
1212 options->send_env[options->num_send_env++] =
1213 xstrdup(arg);
1214 }
1215 break;
1216
Damien Miller0e220db2004-06-15 10:34:08 +10001217 case oControlPath:
1218 charptr = &options->control_path;
1219 goto parse_string;
1220
1221 case oControlMaster:
1222 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001223 multistate_ptr = multistate_controlmaster;
1224 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001225
Damien Millere11e1ea2010-08-03 16:04:46 +10001226 case oControlPersist:
1227 /* no/false/yes/true, or a time spec */
1228 intptr = &options->control_persist;
1229 arg = strdelim(&s);
1230 if (!arg || *arg == '\0')
1231 fatal("%.200s line %d: Missing ControlPersist"
1232 " argument.", filename, linenum);
1233 value = 0;
1234 value2 = 0; /* timeout */
1235 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1236 value = 0;
1237 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1238 value = 1;
1239 else if ((value2 = convtime(arg)) >= 0)
1240 value = 1;
1241 else
1242 fatal("%.200s line %d: Bad ControlPersist argument.",
1243 filename, linenum);
1244 if (*activep && *intptr == -1) {
1245 *intptr = value;
1246 options->control_persist_timeout = value2;
1247 }
1248 break;
1249
Damien Millere1776152005-03-01 21:47:37 +11001250 case oHashKnownHosts:
1251 intptr = &options->hash_known_hosts;
1252 goto parse_flag;
1253
Damien Millerd27b9472005-12-13 19:29:02 +11001254 case oTunnel:
1255 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001256 multistate_ptr = multistate_tunnel;
1257 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001258
1259 case oTunnelDevice:
1260 arg = strdelim(&s);
1261 if (!arg || *arg == '\0')
1262 fatal("%.200s line %d: Missing argument.", filename, linenum);
1263 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001264 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001265 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1266 if (*activep) {
1267 options->tun_local = value;
1268 options->tun_remote = value2;
1269 }
1270 break;
1271
1272 case oLocalCommand:
1273 charptr = &options->local_command;
1274 goto parse_command;
1275
1276 case oPermitLocalCommand:
1277 intptr = &options->permit_local_command;
1278 goto parse_flag;
1279
Damien Miller10288242008-06-30 00:04:03 +10001280 case oVisualHostKey:
1281 intptr = &options->visual_host_key;
1282 goto parse_flag;
1283
Damien Miller0dac6fb2010-11-20 15:19:38 +11001284 case oIPQoS:
1285 arg = strdelim(&s);
1286 if ((value = parse_ipqos(arg)) == -1)
1287 fatal("%s line %d: Bad IPQoS value: %s",
1288 filename, linenum, arg);
1289 arg = strdelim(&s);
1290 if (arg == NULL)
1291 value2 = value;
1292 else if ((value2 = parse_ipqos(arg)) == -1)
1293 fatal("%s line %d: Bad IPQoS value: %s",
1294 filename, linenum, arg);
1295 if (*activep) {
1296 options->ip_qos_interactive = value;
1297 options->ip_qos_bulk = value2;
1298 }
1299 break;
1300
Darren Tucker71e4d542009-07-06 07:12:27 +10001301 case oUseRoaming:
1302 intptr = &options->use_roaming;
1303 goto parse_flag;
1304
Damien Miller21771e22011-05-15 08:45:50 +10001305 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001306 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001307 multistate_ptr = multistate_requesttty;
1308 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001309
Darren Tucker07636982013-05-16 20:30:03 +10001310 case oIgnoreUnknown:
1311 charptr = &options->ignored_unknown;
1312 goto parse_string;
1313
Damien Miller1262b662013-08-21 02:44:24 +10001314 case oProxyUseFdpass:
1315 intptr = &options->proxy_use_fdpass;
1316 goto parse_flag;
1317
Damien Miller0faf7472013-10-17 11:47:23 +11001318 case oCanonicalDomains:
1319 value = options->num_canonical_domains != 0;
1320 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1321 valid_domain(arg, filename, linenum);
1322 if (!*activep || value)
1323 continue;
1324 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1325 fatal("%s line %d: too many hostname suffixes.",
1326 filename, linenum);
1327 options->canonical_domains[
1328 options->num_canonical_domains++] = xstrdup(arg);
1329 }
1330 break;
1331
Damien Miller38505592013-10-17 11:48:13 +11001332 case oCanonicalizePermittedCNAMEs:
Damien Miller0faf7472013-10-17 11:47:23 +11001333 value = options->num_permitted_cnames != 0;
1334 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1335 /* Either '*' for everything or 'list:list' */
1336 if (strcmp(arg, "*") == 0)
1337 arg2 = arg;
1338 else {
1339 lowercase(arg);
1340 if ((arg2 = strchr(arg, ':')) == NULL ||
1341 arg2[1] == '\0') {
1342 fatal("%s line %d: "
1343 "Invalid permitted CNAME \"%s\"",
1344 filename, linenum, arg);
1345 }
1346 *arg2 = '\0';
1347 arg2++;
1348 }
1349 if (!*activep || value)
1350 continue;
1351 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1352 fatal("%s line %d: too many permitted CNAMEs.",
1353 filename, linenum);
1354 cname = options->permitted_cnames +
1355 options->num_permitted_cnames++;
1356 cname->source_list = xstrdup(arg);
1357 cname->target_list = xstrdup(arg2);
1358 }
1359 break;
1360
Damien Miller38505592013-10-17 11:48:13 +11001361 case oCanonicalizeHostname:
1362 intptr = &options->canonicalize_hostname;
1363 multistate_ptr = multistate_canonicalizehostname;
Damien Miller0faf7472013-10-17 11:47:23 +11001364 goto parse_multistate;
1365
Damien Miller38505592013-10-17 11:48:13 +11001366 case oCanonicalizeMaxDots:
1367 intptr = &options->canonicalize_max_dots;
Damien Miller0faf7472013-10-17 11:47:23 +11001368 goto parse_int;
1369
Damien Miller38505592013-10-17 11:48:13 +11001370 case oCanonicalizeFallbackLocal:
1371 intptr = &options->canonicalize_fallback_local;
Damien Miller0faf7472013-10-17 11:47:23 +11001372 goto parse_flag;
1373
Ben Lindstrom4daea862002-06-09 20:04:02 +00001374 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001375 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001376 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001377 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001378
Damien Millerf9b3feb2003-05-16 11:38:32 +10001379 case oUnsupported:
1380 error("%s line %d: Unsupported option \"%s\"",
1381 filename, linenum, keyword);
1382 return 0;
1383
Damien Miller95def091999-11-25 00:26:21 +11001384 default:
1385 fatal("process_config_line: Unimplemented opcode %d", opcode);
1386 }
1387
1388 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001389 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001390 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001391 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001392 }
Damien Miller95def091999-11-25 00:26:21 +11001393 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394}
1395
1396
Damien Miller5428f641999-11-25 11:54:57 +11001397/*
1398 * Reads the config file and modifies the options accordingly. Options
1399 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001400 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001401 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001403int
Damien Miller194fd902013-10-15 12:13:05 +11001404read_config_file(const char *filename, struct passwd *pw, const char *host,
1405 Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406{
Damien Miller95def091999-11-25 00:26:21 +11001407 FILE *f;
1408 char line[1024];
1409 int active, linenum;
1410 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411
Damien Miller57a44762004-04-20 20:11:57 +10001412 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001413 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Darren Tuckeraefa3682013-04-05 11:18:35 +11001415 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001416 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001417
Damien Miller33793852004-06-15 10:27:55 +10001418 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001419 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001420 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001421 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001422 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001423 }
1424
Damien Miller95def091999-11-25 00:26:21 +11001425 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Damien Miller5428f641999-11-25 11:54:57 +11001427 /*
1428 * Mark that we are now processing the options. This flag is turned
1429 * on/off by Host specifications.
1430 */
Damien Miller95def091999-11-25 00:26:21 +11001431 active = 1;
1432 linenum = 0;
1433 while (fgets(line, sizeof(line), f)) {
1434 /* Update line number counter. */
1435 linenum++;
Damien Miller194fd902013-10-15 12:13:05 +11001436 if (process_config_line(options, pw, host, line, filename,
1437 linenum, &active, flags & SSHCONF_USERCONF) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001438 bad_options++;
1439 }
1440 fclose(f);
1441 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001442 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001443 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001444 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001445}
1446
Damien Miller5428f641999-11-25 11:54:57 +11001447/*
1448 * Initializes options to special values that indicate that they have not yet
1449 * been set. Read_config_file will only set options with this value. Options
1450 * are processed in the following order: command line, user config file,
1451 * system config file. Last, fill_default_options is called.
1452 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001453
Damien Miller4af51302000-04-16 11:18:38 +10001454void
Damien Miller95def091999-11-25 00:26:21 +11001455initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001456{
Damien Miller95def091999-11-25 00:26:21 +11001457 memset(options, 'X', sizeof(*options));
1458 options->forward_agent = -1;
1459 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001460 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001461 options->forward_x11_timeout = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001462 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001463 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001464 options->gateway_ports = -1;
1465 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001466 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001467 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001468 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001469 options->gss_authentication = -1;
1470 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001471 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001472 options->kbd_interactive_authentication = -1;
1473 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001474 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001475 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001476 options->batch_mode = -1;
1477 options->check_host_ip = -1;
1478 options->strict_host_key_checking = -1;
1479 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001480 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001481 options->compression_level = -1;
1482 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001483 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001484 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001485 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001486 options->number_of_password_prompts = -1;
1487 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001488 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001489 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001490 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001491 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001492 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001493 options->num_identity_files = 0;
1494 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001495 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001496 options->proxy_command = NULL;
1497 options->user = NULL;
1498 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001499 options->num_system_hostfiles = 0;
1500 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001501 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001502 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001503 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001504 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001505 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +11001506 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001507 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001508 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001509 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001510 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001511 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001512 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001513 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001514 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001515 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001516 options->server_alive_interval = -1;
1517 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001518 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001519 options->control_path = NULL;
1520 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001521 options->control_persist = -1;
1522 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001523 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001524 options->tun_open = -1;
1525 options->tun_local = -1;
1526 options->tun_remote = -1;
1527 options->local_command = NULL;
1528 options->permit_local_command = -1;
Darren Tucker71e4d542009-07-06 07:12:27 +10001529 options->use_roaming = -1;
Damien Miller10288242008-06-30 00:04:03 +10001530 options->visual_host_key = -1;
Damien Miller01ed2272008-11-05 16:20:46 +11001531 options->zero_knowledge_password_authentication = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001532 options->ip_qos_interactive = -1;
1533 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001534 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001535 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001536 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001537 options->num_canonical_domains = 0;
1538 options->num_permitted_cnames = 0;
Damien Miller38505592013-10-17 11:48:13 +11001539 options->canonicalize_max_dots = -1;
1540 options->canonicalize_fallback_local = -1;
1541 options->canonicalize_hostname = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001542}
1543
Damien Miller5428f641999-11-25 11:54:57 +11001544/*
1545 * Called after processing other sources of option data, this fills those
1546 * options for which no value has been specified with their default values.
1547 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001548
Damien Miller4af51302000-04-16 11:18:38 +10001549void
Damien Miller95def091999-11-25 00:26:21 +11001550fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001551{
Damien Miller95def091999-11-25 00:26:21 +11001552 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001553 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001554 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001555 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001556 if (options->forward_x11_trusted == -1)
1557 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001558 if (options->forward_x11_timeout == -1)
1559 options->forward_x11_timeout = 1200;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001560 if (options->exit_on_forward_failure == -1)
1561 options->exit_on_forward_failure = 0;
Damien Millerd3a18572000-06-07 19:55:44 +10001562 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001563 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +11001564 if (options->gateway_ports == -1)
1565 options->gateway_ports = 0;
1566 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001567 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001568 if (options->rsa_authentication == -1)
1569 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001570 if (options->pubkey_authentication == -1)
1571 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001572 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001573 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001574 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001575 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001576 if (options->gss_deleg_creds == -1)
1577 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001578 if (options->password_authentication == -1)
1579 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001580 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001581 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001582 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001583 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001584 if (options->hostbased_authentication == -1)
1585 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001586 if (options->batch_mode == -1)
1587 options->batch_mode = 0;
1588 if (options->check_host_ip == -1)
1589 options->check_host_ip = 1;
1590 if (options->strict_host_key_checking == -1)
1591 options->strict_host_key_checking = 2; /* 2 is default */
1592 if (options->compression == -1)
1593 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001594 if (options->tcp_keep_alive == -1)
1595 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001596 if (options->compression_level == -1)
1597 options->compression_level = 6;
1598 if (options->port == -1)
1599 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001600 if (options->address_family == -1)
1601 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001602 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001603 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001604 if (options->number_of_password_prompts == -1)
1605 options->number_of_password_prompts = 3;
1606 /* Selected in ssh_login(). */
1607 if (options->cipher == -1)
1608 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001609 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001610 /* options->macs, default set in myproposals.h */
Damien Millerd5f62bf2010-09-24 22:11:14 +10001611 /* options->kex_algorithms, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001612 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001613 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001614 options->protocol = SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001615 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001616 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001617 add_identity_file(options, "~/",
1618 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619 }
1620 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001621 add_identity_file(options, "~/",
1622 _PATH_SSH_CLIENT_ID_RSA, 0);
1623 add_identity_file(options, "~/",
1624 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001625#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001626 add_identity_file(options, "~/",
1627 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001628#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001629 }
Damien Millereba71ba2000-04-29 23:57:08 +10001630 }
Damien Miller95def091999-11-25 00:26:21 +11001631 if (options->escape_char == -1)
1632 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001633 if (options->num_system_hostfiles == 0) {
1634 options->system_hostfiles[options->num_system_hostfiles++] =
1635 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1636 options->system_hostfiles[options->num_system_hostfiles++] =
1637 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1638 }
1639 if (options->num_user_hostfiles == 0) {
1640 options->user_hostfiles[options->num_user_hostfiles++] =
1641 xstrdup(_PATH_SSH_USER_HOSTFILE);
1642 options->user_hostfiles[options->num_user_hostfiles++] =
1643 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1644 }
Damien Millerfcd93202002-02-05 12:26:34 +11001645 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001646 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001647 if (options->clear_forwardings == 1)
1648 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001649 if (options->no_host_authentication_for_localhost == - 1)
1650 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001651 if (options->identities_only == -1)
1652 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001653 if (options->enable_ssh_keysign == -1)
1654 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001655 if (options->rekey_limit == -1)
1656 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001657 if (options->rekey_interval == -1)
1658 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001659 if (options->verify_host_key_dns == -1)
1660 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001661 if (options->server_alive_interval == -1)
1662 options->server_alive_interval = 0;
1663 if (options->server_alive_count_max == -1)
1664 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001665 if (options->control_master == -1)
1666 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001667 if (options->control_persist == -1) {
1668 options->control_persist = 0;
1669 options->control_persist_timeout = 0;
1670 }
Damien Millere1776152005-03-01 21:47:37 +11001671 if (options->hash_known_hosts == -1)
1672 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001673 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001674 options->tun_open = SSH_TUNMODE_NO;
1675 if (options->tun_local == -1)
1676 options->tun_local = SSH_TUNID_ANY;
1677 if (options->tun_remote == -1)
1678 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001679 if (options->permit_local_command == -1)
1680 options->permit_local_command = 0;
Darren Tucker71e4d542009-07-06 07:12:27 +10001681 if (options->use_roaming == -1)
1682 options->use_roaming = 1;
Damien Miller10288242008-06-30 00:04:03 +10001683 if (options->visual_host_key == -1)
1684 options->visual_host_key = 0;
Damien Miller01ed2272008-11-05 16:20:46 +11001685 if (options->zero_knowledge_password_authentication == -1)
1686 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001687 if (options->ip_qos_interactive == -1)
1688 options->ip_qos_interactive = IPTOS_LOWDELAY;
1689 if (options->ip_qos_bulk == -1)
1690 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10001691 if (options->request_tty == -1)
1692 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10001693 if (options->proxy_use_fdpass == -1)
1694 options->proxy_use_fdpass = 0;
Damien Miller38505592013-10-17 11:48:13 +11001695 if (options->canonicalize_max_dots == -1)
1696 options->canonicalize_max_dots = 1;
1697 if (options->canonicalize_fallback_local == -1)
1698 options->canonicalize_fallback_local = 1;
1699 if (options->canonicalize_hostname == -1)
1700 options->canonicalize_hostname = SSH_CANONICALISE_NO;
Damien Millere9fc72e2013-10-15 12:14:12 +11001701#define CLEAR_ON_NONE(v) \
1702 do { \
1703 if (v != NULL && strcasecmp(v, "none") == 0) { \
1704 free(v); \
1705 v = NULL; \
1706 } \
1707 } while(0)
1708 CLEAR_ON_NONE(options->local_command);
1709 CLEAR_ON_NONE(options->proxy_command);
1710 CLEAR_ON_NONE(options->control_path);
Damien Miller95def091999-11-25 00:26:21 +11001711 /* options->user will be set in the main program if appropriate */
1712 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001713 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001714 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001715}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001716
1717/*
1718 * parse_forward
1719 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11001720 * dynamicfwd == 0
Damien Millerf91ee4c2005-03-01 21:24:33 +11001721 * [listenhost:]listenport:connecthost:connectport
Damien Millera699d952008-11-03 19:27:34 +11001722 * dynamicfwd == 1
1723 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11001724 * returns number of arguments parsed or zero on error
1725 */
1726int
Damien Miller4bf648f2009-02-14 16:28:21 +11001727parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001728{
1729 int i;
1730 char *p, *cp, *fwdarg[4];
1731
1732 memset(fwd, '\0', sizeof(*fwd));
1733
1734 cp = p = xstrdup(fwdspec);
1735
1736 /* skip leading spaces */
Darren Tucker03b1cdb2007-03-21 20:46:03 +11001737 while (isspace(*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001738 cp++;
1739
1740 for (i = 0; i < 4; ++i)
1741 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1742 break;
1743
Damien Millerf4b39532008-11-03 19:28:21 +11001744 /* Check for trailing garbage */
Damien Millerf91ee4c2005-03-01 21:24:33 +11001745 if (cp != NULL)
1746 i = 0; /* failure */
1747
1748 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11001749 case 1:
1750 fwd->listen_host = NULL;
1751 fwd->listen_port = a2port(fwdarg[0]);
1752 fwd->connect_host = xstrdup("socks");
1753 break;
1754
1755 case 2:
1756 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1757 fwd->listen_port = a2port(fwdarg[1]);
1758 fwd->connect_host = xstrdup("socks");
1759 break;
1760
Damien Millerf91ee4c2005-03-01 21:24:33 +11001761 case 3:
1762 fwd->listen_host = NULL;
1763 fwd->listen_port = a2port(fwdarg[0]);
1764 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1765 fwd->connect_port = a2port(fwdarg[2]);
1766 break;
1767
1768 case 4:
1769 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1770 fwd->listen_port = a2port(fwdarg[1]);
1771 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1772 fwd->connect_port = a2port(fwdarg[3]);
1773 break;
1774 default:
1775 i = 0; /* failure */
1776 }
1777
Darren Tuckera627d422013-06-02 07:31:17 +10001778 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001779
Damien Millera699d952008-11-03 19:27:34 +11001780 if (dynamicfwd) {
1781 if (!(i == 1 || i == 2))
1782 goto fail_free;
1783 } else {
1784 if (!(i == 3 || i == 4))
1785 goto fail_free;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001786 if (fwd->connect_port <= 0)
Damien Millera699d952008-11-03 19:27:34 +11001787 goto fail_free;
1788 }
1789
Damien Miller4bf648f2009-02-14 16:28:21 +11001790 if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001791 goto fail_free;
1792
1793 if (fwd->connect_host != NULL &&
1794 strlen(fwd->connect_host) >= NI_MAXHOST)
1795 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11001796 if (fwd->listen_host != NULL &&
1797 strlen(fwd->listen_host) >= NI_MAXHOST)
1798 goto fail_free;
1799
Damien Millerf91ee4c2005-03-01 21:24:33 +11001800
1801 return (i);
1802
1803 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10001804 free(fwd->connect_host);
1805 fwd->connect_host = NULL;
1806 free(fwd->listen_host);
1807 fwd->listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11001808 return (0);
1809}