blob: 9340effd075d7bbed88d0ce4852b18197d220cf7 [file] [log] [blame]
Damien Millere9fc72e2013-10-15 12:14:12 +11001/* $OpenBSD: readconf.c,v 1.207 2013/10/14 23:28:23 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,
Darren Tucker07636982013-05-16 20:30:03 +1000147 oIgnoredUnknownOption, oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148} OpCodes;
149
150/* Textual representations of the tokens. */
151
Damien Miller95def091999-11-25 00:26:21 +1100152static struct {
153 const char *name;
154 OpCodes opcode;
155} keywords[] = {
156 { "forwardagent", oForwardAgent },
157 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000158 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000159 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000160 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000161 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100162 { "gatewayports", oGatewayPorts },
163 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000164 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100165 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100166 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
167 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100168 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100169 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000170 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000171 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000172 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000173 { "challengeresponseauthentication", oChallengeResponseAuthentication },
174 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
175 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000176 { "kerberosauthentication", oUnsupported },
177 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000178 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000179#if defined(GSSAPI)
180 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000181 { "gssapidelegatecredentials", oGssDelegateCreds },
182#else
183 { "gssapiauthentication", oUnsupported },
184 { "gssapidelegatecredentials", oUnsupported },
185#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000186 { "fallbacktorsh", oDeprecated },
187 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100188 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100189 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100190 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100191 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000192 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100193 { "proxycommand", oProxyCommand },
194 { "port", oPort },
195 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000196 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000197 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000198 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100199 { "remoteforward", oRemoteForward },
200 { "localforward", oLocalForward },
201 { "user", oUser },
202 { "host", oHost },
Damien Miller194fd902013-10-15 12:13:05 +1100203 { "match", oMatch },
Damien Miller95def091999-11-25 00:26:21 +1100204 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100205 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000206 { "globalknownhostsfile2", oDeprecated },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100207 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000208 { "userknownhostsfile2", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100209 { "connectionattempts", oConnectionAttempts },
210 { "batchmode", oBatchMode },
211 { "checkhostip", oCheckHostIP },
212 { "stricthostkeychecking", oStrictHostKeyChecking },
213 { "compression", oCompression },
214 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100215 { "tcpkeepalive", oTCPKeepAlive },
216 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100217 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100218 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000219 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000220 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000221 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000222 { "bindaddress", oBindAddress },
Damien Miller7ea845e2010-02-12 09:21:02 +1100223#ifdef ENABLE_PKCS11
224 { "smartcarddevice", oPKCS11Provider },
225 { "pkcs11provider", oPKCS11Provider },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000226#else
227 { "smartcarddevice", oUnsupported },
Damien Miller7ea845e2010-02-12 09:21:02 +1100228 { "pkcs11provider", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000229#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100230 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000231 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000232 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100233 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000234 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000235 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000236 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100237 { "serveraliveinterval", oServerAliveInterval },
238 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000239 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000240 { "controlpath", oControlPath },
241 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000242 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100243 { "hashknownhosts", oHashKnownHosts },
Damien Millerd27b9472005-12-13 19:29:02 +1100244 { "tunnel", oTunnel },
245 { "tunneldevice", oTunnelDevice },
246 { "localcommand", oLocalCommand },
247 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000248 { "visualhostkey", oVisualHostKey },
Darren Tucker71e4d542009-07-06 07:12:27 +1000249 { "useroaming", oUseRoaming },
Damien Miller01ed2272008-11-05 16:20:46 +1100250#ifdef JPAKE
251 { "zeroknowledgepasswordauthentication",
252 oZeroKnowledgePasswordAuthentication },
253#else
254 { "zeroknowledgepasswordauthentication", oUnsupported },
255#endif
Damien Millerd5f62bf2010-09-24 22:11:14 +1000256 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100257 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000258 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000259 { "proxyusefdpass", oProxyUseFdpass },
Darren Tucker07636982013-05-16 20:30:03 +1000260 { "ignoreunknown", oIgnoreUnknown },
Damien Miller01ed2272008-11-05 16:20:46 +1100261
Ben Lindstrom65366a82001-12-06 16:32:47 +0000262 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100263};
264
Damien Miller5428f641999-11-25 11:54:57 +1100265/*
266 * Adds a local TCP/IP port forward to options. Never returns if there is an
267 * error.
268 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller4af51302000-04-16 11:18:38 +1000270void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100271add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272{
Damien Miller95def091999-11-25 00:26:21 +1100273 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000274#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100275 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100276 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000277 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100278#endif
Damien Miller232cfb12010-06-26 09:50:30 +1000279 options->local_forwards = xrealloc(options->local_forwards,
280 options->num_local_forwards + 1,
281 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100282 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100283
Damien Miller1a0442f2008-11-05 16:30:06 +1100284 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100285 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100286 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100287 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288}
289
Damien Miller5428f641999-11-25 11:54:57 +1100290/*
291 * Adds a remote TCP/IP port forward to options. Never returns if there is
292 * an error.
293 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294
Damien Miller4af51302000-04-16 11:18:38 +1000295void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100296add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297{
Damien Miller95def091999-11-25 00:26:21 +1100298 Forward *fwd;
Damien Miller232cfb12010-06-26 09:50:30 +1000299
300 options->remote_forwards = xrealloc(options->remote_forwards,
301 options->num_remote_forwards + 1,
302 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100303 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100304
Damien Miller1a0442f2008-11-05 16:30:06 +1100305 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100306 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100307 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100308 fwd->connect_port = newfwd->connect_port;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100309 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000310 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311}
312
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000313static void
314clear_forwardings(Options *options)
315{
316 int i;
317
Damien Millerf91ee4c2005-03-01 21:24:33 +1100318 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000319 free(options->local_forwards[i].listen_host);
320 free(options->local_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100321 }
Damien Miller232cfb12010-06-26 09:50:30 +1000322 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000323 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000324 options->local_forwards = NULL;
325 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000326 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100327 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000328 free(options->remote_forwards[i].listen_host);
329 free(options->remote_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100330 }
Damien Miller232cfb12010-06-26 09:50:30 +1000331 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000332 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000333 options->remote_forwards = NULL;
334 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000335 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100336 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000337}
338
Darren Tucker19104782013-04-05 11:13:08 +1100339void
340add_identity_file(Options *options, const char *dir, const char *filename,
341 int userprovided)
342{
343 char *path;
344
345 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
346 fatal("Too many identity files specified (max %d)",
347 SSH_MAX_IDENTITY_FILES);
348
349 if (dir == NULL) /* no dir, filename is absolute */
350 path = xstrdup(filename);
351 else
352 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
353
354 options->identity_file_userprovided[options->num_identity_files] =
355 userprovided;
356 options->identity_files[options->num_identity_files++] = path;
357}
358
Damien Miller194fd902013-10-15 12:13:05 +1100359int
360default_ssh_port(void)
361{
362 static int port;
363 struct servent *sp;
364
365 if (port == 0) {
366 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
367 port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
368 }
369 return port;
370}
371
372/*
373 * Execute a command in a shell.
374 * Return its exit status or -1 on abnormal exit.
375 */
376static int
377execute_in_shell(const char *cmd)
378{
379 char *shell, *command_string;
380 pid_t pid;
381 int devnull, status;
382 extern uid_t original_real_uid;
383
384 if ((shell = getenv("SHELL")) == NULL)
385 shell = _PATH_BSHELL;
386
387 /*
388 * Use "exec" to avoid "sh -c" processes on some platforms
389 * (e.g. Solaris)
390 */
391 xasprintf(&command_string, "exec %s", cmd);
392
393 /* Need this to redirect subprocess stdin/out */
394 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
395 fatal("open(/dev/null): %s", strerror(errno));
396
397 debug("Executing command: '%.500s'", cmd);
398
399 /* Fork and execute the command. */
400 if ((pid = fork()) == 0) {
401 char *argv[4];
402
403 /* Child. Permanently give up superuser privileges. */
404 permanently_drop_suid(original_real_uid);
405
406 /* Redirect child stdin and stdout. Leave stderr */
407 if (dup2(devnull, STDIN_FILENO) == -1)
408 fatal("dup2: %s", strerror(errno));
409 if (dup2(devnull, STDOUT_FILENO) == -1)
410 fatal("dup2: %s", strerror(errno));
411 if (devnull > STDERR_FILENO)
412 close(devnull);
413 closefrom(STDERR_FILENO + 1);
414
415 argv[0] = shell;
416 argv[1] = "-c";
417 argv[2] = command_string;
418 argv[3] = NULL;
419
420 execv(argv[0], argv);
421 error("Unable to execute '%.100s': %s", cmd, strerror(errno));
422 /* Die with signal to make this error apparent to parent. */
423 signal(SIGTERM, SIG_DFL);
424 kill(getpid(), SIGTERM);
425 _exit(1);
426 }
427 /* Parent. */
428 if (pid < 0)
429 fatal("%s: fork: %.100s", __func__, strerror(errno));
430
431 close(devnull);
432 free(command_string);
433
434 while (waitpid(pid, &status, 0) == -1) {
435 if (errno != EINTR && errno != EAGAIN)
436 fatal("%s: waitpid: %s", __func__, strerror(errno));
437 }
438 if (!WIFEXITED(status)) {
439 error("command '%.100s' exited abnormally", cmd);
440 return -1;
441 }
442 debug3("command returned status %d", WEXITSTATUS(status));
443 return WEXITSTATUS(status);
444}
445
446/*
447 * Parse and execute a Match directive.
448 */
449static int
450match_cfg_line(Options *options, char **condition, struct passwd *pw,
451 const char *host_arg, const char *filename, int linenum)
452{
453 char *arg, *attrib, *cmd, *cp = *condition;
454 const char *ruser, *host;
455 int r, port, result = 1;
456 size_t len;
457 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
458
459 /*
460 * Configuration is likely to be incomplete at this point so we
461 * must be prepared to use default values.
462 */
463 port = options->port <= 0 ? default_ssh_port() : options->port;
464 ruser = options->user == NULL ? pw->pw_name : options->user;
465 host = options->hostname == NULL ? host_arg : options->hostname;
466
467 debug3("checking match for '%s' host %s", cp, host);
468 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
469 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
470 error("Missing Match criteria for %s", attrib);
471 return -1;
472 }
473 len = strlen(arg);
474 if (strcasecmp(attrib, "host") == 0) {
475 if (match_hostname(host, arg, len) != 1)
476 result = 0;
477 else
478 debug("%.200s line %d: matched 'Host %.100s' ",
479 filename, linenum, host);
480 } else if (strcasecmp(attrib, "originalhost") == 0) {
481 if (match_hostname(host_arg, arg, len) != 1)
482 result = 0;
483 else
484 debug("%.200s line %d: matched "
485 "'OriginalHost %.100s' ",
486 filename, linenum, host_arg);
487 } else if (strcasecmp(attrib, "user") == 0) {
488 if (match_pattern_list(ruser, arg, len, 0) != 1)
489 result = 0;
490 else
491 debug("%.200s line %d: matched 'User %.100s' ",
492 filename, linenum, ruser);
493 } else if (strcasecmp(attrib, "localuser") == 0) {
494 if (match_pattern_list(pw->pw_name, arg, len, 0) != 1)
495 result = 0;
496 else
497 debug("%.200s line %d: matched "
498 "'LocalUser %.100s' ",
499 filename, linenum, pw->pw_name);
500 } else if (strcasecmp(attrib, "command") == 0) {
501 if (gethostname(thishost, sizeof(thishost)) == -1)
502 fatal("gethostname: %s", strerror(errno));
503 strlcpy(shorthost, thishost, sizeof(shorthost));
504 shorthost[strcspn(thishost, ".")] = '\0';
505 snprintf(portstr, sizeof(portstr), "%d", port);
506
507 cmd = percent_expand(arg,
508 "L", shorthost,
509 "d", pw->pw_dir,
510 "h", host,
511 "l", thishost,
512 "n", host_arg,
513 "p", portstr,
514 "r", ruser,
515 "u", pw->pw_name,
516 (char *)NULL);
517 r = execute_in_shell(cmd);
518 if (r == -1) {
519 fatal("%.200s line %d: match command '%.100s' "
520 "error", filename, linenum, cmd);
521 } else if (r == 0) {
522 debug("%.200s line %d: matched "
523 "'Command \"%.100s\"' ",
524 filename, linenum, cmd);
525 } else
526 result = 0;
527 free(cmd);
528 } else {
529 error("Unsupported Match attribute %s", attrib);
530 return -1;
531 }
532 }
533 debug3("match %sfound", result ? "" : "not ");
534 *condition = cp;
535 return result;
536}
537
Damien Miller5428f641999-11-25 11:54:57 +1100538/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000539 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100540 */
Damien Miller4af51302000-04-16 11:18:38 +1000541static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000542parse_token(const char *cp, const char *filename, int linenum,
543 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544{
Darren Tucker07636982013-05-16 20:30:03 +1000545 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000548 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100549 return keywords[i].opcode;
Darren Tucker07636982013-05-16 20:30:03 +1000550 if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,
551 strlen(ignored_unknown), 1) == 1)
552 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000553 error("%s: line %d: Bad configuration option: %s",
554 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100555 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556}
557
Damien Millere9fc72e2013-10-15 12:14:12 +1100558/* Multistate option parsing */
559struct multistate {
560 char *key;
561 int value;
562};
563static const struct multistate multistate_flag[] = {
564 { "true", 1 },
565 { "false", 0 },
566 { "yes", 1 },
567 { "no", 0 },
568 { NULL, -1 }
569};
570static const struct multistate multistate_yesnoask[] = {
571 { "true", 1 },
572 { "false", 0 },
573 { "yes", 1 },
574 { "no", 0 },
575 { "ask", 2 },
576 { NULL, -1 }
577};
578static const struct multistate multistate_addressfamily[] = {
579 { "inet", AF_INET },
580 { "inet6", AF_INET6 },
581 { "any", AF_UNSPEC },
582 { NULL, -1 }
583};
584static const struct multistate multistate_controlmaster[] = {
585 { "true", SSHCTL_MASTER_YES },
586 { "yes", SSHCTL_MASTER_YES },
587 { "false", SSHCTL_MASTER_NO },
588 { "no", SSHCTL_MASTER_NO },
589 { "auto", SSHCTL_MASTER_AUTO },
590 { "ask", SSHCTL_MASTER_ASK },
591 { "autoask", SSHCTL_MASTER_AUTO_ASK },
592 { NULL, -1 }
593};
594static const struct multistate multistate_tunnel[] = {
595 { "ethernet", SSH_TUNMODE_ETHERNET },
596 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
597 { "true", SSH_TUNMODE_DEFAULT },
598 { "yes", SSH_TUNMODE_DEFAULT },
599 { "false", SSH_TUNMODE_NO },
600 { "no", SSH_TUNMODE_NO },
601 { NULL, -1 }
602};
603static const struct multistate multistate_requesttty[] = {
604 { "true", REQUEST_TTY_YES },
605 { "yes", REQUEST_TTY_YES },
606 { "false", REQUEST_TTY_NO },
607 { "no", REQUEST_TTY_NO },
608 { "force", REQUEST_TTY_FORCE },
609 { "auto", REQUEST_TTY_AUTO },
610 { NULL, -1 }
611};
612
Damien Miller5428f641999-11-25 11:54:57 +1100613/*
614 * Processes a single option line as used in the configuration files. This
615 * only sets those values that have not already been set.
616 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100617#define WHITESPACE " \t\r\n"
Damien Miller2ccf6611999-11-15 15:25:10 +1100618int
Damien Miller194fd902013-10-15 12:13:05 +1100619process_config_line(Options *options, struct passwd *pw, const char *host,
620 char *line, const char *filename, int linenum, int *activep, int userconfig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621{
Damien Miller295ee632011-05-29 21:42:31 +1000622 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
623 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000624 u_int i, *uintptr, max_entries = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100625 int negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100626 LogLevel *log_level_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000627 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100628 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100629 Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100630 const struct multistate *multistate_ptr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000631
Damien Miller194fd902013-10-15 12:13:05 +1100632 if (activep == NULL) { /* We are processing a command line directive */
633 cmdline = 1;
634 activep = &cmdline;
635 }
636
Damien Millerc652cac2003-05-14 13:40:54 +1000637 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100638 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000639 if (strchr(WHITESPACE, line[len]) == NULL)
640 break;
641 line[len] = '\0';
642 }
643
Damien Millerbe484b52000-07-15 14:14:16 +1000644 s = line;
645 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100646 if ((keyword = strdelim(&s)) == NULL)
647 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000648 /* Ignore leading whitespace. */
649 if (*keyword == '\0')
650 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000651 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100652 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000653 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100654 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655
Darren Tucker07636982013-05-16 20:30:03 +1000656 opcode = parse_token(keyword, filename, linenum,
657 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
Damien Miller95def091999-11-25 00:26:21 +1100659 switch (opcode) {
660 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100661 /* don't panic, but count bad options */
662 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100663 /* NOTREACHED */
Darren Tucker07636982013-05-16 20:30:03 +1000664 case oIgnoredUnknownOption:
665 debug("%s line %d: Ignored unknown option \"%s\"",
666 filename, linenum, keyword);
667 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000668 case oConnectTimeout:
669 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100670parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000671 arg = strdelim(&s);
672 if (!arg || *arg == '\0')
673 fatal("%s line %d: missing time value.",
674 filename, linenum);
675 if ((value = convtime(arg)) == -1)
676 fatal("%s line %d: invalid time value.",
677 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100678 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000679 *intptr = value;
680 break;
681
Damien Miller95def091999-11-25 00:26:21 +1100682 case oForwardAgent:
683 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100684 parse_flag:
685 multistate_ptr = multistate_flag;
686 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000687 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000688 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100689 fatal("%s line %d: missing argument.",
690 filename, linenum);
691 value = -1;
692 for (i = 0; multistate_ptr[i].key != NULL; i++) {
693 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
694 value = multistate_ptr[i].value;
695 break;
696 }
697 }
698 if (value == -1)
699 fatal("%s line %d: unsupported option \"%s\".",
700 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100701 if (*activep && *intptr == -1)
702 *intptr = value;
703 break;
704
705 case oForwardX11:
706 intptr = &options->forward_x11;
707 goto parse_flag;
708
Darren Tucker0a118da2003-10-15 15:54:32 +1000709 case oForwardX11Trusted:
710 intptr = &options->forward_x11_trusted;
711 goto parse_flag;
Damien Miller1ab6a512010-06-26 10:02:24 +1000712
713 case oForwardX11Timeout:
714 intptr = &options->forward_x11_timeout;
715 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000716
Damien Miller95def091999-11-25 00:26:21 +1100717 case oGatewayPorts:
718 intptr = &options->gateway_ports;
719 goto parse_flag;
720
Darren Tuckere7d4b192006-07-12 22:17:10 +1000721 case oExitOnForwardFailure:
722 intptr = &options->exit_on_forward_failure;
723 goto parse_flag;
724
Damien Miller95def091999-11-25 00:26:21 +1100725 case oUsePrivilegedPort:
726 intptr = &options->use_privileged_port;
727 goto parse_flag;
728
Damien Miller95def091999-11-25 00:26:21 +1100729 case oPasswordAuthentication:
730 intptr = &options->password_authentication;
731 goto parse_flag;
732
Damien Miller01ed2272008-11-05 16:20:46 +1100733 case oZeroKnowledgePasswordAuthentication:
734 intptr = &options->zero_knowledge_password_authentication;
735 goto parse_flag;
736
Damien Miller874d77b2000-10-14 16:23:11 +1100737 case oKbdInteractiveAuthentication:
738 intptr = &options->kbd_interactive_authentication;
739 goto parse_flag;
740
741 case oKbdInteractiveDevices:
742 charptr = &options->kbd_interactive_devices;
743 goto parse_string;
744
Damien Miller0bc1bd82000-11-13 22:57:25 +1100745 case oPubkeyAuthentication:
746 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000747 goto parse_flag;
748
Damien Miller95def091999-11-25 00:26:21 +1100749 case oRSAAuthentication:
750 intptr = &options->rsa_authentication;
751 goto parse_flag;
752
753 case oRhostsRSAAuthentication:
754 intptr = &options->rhosts_rsa_authentication;
755 goto parse_flag;
756
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000757 case oHostbasedAuthentication:
758 intptr = &options->hostbased_authentication;
759 goto parse_flag;
760
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000761 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000762 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100763 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000764
Darren Tucker0efd1552003-08-26 11:49:55 +1000765 case oGssAuthentication:
766 intptr = &options->gss_authentication;
767 goto parse_flag;
768
769 case oGssDelegateCreds:
770 intptr = &options->gss_deleg_creds;
771 goto parse_flag;
772
Damien Miller95def091999-11-25 00:26:21 +1100773 case oBatchMode:
774 intptr = &options->batch_mode;
775 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776
Damien Miller95def091999-11-25 00:26:21 +1100777 case oCheckHostIP:
778 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000779 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000780
Damien Miller37876e92003-05-15 10:19:46 +1000781 case oVerifyHostKeyDNS:
782 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100783 multistate_ptr = multistate_yesnoask;
784 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000785
Damien Miller95def091999-11-25 00:26:21 +1100786 case oStrictHostKeyChecking:
787 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100788 multistate_ptr = multistate_yesnoask;
789 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790
Damien Miller95def091999-11-25 00:26:21 +1100791 case oCompression:
792 intptr = &options->compression;
793 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000794
Damien Miller12c150e2003-12-17 16:31:10 +1100795 case oTCPKeepAlive:
796 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100797 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000799 case oNoHostAuthenticationForLocalhost:
800 intptr = &options->no_host_authentication_for_localhost;
801 goto parse_flag;
802
Damien Miller95def091999-11-25 00:26:21 +1100803 case oNumberOfPasswordPrompts:
804 intptr = &options->number_of_password_prompts;
805 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000806
Damien Miller95def091999-11-25 00:26:21 +1100807 case oCompressionLevel:
808 intptr = &options->compression_level;
809 goto parse_int;
810
Damien Millera5539d22003-04-09 20:50:06 +1000811 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +1000812 arg = strdelim(&s);
813 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000814 fatal("%.200s line %d: Missing argument.", filename,
815 linenum);
816 if (strcmp(arg, "default") == 0) {
817 val64 = 0;
818 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +1000819 if (scan_scaled(arg, &val64) == -1)
820 fatal("%.200s line %d: Bad number '%s': %s",
821 filename, linenum, arg, strerror(errno));
822 /* check for too-large or too-small limits */
823 if (val64 > UINT_MAX)
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000824 fatal("%.200s line %d: RekeyLimit too large",
825 filename, linenum);
826 if (val64 != 0 && val64 < 16)
827 fatal("%.200s line %d: RekeyLimit too small",
828 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +1000829 }
Damien Miller3dff1762008-02-10 22:25:52 +1100830 if (*activep && options->rekey_limit == -1)
831 options->rekey_limit = (u_int32_t)val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000832 if (s != NULL) { /* optional rekey interval present */
833 if (strcmp(s, "none") == 0) {
834 (void)strdelim(&s); /* discard */
835 break;
836 }
837 intptr = &options->rekey_interval;
838 goto parse_time;
839 }
Damien Millera5539d22003-04-09 20:50:06 +1000840 break;
841
Damien Miller95def091999-11-25 00:26:21 +1100842 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000843 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000844 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100845 fatal("%.200s line %d: Missing argument.", filename, linenum);
846 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100847 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000848 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100849 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100850 filename, linenum, SSH_MAX_IDENTITY_FILES);
Darren Tuckeraefa3682013-04-05 11:18:35 +1100851 add_identity_file(options, NULL, arg, userconfig);
Damien Miller95def091999-11-25 00:26:21 +1100852 }
853 break;
854
Damien Millerd3a18572000-06-07 19:55:44 +1000855 case oXAuthLocation:
856 charptr=&options->xauth_location;
857 goto parse_string;
858
Damien Miller95def091999-11-25 00:26:21 +1100859 case oUser:
860 charptr = &options->user;
861parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000862 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000863 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +1000864 fatal("%.200s line %d: Missing argument.",
865 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100866 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000867 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100868 break;
869
870 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000871 cpptr = (char **)&options->system_hostfiles;
872 uintptr = &options->num_system_hostfiles;
873 max_entries = SSH_MAX_HOSTS_FILES;
874parse_char_array:
875 if (*activep && *uintptr == 0) {
876 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
877 if ((*uintptr) >= max_entries)
878 fatal("%s line %d: "
879 "too many authorized keys files.",
880 filename, linenum);
881 cpptr[(*uintptr)++] = xstrdup(arg);
882 }
883 }
884 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100885
886 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000887 cpptr = (char **)&options->user_hostfiles;
888 uintptr = &options->num_user_hostfiles;
889 max_entries = SSH_MAX_HOSTS_FILES;
890 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +1000891
Damien Miller95def091999-11-25 00:26:21 +1100892 case oHostName:
893 charptr = &options->hostname;
894 goto parse_string;
895
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000896 case oHostKeyAlias:
897 charptr = &options->host_key_alias;
898 goto parse_string;
899
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000900 case oPreferredAuthentications:
901 charptr = &options->preferred_authentications;
902 goto parse_string;
903
Ben Lindstrome0f88042001-04-30 13:06:24 +0000904 case oBindAddress:
905 charptr = &options->bind_address;
906 goto parse_string;
907
Damien Miller7ea845e2010-02-12 09:21:02 +1100908 case oPKCS11Provider:
909 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000910 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000911
Damien Miller95def091999-11-25 00:26:21 +1100912 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +1100913 charptr = &options->proxy_command;
914parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000915 if (s == NULL)
916 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +1100917 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100918 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100919 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100920 return 0;
921
922 case oPort:
923 intptr = &options->port;
924parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000925 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000926 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100927 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000928 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100929 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100930
931 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000932 value = strtol(arg, &endofnumber, 0);
933 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100934 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100935 if (*activep && *intptr == -1)
936 *intptr = value;
937 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000938
Damien Miller95def091999-11-25 00:26:21 +1100939 case oConnectionAttempts:
940 intptr = &options->connection_attempts;
941 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100942
Damien Miller95def091999-11-25 00:26:21 +1100943 case oCipher:
944 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000945 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000946 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000947 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000948 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100949 if (value == -1)
950 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100951 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100952 if (*activep && *intptr == -1)
953 *intptr = value;
954 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955
Damien Miller78928792000-04-12 20:17:38 +1000956 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000957 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000958 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000959 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000960 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000961 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100962 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000963 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000964 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000965 break;
966
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000967 case oMacs:
968 arg = strdelim(&s);
969 if (!arg || *arg == '\0')
970 fatal("%.200s line %d: Missing argument.", filename, linenum);
971 if (!mac_valid(arg))
972 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100973 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000974 if (*activep && options->macs == NULL)
975 options->macs = xstrdup(arg);
976 break;
977
Damien Millerd5f62bf2010-09-24 22:11:14 +1000978 case oKexAlgorithms:
979 arg = strdelim(&s);
980 if (!arg || *arg == '\0')
981 fatal("%.200s line %d: Missing argument.",
982 filename, linenum);
983 if (!kex_names_valid(arg))
984 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
985 filename, linenum, arg ? arg : "<NONE>");
986 if (*activep && options->kex_algorithms == NULL)
987 options->kex_algorithms = xstrdup(arg);
988 break;
989
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000990 case oHostKeyAlgorithms:
991 arg = strdelim(&s);
992 if (!arg || *arg == '\0')
993 fatal("%.200s line %d: Missing argument.", filename, linenum);
994 if (!key_names_valid2(arg))
995 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100996 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000997 if (*activep && options->hostkeyalgorithms == NULL)
998 options->hostkeyalgorithms = xstrdup(arg);
999 break;
1000
Damien Miller78928792000-04-12 20:17:38 +10001001 case oProtocol:
1002 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +10001003 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001004 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001005 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001006 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +10001007 if (value == SSH_PROTO_UNKNOWN)
1008 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001009 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001010 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
1011 *intptr = value;
1012 break;
1013
Damien Miller95def091999-11-25 00:26:21 +11001014 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001015 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001016 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001017 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001018 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001019 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001020 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001021 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1022 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001023 break;
1024
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001025 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001026 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001027 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001028 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001029 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001030 fatal("%.200s line %d: Missing port argument.",
1031 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001032
Damien Millera699d952008-11-03 19:27:34 +11001033 if (opcode == oLocalForward ||
1034 opcode == oRemoteForward) {
1035 arg2 = strdelim(&s);
1036 if (arg2 == NULL || *arg2 == '\0')
1037 fatal("%.200s line %d: Missing target argument.",
1038 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001039
Damien Millera699d952008-11-03 19:27:34 +11001040 /* construct a string for parse_forward */
1041 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1042 } else if (opcode == oDynamicForward) {
1043 strlcpy(fwdarg, arg, sizeof(fwdarg));
1044 }
1045
1046 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001047 opcode == oDynamicForward ? 1 : 0,
1048 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001049 fatal("%.200s line %d: Bad forwarding specification.",
1050 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001051
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001052 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001053 if (opcode == oLocalForward ||
1054 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001055 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001056 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001057 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001058 }
Damien Miller95def091999-11-25 00:26:21 +11001059 break;
1060
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001061 case oClearAllForwardings:
1062 intptr = &options->clear_forwardings;
1063 goto parse_flag;
1064
Damien Miller95def091999-11-25 00:26:21 +11001065 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001066 if (cmdline)
1067 fatal("Host directive not supported as a command-line "
1068 "option");
Damien Miller95def091999-11-25 00:26:21 +11001069 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001070 arg2 = NULL;
1071 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1072 negated = *arg == '!';
1073 if (negated)
1074 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001075 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001076 if (negated) {
1077 debug("%.200s line %d: Skipping Host "
1078 "block because of negated match "
1079 "for %.100s", filename, linenum,
1080 arg);
1081 *activep = 0;
1082 break;
1083 }
1084 if (!*activep)
1085 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001086 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001087 }
Damien Millerfe924212011-05-15 08:44:45 +10001088 }
1089 if (*activep)
1090 debug("%.200s line %d: Applying options for %.100s",
1091 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001092 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001093 return 0;
1094
Damien Miller194fd902013-10-15 12:13:05 +11001095 case oMatch:
1096 if (cmdline)
1097 fatal("Host directive not supported as a command-line "
1098 "option");
1099 value = match_cfg_line(options, &s, pw, host,
1100 filename, linenum);
1101 if (value < 0)
1102 fatal("%.200s line %d: Bad Match condition", filename,
1103 linenum);
1104 *activep = value;
1105 break;
1106
Damien Miller95def091999-11-25 00:26:21 +11001107 case oEscapeChar:
1108 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001109 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001110 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001111 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001112 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001113 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1114 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +10001115 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +00001116 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +10001117 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001118 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +11001119 else {
1120 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001121 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001122 /* NOTREACHED */
1123 value = 0; /* Avoid compiler warning. */
1124 }
1125 if (*activep && *intptr == -1)
1126 *intptr = value;
1127 break;
1128
Damien Miller20a8f972003-05-18 20:50:30 +10001129 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001130 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001131 multistate_ptr = multistate_addressfamily;
1132 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001133
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001134 case oEnableSSHKeysign:
1135 intptr = &options->enable_ssh_keysign;
1136 goto parse_flag;
1137
Damien Millerbd394c32004-03-08 23:12:36 +11001138 case oIdentitiesOnly:
1139 intptr = &options->identities_only;
1140 goto parse_flag;
1141
Damien Miller509b0102003-12-17 16:33:10 +11001142 case oServerAliveInterval:
1143 intptr = &options->server_alive_interval;
1144 goto parse_time;
1145
1146 case oServerAliveCountMax:
1147 intptr = &options->server_alive_count_max;
1148 goto parse_int;
1149
Darren Tucker46bc0752004-05-02 22:11:30 +10001150 case oSendEnv:
1151 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1152 if (strchr(arg, '=') != NULL)
1153 fatal("%s line %d: Invalid environment name.",
1154 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001155 if (!*activep)
1156 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001157 if (options->num_send_env >= MAX_SEND_ENV)
1158 fatal("%s line %d: too many send env.",
1159 filename, linenum);
1160 options->send_env[options->num_send_env++] =
1161 xstrdup(arg);
1162 }
1163 break;
1164
Damien Miller0e220db2004-06-15 10:34:08 +10001165 case oControlPath:
1166 charptr = &options->control_path;
1167 goto parse_string;
1168
1169 case oControlMaster:
1170 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001171 multistate_ptr = multistate_controlmaster;
1172 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001173
Damien Millere11e1ea2010-08-03 16:04:46 +10001174 case oControlPersist:
1175 /* no/false/yes/true, or a time spec */
1176 intptr = &options->control_persist;
1177 arg = strdelim(&s);
1178 if (!arg || *arg == '\0')
1179 fatal("%.200s line %d: Missing ControlPersist"
1180 " argument.", filename, linenum);
1181 value = 0;
1182 value2 = 0; /* timeout */
1183 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1184 value = 0;
1185 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1186 value = 1;
1187 else if ((value2 = convtime(arg)) >= 0)
1188 value = 1;
1189 else
1190 fatal("%.200s line %d: Bad ControlPersist argument.",
1191 filename, linenum);
1192 if (*activep && *intptr == -1) {
1193 *intptr = value;
1194 options->control_persist_timeout = value2;
1195 }
1196 break;
1197
Damien Millere1776152005-03-01 21:47:37 +11001198 case oHashKnownHosts:
1199 intptr = &options->hash_known_hosts;
1200 goto parse_flag;
1201
Damien Millerd27b9472005-12-13 19:29:02 +11001202 case oTunnel:
1203 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001204 multistate_ptr = multistate_tunnel;
1205 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001206
1207 case oTunnelDevice:
1208 arg = strdelim(&s);
1209 if (!arg || *arg == '\0')
1210 fatal("%.200s line %d: Missing argument.", filename, linenum);
1211 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001212 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001213 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1214 if (*activep) {
1215 options->tun_local = value;
1216 options->tun_remote = value2;
1217 }
1218 break;
1219
1220 case oLocalCommand:
1221 charptr = &options->local_command;
1222 goto parse_command;
1223
1224 case oPermitLocalCommand:
1225 intptr = &options->permit_local_command;
1226 goto parse_flag;
1227
Damien Miller10288242008-06-30 00:04:03 +10001228 case oVisualHostKey:
1229 intptr = &options->visual_host_key;
1230 goto parse_flag;
1231
Damien Miller0dac6fb2010-11-20 15:19:38 +11001232 case oIPQoS:
1233 arg = strdelim(&s);
1234 if ((value = parse_ipqos(arg)) == -1)
1235 fatal("%s line %d: Bad IPQoS value: %s",
1236 filename, linenum, arg);
1237 arg = strdelim(&s);
1238 if (arg == NULL)
1239 value2 = value;
1240 else if ((value2 = parse_ipqos(arg)) == -1)
1241 fatal("%s line %d: Bad IPQoS value: %s",
1242 filename, linenum, arg);
1243 if (*activep) {
1244 options->ip_qos_interactive = value;
1245 options->ip_qos_bulk = value2;
1246 }
1247 break;
1248
Darren Tucker71e4d542009-07-06 07:12:27 +10001249 case oUseRoaming:
1250 intptr = &options->use_roaming;
1251 goto parse_flag;
1252
Damien Miller21771e22011-05-15 08:45:50 +10001253 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001254 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001255 multistate_ptr = multistate_requesttty;
1256 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001257
Darren Tucker07636982013-05-16 20:30:03 +10001258 case oIgnoreUnknown:
1259 charptr = &options->ignored_unknown;
1260 goto parse_string;
1261
Damien Miller1262b662013-08-21 02:44:24 +10001262 case oProxyUseFdpass:
1263 intptr = &options->proxy_use_fdpass;
1264 goto parse_flag;
1265
Ben Lindstrom4daea862002-06-09 20:04:02 +00001266 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001267 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001268 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001269 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001270
Damien Millerf9b3feb2003-05-16 11:38:32 +10001271 case oUnsupported:
1272 error("%s line %d: Unsupported option \"%s\"",
1273 filename, linenum, keyword);
1274 return 0;
1275
Damien Miller95def091999-11-25 00:26:21 +11001276 default:
1277 fatal("process_config_line: Unimplemented opcode %d", opcode);
1278 }
1279
1280 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001281 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001282 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001283 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001284 }
Damien Miller95def091999-11-25 00:26:21 +11001285 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286}
1287
1288
Damien Miller5428f641999-11-25 11:54:57 +11001289/*
1290 * Reads the config file and modifies the options accordingly. Options
1291 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001292 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001293 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001295int
Damien Miller194fd902013-10-15 12:13:05 +11001296read_config_file(const char *filename, struct passwd *pw, const char *host,
1297 Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298{
Damien Miller95def091999-11-25 00:26:21 +11001299 FILE *f;
1300 char line[1024];
1301 int active, linenum;
1302 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303
Damien Miller57a44762004-04-20 20:11:57 +10001304 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001305 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001306
Darren Tuckeraefa3682013-04-05 11:18:35 +11001307 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001308 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001309
Damien Miller33793852004-06-15 10:27:55 +10001310 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001311 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001312 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001313 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001314 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001315 }
1316
Damien Miller95def091999-11-25 00:26:21 +11001317 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001318
Damien Miller5428f641999-11-25 11:54:57 +11001319 /*
1320 * Mark that we are now processing the options. This flag is turned
1321 * on/off by Host specifications.
1322 */
Damien Miller95def091999-11-25 00:26:21 +11001323 active = 1;
1324 linenum = 0;
1325 while (fgets(line, sizeof(line), f)) {
1326 /* Update line number counter. */
1327 linenum++;
Damien Miller194fd902013-10-15 12:13:05 +11001328 if (process_config_line(options, pw, host, line, filename,
1329 linenum, &active, flags & SSHCONF_USERCONF) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001330 bad_options++;
1331 }
1332 fclose(f);
1333 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001334 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001335 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001336 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001337}
1338
Damien Miller5428f641999-11-25 11:54:57 +11001339/*
1340 * Initializes options to special values that indicate that they have not yet
1341 * been set. Read_config_file will only set options with this value. Options
1342 * are processed in the following order: command line, user config file,
1343 * system config file. Last, fill_default_options is called.
1344 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345
Damien Miller4af51302000-04-16 11:18:38 +10001346void
Damien Miller95def091999-11-25 00:26:21 +11001347initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001348{
Damien Miller95def091999-11-25 00:26:21 +11001349 memset(options, 'X', sizeof(*options));
1350 options->forward_agent = -1;
1351 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001352 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001353 options->forward_x11_timeout = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001354 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001355 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001356 options->gateway_ports = -1;
1357 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001358 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001359 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001360 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001361 options->gss_authentication = -1;
1362 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001363 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001364 options->kbd_interactive_authentication = -1;
1365 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001366 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001367 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001368 options->batch_mode = -1;
1369 options->check_host_ip = -1;
1370 options->strict_host_key_checking = -1;
1371 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001372 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001373 options->compression_level = -1;
1374 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001375 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001376 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001377 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001378 options->number_of_password_prompts = -1;
1379 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001380 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001381 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001382 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001383 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001384 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001385 options->num_identity_files = 0;
1386 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001387 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001388 options->proxy_command = NULL;
1389 options->user = NULL;
1390 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001391 options->num_system_hostfiles = 0;
1392 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001393 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001394 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001395 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001396 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001397 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +11001398 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001399 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001400 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001401 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001402 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001403 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001404 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001405 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001406 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001407 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001408 options->server_alive_interval = -1;
1409 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001410 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001411 options->control_path = NULL;
1412 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001413 options->control_persist = -1;
1414 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001415 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001416 options->tun_open = -1;
1417 options->tun_local = -1;
1418 options->tun_remote = -1;
1419 options->local_command = NULL;
1420 options->permit_local_command = -1;
Darren Tucker71e4d542009-07-06 07:12:27 +10001421 options->use_roaming = -1;
Damien Miller10288242008-06-30 00:04:03 +10001422 options->visual_host_key = -1;
Damien Miller01ed2272008-11-05 16:20:46 +11001423 options->zero_knowledge_password_authentication = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001424 options->ip_qos_interactive = -1;
1425 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001426 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001427 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001428 options->ignored_unknown = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429}
1430
Damien Miller5428f641999-11-25 11:54:57 +11001431/*
1432 * Called after processing other sources of option data, this fills those
1433 * options for which no value has been specified with their default values.
1434 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001435
Damien Miller4af51302000-04-16 11:18:38 +10001436void
Damien Miller95def091999-11-25 00:26:21 +11001437fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001438{
Damien Miller95def091999-11-25 00:26:21 +11001439 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001440 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001441 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001442 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001443 if (options->forward_x11_trusted == -1)
1444 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001445 if (options->forward_x11_timeout == -1)
1446 options->forward_x11_timeout = 1200;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001447 if (options->exit_on_forward_failure == -1)
1448 options->exit_on_forward_failure = 0;
Damien Millerd3a18572000-06-07 19:55:44 +10001449 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001450 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +11001451 if (options->gateway_ports == -1)
1452 options->gateway_ports = 0;
1453 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001454 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001455 if (options->rsa_authentication == -1)
1456 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001457 if (options->pubkey_authentication == -1)
1458 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001459 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001460 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001461 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001462 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001463 if (options->gss_deleg_creds == -1)
1464 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001465 if (options->password_authentication == -1)
1466 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001467 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001468 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001469 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001470 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001471 if (options->hostbased_authentication == -1)
1472 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001473 if (options->batch_mode == -1)
1474 options->batch_mode = 0;
1475 if (options->check_host_ip == -1)
1476 options->check_host_ip = 1;
1477 if (options->strict_host_key_checking == -1)
1478 options->strict_host_key_checking = 2; /* 2 is default */
1479 if (options->compression == -1)
1480 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001481 if (options->tcp_keep_alive == -1)
1482 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001483 if (options->compression_level == -1)
1484 options->compression_level = 6;
1485 if (options->port == -1)
1486 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001487 if (options->address_family == -1)
1488 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001489 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001490 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001491 if (options->number_of_password_prompts == -1)
1492 options->number_of_password_prompts = 3;
1493 /* Selected in ssh_login(). */
1494 if (options->cipher == -1)
1495 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001496 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001497 /* options->macs, default set in myproposals.h */
Damien Millerd5f62bf2010-09-24 22:11:14 +10001498 /* options->kex_algorithms, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001499 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001500 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001501 options->protocol = SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001502 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001503 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001504 add_identity_file(options, "~/",
1505 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001506 }
1507 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001508 add_identity_file(options, "~/",
1509 _PATH_SSH_CLIENT_ID_RSA, 0);
1510 add_identity_file(options, "~/",
1511 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001512#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001513 add_identity_file(options, "~/",
1514 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001515#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001516 }
Damien Millereba71ba2000-04-29 23:57:08 +10001517 }
Damien Miller95def091999-11-25 00:26:21 +11001518 if (options->escape_char == -1)
1519 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001520 if (options->num_system_hostfiles == 0) {
1521 options->system_hostfiles[options->num_system_hostfiles++] =
1522 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1523 options->system_hostfiles[options->num_system_hostfiles++] =
1524 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1525 }
1526 if (options->num_user_hostfiles == 0) {
1527 options->user_hostfiles[options->num_user_hostfiles++] =
1528 xstrdup(_PATH_SSH_USER_HOSTFILE);
1529 options->user_hostfiles[options->num_user_hostfiles++] =
1530 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1531 }
Damien Millerfcd93202002-02-05 12:26:34 +11001532 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001533 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001534 if (options->clear_forwardings == 1)
1535 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001536 if (options->no_host_authentication_for_localhost == - 1)
1537 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001538 if (options->identities_only == -1)
1539 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001540 if (options->enable_ssh_keysign == -1)
1541 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001542 if (options->rekey_limit == -1)
1543 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001544 if (options->rekey_interval == -1)
1545 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001546 if (options->verify_host_key_dns == -1)
1547 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001548 if (options->server_alive_interval == -1)
1549 options->server_alive_interval = 0;
1550 if (options->server_alive_count_max == -1)
1551 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001552 if (options->control_master == -1)
1553 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001554 if (options->control_persist == -1) {
1555 options->control_persist = 0;
1556 options->control_persist_timeout = 0;
1557 }
Damien Millere1776152005-03-01 21:47:37 +11001558 if (options->hash_known_hosts == -1)
1559 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001560 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001561 options->tun_open = SSH_TUNMODE_NO;
1562 if (options->tun_local == -1)
1563 options->tun_local = SSH_TUNID_ANY;
1564 if (options->tun_remote == -1)
1565 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001566 if (options->permit_local_command == -1)
1567 options->permit_local_command = 0;
Darren Tucker71e4d542009-07-06 07:12:27 +10001568 if (options->use_roaming == -1)
1569 options->use_roaming = 1;
Damien Miller10288242008-06-30 00:04:03 +10001570 if (options->visual_host_key == -1)
1571 options->visual_host_key = 0;
Damien Miller01ed2272008-11-05 16:20:46 +11001572 if (options->zero_knowledge_password_authentication == -1)
1573 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001574 if (options->ip_qos_interactive == -1)
1575 options->ip_qos_interactive = IPTOS_LOWDELAY;
1576 if (options->ip_qos_bulk == -1)
1577 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10001578 if (options->request_tty == -1)
1579 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10001580 if (options->proxy_use_fdpass == -1)
1581 options->proxy_use_fdpass = 0;
Damien Millere9fc72e2013-10-15 12:14:12 +11001582#define CLEAR_ON_NONE(v) \
1583 do { \
1584 if (v != NULL && strcasecmp(v, "none") == 0) { \
1585 free(v); \
1586 v = NULL; \
1587 } \
1588 } while(0)
1589 CLEAR_ON_NONE(options->local_command);
1590 CLEAR_ON_NONE(options->proxy_command);
1591 CLEAR_ON_NONE(options->control_path);
Damien Miller95def091999-11-25 00:26:21 +11001592 /* options->user will be set in the main program if appropriate */
1593 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001594 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001595 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001596}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001597
1598/*
1599 * parse_forward
1600 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11001601 * dynamicfwd == 0
Damien Millerf91ee4c2005-03-01 21:24:33 +11001602 * [listenhost:]listenport:connecthost:connectport
Damien Millera699d952008-11-03 19:27:34 +11001603 * dynamicfwd == 1
1604 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11001605 * returns number of arguments parsed or zero on error
1606 */
1607int
Damien Miller4bf648f2009-02-14 16:28:21 +11001608parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001609{
1610 int i;
1611 char *p, *cp, *fwdarg[4];
1612
1613 memset(fwd, '\0', sizeof(*fwd));
1614
1615 cp = p = xstrdup(fwdspec);
1616
1617 /* skip leading spaces */
Darren Tucker03b1cdb2007-03-21 20:46:03 +11001618 while (isspace(*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001619 cp++;
1620
1621 for (i = 0; i < 4; ++i)
1622 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1623 break;
1624
Damien Millerf4b39532008-11-03 19:28:21 +11001625 /* Check for trailing garbage */
Damien Millerf91ee4c2005-03-01 21:24:33 +11001626 if (cp != NULL)
1627 i = 0; /* failure */
1628
1629 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11001630 case 1:
1631 fwd->listen_host = NULL;
1632 fwd->listen_port = a2port(fwdarg[0]);
1633 fwd->connect_host = xstrdup("socks");
1634 break;
1635
1636 case 2:
1637 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1638 fwd->listen_port = a2port(fwdarg[1]);
1639 fwd->connect_host = xstrdup("socks");
1640 break;
1641
Damien Millerf91ee4c2005-03-01 21:24:33 +11001642 case 3:
1643 fwd->listen_host = NULL;
1644 fwd->listen_port = a2port(fwdarg[0]);
1645 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1646 fwd->connect_port = a2port(fwdarg[2]);
1647 break;
1648
1649 case 4:
1650 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1651 fwd->listen_port = a2port(fwdarg[1]);
1652 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1653 fwd->connect_port = a2port(fwdarg[3]);
1654 break;
1655 default:
1656 i = 0; /* failure */
1657 }
1658
Darren Tuckera627d422013-06-02 07:31:17 +10001659 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001660
Damien Millera699d952008-11-03 19:27:34 +11001661 if (dynamicfwd) {
1662 if (!(i == 1 || i == 2))
1663 goto fail_free;
1664 } else {
1665 if (!(i == 3 || i == 4))
1666 goto fail_free;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001667 if (fwd->connect_port <= 0)
Damien Millera699d952008-11-03 19:27:34 +11001668 goto fail_free;
1669 }
1670
Damien Miller4bf648f2009-02-14 16:28:21 +11001671 if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001672 goto fail_free;
1673
1674 if (fwd->connect_host != NULL &&
1675 strlen(fwd->connect_host) >= NI_MAXHOST)
1676 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11001677 if (fwd->listen_host != NULL &&
1678 strlen(fwd->listen_host) >= NI_MAXHOST)
1679 goto fail_free;
1680
Damien Millerf91ee4c2005-03-01 21:24:33 +11001681
1682 return (i);
1683
1684 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10001685 free(fwd->connect_host);
1686 fwd->connect_host = NULL;
1687 free(fwd->listen_host);
1688 fwd->listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11001689 return (0);
1690}