blob: 013c19f596649a8d567f05dad3be9e677e44ad2a [file] [log] [blame]
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001/* $OpenBSD: readconf.c,v 1.271 2017/04/28 03:20:27 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Functions for reading the configuration files.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
18#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100019#include <sys/socket.h>
Damien Miller194fd902013-10-15 12:13:05 +110020#include <sys/wait.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100021#include <sys/un.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100022
23#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110024#include <netinet/in_systm.h>
25#include <netinet/ip.h>
Darren Tucker0eeafcd2014-01-31 14:18:51 +110026#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
Damien Millerc7b06362006-03-15 11:53:45 +110028#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100029#include <errno.h>
Damien Miller194fd902013-10-15 12:13:05 +110030#include <fcntl.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000031#include <limits.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100032#include <netdb.h>
Darren Tuckera3357662014-01-18 00:03:57 +110033#ifdef HAVE_PATHS_H
34# include <paths.h>
35#endif
Damien Miller194fd902013-10-15 12:13:05 +110036#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100037#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100038#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100039#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100040#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100041#include <unistd.h>
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +000042#ifdef USE_SYSTEM_GLOB
43# include <glob.h>
44#else
45# include "openbsd-compat/glob.h"
46#endif
Darren Tuckere194ba42013-05-16 20:47:31 +100047#ifdef HAVE_UTIL_H
Darren Tuckerb7ee8522013-05-16 20:33:10 +100048#include <util.h>
Darren Tuckere194ba42013-05-16 20:47:31 +100049#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +000050#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
51# include <vis.h>
52#endif
Damien Millerc7b06362006-03-15 11:53:45 +110053
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100055#include "ssh.h"
Damien Miller78928792000-04-12 20:17:38 +100056#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "cipher.h"
58#include "pathnames.h"
59#include "log.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000060#include "sshkey.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100061#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "readconf.h"
63#include "match.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000064#include "kex.h"
65#include "mac.h"
Damien Miller194fd902013-10-15 12:13:05 +110066#include "uidswap.h"
djm@openbsd.org957fbce2014-10-08 22:20:25 +000067#include "myproposal.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000068#include "digest.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
70/* Format of the configuration file:
71
72 # Configuration data is parsed as follows:
73 # 1. command line options
74 # 2. user-specific file
75 # 3. system-wide file
76 # Any configuration value is only changed the first time it is set.
77 # Thus, host-specific definitions should be at the beginning of the
78 # configuration file, and defaults at the end.
79
80 # Host-specific declarations. These may override anything above. A single
81 # host may match multiple declarations; these are processed in the order
82 # that they are given in.
83
84 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000085 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
87 Host fake.com
88 HostName another.host.name.real.org
89 User blaah
90 Port 34289
91 ForwardX11 no
92 ForwardAgent no
93
94 Host books.com
95 RemoteForward 9999 shadows.cs.hut.fi:9999
djm@openbsd.org381a2612017-01-30 00:38:50 +000096 Ciphers 3des-cbc
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
98 Host fascist.blob.com
99 Port 23123
100 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101 PasswordAuthentication no
102
103 Host puukko.hut.fi
104 User t35124p
105 ProxyCommand ssh-proxy %h %p
106
107 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +0000108 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109
110 Host *.su
djm@openbsd.org381a2612017-01-30 00:38:50 +0000111 Ciphers aes128-ctr
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112 PasswordAuthentication no
113
Damien Millerd27b9472005-12-13 19:29:02 +1100114 Host vpn.fake.com
115 Tunnel yes
116 TunnelDevice 3
117
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118 # Defaults for various options
119 Host *
120 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +1100121 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122 PasswordAuthentication yes
123 RSAAuthentication yes
124 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +1100126 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127 IdentityFile ~/.ssh/identity
128 Port 22
129 EscapeChar ~
130
131*/
132
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000133static int read_config_file_depth(const char *filename, struct passwd *pw,
134 const char *host, const char *original_host, Options *options,
135 int flags, int *activep, int depth);
136static int process_config_line_depth(Options *options, struct passwd *pw,
137 const char *host, const char *original_host, char *line,
138 const char *filename, int linenum, int *activep, int flags, int depth);
139
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140/* Keyword tokens. */
141
Damien Miller95def091999-11-25 00:26:21 +1100142typedef enum {
143 oBadOption,
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000144 oHost, oMatch, oInclude,
Damien Miller1ab6a512010-06-26 10:02:24 +1000145 oForwardAgent, oForwardX11, oForwardX11Trusted, oForwardX11Timeout,
146 oGatewayPorts, oExitOnForwardFailure,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000147 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000148 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +1100149 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +0000150 oCertificateFile, oAddKeysToAgent, oIdentityAgent,
Damien Miller194fd902013-10-15 12:13:05 +1100151 oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
Damien Miller95def091999-11-25 00:26:21 +1100152 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
153 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +1100154 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000155 oUsePrivilegedPort, oLogFacility, oLogLevel, oCiphers, oProtocol, oMacs,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000156 oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000157 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000158 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Damien Miller7ea845e2010-02-12 09:21:02 +1100159 oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000160 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000161 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000162 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100163 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millere11e1ea2010-08-03 16:04:46 +1000164 oSendEnv, oControlPath, oControlMaster, oControlPersist,
165 oHashKnownHosts,
Damien Millerd27b9472005-12-13 19:29:02 +1100166 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
markus@openbsd.orga3068632016-01-14 16:17:39 +0000167 oVisualHostKey,
Damien Miller1262b662013-08-21 02:44:24 +1000168 oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
Damien Miller38505592013-10-17 11:48:13 +1100169 oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots,
170 oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs,
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000171 oStreamLocalBindMask, oStreamLocalBindUnlink, oRevokedHostKeys,
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000172 oFingerprintHash, oUpdateHostkeys, oHostbasedKeyTypes,
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000173 oPubkeyAcceptedKeyTypes, oProxyJump,
Darren Tucker07636982013-05-16 20:30:03 +1000174 oIgnoredUnknownOption, oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175} OpCodes;
176
177/* Textual representations of the tokens. */
178
Damien Miller95def091999-11-25 00:26:21 +1100179static struct {
180 const char *name;
181 OpCodes opcode;
182} keywords[] = {
djm@openbsd.org381a2612017-01-30 00:38:50 +0000183 /* Deprecated options */
184 { "fallbacktorsh", oDeprecated },
185 { "globalknownhostsfile2", oDeprecated },
186 { "rhostsauthentication", oDeprecated },
187 { "userknownhostsfile2", oDeprecated },
188 { "useroaming", oDeprecated },
189 { "usersh", oDeprecated },
190
191 /* Unsupported options */
192 { "afstokenpassing", oUnsupported },
193 { "kerberosauthentication", oUnsupported },
194 { "kerberostgtpassing", oUnsupported },
195
196 /* Sometimes-unsupported options */
197#if defined(GSSAPI)
198 { "gssapiauthentication", oGssAuthentication },
199 { "gssapidelegatecredentials", oGssDelegateCreds },
200# else
201 { "gssapiauthentication", oUnsupported },
202 { "gssapidelegatecredentials", oUnsupported },
203#endif
204#ifdef ENABLE_PKCS11
205 { "smartcarddevice", oPKCS11Provider },
206 { "pkcs11provider", oPKCS11Provider },
207# else
208 { "smartcarddevice", oUnsupported },
209 { "pkcs11provider", oUnsupported },
210#endif
211#ifdef WITH_SSH1
212 { "rsaauthentication", oRSAAuthentication },
213 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
214 { "compressionlevel", oCompressionLevel },
215# else
216 { "rsaauthentication", oUnsupported },
217 { "rhostsrsaauthentication", oUnsupported },
218 { "compressionlevel", oUnsupported },
219#endif
220
Damien Miller95def091999-11-25 00:26:21 +1100221 { "forwardagent", oForwardAgent },
222 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000223 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000224 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000225 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000226 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100227 { "gatewayports", oGatewayPorts },
228 { "useprivilegedport", oUsePrivilegedPort },
Damien Miller95def091999-11-25 00:26:21 +1100229 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100230 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
231 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100232 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000233 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstromd69dab32001-04-12 23:36:05 +0000234 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000235 { "challengeresponseauthentication", oChallengeResponseAuthentication },
236 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
237 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100238 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100239 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100240 { "identitiesonly", oIdentitiesOnly },
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000241 { "certificatefile", oCertificateFile },
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000242 { "addkeystoagent", oAddKeysToAgent },
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +0000243 { "identityagent", oIdentityAgent },
Damien Miller95def091999-11-25 00:26:21 +1100244 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000245 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100246 { "proxycommand", oProxyCommand },
247 { "port", oPort },
248 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000249 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000250 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000251 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100252 { "remoteforward", oRemoteForward },
253 { "localforward", oLocalForward },
254 { "user", oUser },
255 { "host", oHost },
Damien Miller194fd902013-10-15 12:13:05 +1100256 { "match", oMatch },
Damien Miller95def091999-11-25 00:26:21 +1100257 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100258 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100259 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller95def091999-11-25 00:26:21 +1100260 { "connectionattempts", oConnectionAttempts },
261 { "batchmode", oBatchMode },
262 { "checkhostip", oCheckHostIP },
263 { "stricthostkeychecking", oStrictHostKeyChecking },
264 { "compression", oCompression },
Damien Miller12c150e2003-12-17 16:31:10 +1100265 { "tcpkeepalive", oTCPKeepAlive },
266 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100267 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000268 { "syslogfacility", oLogFacility },
Damien Miller95def091999-11-25 00:26:21 +1100269 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000270 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000271 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000272 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000273 { "bindaddress", oBindAddress },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100274 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000275 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000276 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100277 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000278 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000279 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000280 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100281 { "serveraliveinterval", oServerAliveInterval },
282 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000283 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000284 { "controlpath", oControlPath },
285 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000286 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100287 { "hashknownhosts", oHashKnownHosts },
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000288 { "include", oInclude },
Damien Millerd27b9472005-12-13 19:29:02 +1100289 { "tunnel", oTunnel },
290 { "tunneldevice", oTunnelDevice },
291 { "localcommand", oLocalCommand },
292 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000293 { "visualhostkey", oVisualHostKey },
Damien Millerd5f62bf2010-09-24 22:11:14 +1000294 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100295 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000296 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000297 { "proxyusefdpass", oProxyUseFdpass },
Damien Miller0faf7472013-10-17 11:47:23 +1100298 { "canonicaldomains", oCanonicalDomains },
Damien Miller38505592013-10-17 11:48:13 +1100299 { "canonicalizefallbacklocal", oCanonicalizeFallbackLocal },
300 { "canonicalizehostname", oCanonicalizeHostname },
301 { "canonicalizemaxdots", oCanonicalizeMaxDots },
302 { "canonicalizepermittedcnames", oCanonicalizePermittedCNAMEs },
Damien Miller7acefbb2014-07-18 14:11:24 +1000303 { "streamlocalbindmask", oStreamLocalBindMask },
304 { "streamlocalbindunlink", oStreamLocalBindUnlink },
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000305 { "revokedhostkeys", oRevokedHostKeys },
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000306 { "fingerprinthash", oFingerprintHash },
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000307 { "updatehostkeys", oUpdateHostkeys },
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000308 { "hostbasedkeytypes", oHostbasedKeyTypes },
markus@openbsd.org3a1638d2015-07-10 06:21:53 +0000309 { "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes },
Darren Tucker07636982013-05-16 20:30:03 +1000310 { "ignoreunknown", oIgnoreUnknown },
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000311 { "proxyjump", oProxyJump },
Damien Miller01ed2272008-11-05 16:20:46 +1100312
Ben Lindstrom65366a82001-12-06 16:32:47 +0000313 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100314};
315
Damien Miller5428f641999-11-25 11:54:57 +1100316/*
317 * Adds a local TCP/IP port forward to options. Never returns if there is an
318 * error.
319 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320
Damien Miller4af51302000-04-16 11:18:38 +1000321void
Damien Miller7acefbb2014-07-18 14:11:24 +1000322add_local_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323{
Damien Miller7acefbb2014-07-18 14:11:24 +1000324 struct Forward *fwd;
Damien Miller95def091999-11-25 00:26:21 +1100325 extern uid_t original_real_uid;
Darren Tucker5f41f032016-04-08 21:14:13 +1000326 int i;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000327
jsg@openbsd.org79d078e2016-10-25 04:08:13 +0000328 if (!bind_permitted(newfwd->listen_port, original_real_uid) &&
Damien Miller7acefbb2014-07-18 14:11:24 +1000329 newfwd->listen_path == NULL)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000330 fatal("Privileged ports can only be forwarded by root.");
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000331 /* Don't add duplicates */
332 for (i = 0; i < options->num_local_forwards; i++) {
333 if (forward_equals(newfwd, options->local_forwards + i))
334 return;
335 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000336 options->local_forwards = xreallocarray(options->local_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000337 options->num_local_forwards + 1,
338 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100339 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100340
Damien Miller1a0442f2008-11-05 16:30:06 +1100341 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100342 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000343 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100344 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100345 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000346 fwd->connect_path = newfwd->connect_path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347}
348
Damien Miller5428f641999-11-25 11:54:57 +1100349/*
350 * Adds a remote TCP/IP port forward to options. Never returns if there is
351 * an error.
352 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353
Damien Miller4af51302000-04-16 11:18:38 +1000354void
Damien Miller7acefbb2014-07-18 14:11:24 +1000355add_remote_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356{
Damien Miller7acefbb2014-07-18 14:11:24 +1000357 struct Forward *fwd;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000358 int i;
Damien Miller232cfb12010-06-26 09:50:30 +1000359
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000360 /* Don't add duplicates */
361 for (i = 0; i < options->num_remote_forwards; i++) {
362 if (forward_equals(newfwd, options->remote_forwards + i))
363 return;
364 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000365 options->remote_forwards = xreallocarray(options->remote_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000366 options->num_remote_forwards + 1,
367 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100368 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100369
Damien Miller1a0442f2008-11-05 16:30:06 +1100370 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100371 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000372 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100373 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100374 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000375 fwd->connect_path = newfwd->connect_path;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100376 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000377 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378}
379
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000380static void
381clear_forwardings(Options *options)
382{
383 int i;
384
Damien Millerf91ee4c2005-03-01 21:24:33 +1100385 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000386 free(options->local_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000387 free(options->local_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000388 free(options->local_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000389 free(options->local_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100390 }
Damien Miller232cfb12010-06-26 09:50:30 +1000391 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000392 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000393 options->local_forwards = NULL;
394 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000395 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100396 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000397 free(options->remote_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000398 free(options->remote_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000399 free(options->remote_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000400 free(options->remote_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100401 }
Damien Miller232cfb12010-06-26 09:50:30 +1000402 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000403 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000404 options->remote_forwards = NULL;
405 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000406 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100407 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000408}
409
Darren Tucker19104782013-04-05 11:13:08 +1100410void
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000411add_certificate_file(Options *options, const char *path, int userprovided)
412{
413 int i;
414
415 if (options->num_certificate_files >= SSH_MAX_CERTIFICATE_FILES)
416 fatal("Too many certificate files specified (max %d)",
417 SSH_MAX_CERTIFICATE_FILES);
418
419 /* Avoid registering duplicates */
420 for (i = 0; i < options->num_certificate_files; i++) {
421 if (options->certificate_file_userprovided[i] == userprovided &&
422 strcmp(options->certificate_files[i], path) == 0) {
423 debug2("%s: ignoring duplicate key %s", __func__, path);
424 return;
425 }
426 }
427
428 options->certificate_file_userprovided[options->num_certificate_files] =
429 userprovided;
430 options->certificate_files[options->num_certificate_files++] =
431 xstrdup(path);
432}
433
434void
Darren Tucker19104782013-04-05 11:13:08 +1100435add_identity_file(Options *options, const char *dir, const char *filename,
436 int userprovided)
437{
438 char *path;
Damien Miller15271902014-05-15 13:47:56 +1000439 int i;
Darren Tucker19104782013-04-05 11:13:08 +1100440
441 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
442 fatal("Too many identity files specified (max %d)",
443 SSH_MAX_IDENTITY_FILES);
444
445 if (dir == NULL) /* no dir, filename is absolute */
446 path = xstrdup(filename);
447 else
448 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
449
Damien Miller15271902014-05-15 13:47:56 +1000450 /* Avoid registering duplicates */
451 for (i = 0; i < options->num_identity_files; i++) {
452 if (options->identity_file_userprovided[i] == userprovided &&
453 strcmp(options->identity_files[i], path) == 0) {
454 debug2("%s: ignoring duplicate key %s", __func__, path);
455 free(path);
456 return;
457 }
458 }
459
Darren Tucker19104782013-04-05 11:13:08 +1100460 options->identity_file_userprovided[options->num_identity_files] =
461 userprovided;
462 options->identity_files[options->num_identity_files++] = path;
463}
464
Damien Miller194fd902013-10-15 12:13:05 +1100465int
466default_ssh_port(void)
467{
468 static int port;
469 struct servent *sp;
470
471 if (port == 0) {
472 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
473 port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
474 }
475 return port;
476}
477
478/*
479 * Execute a command in a shell.
480 * Return its exit status or -1 on abnormal exit.
481 */
482static int
483execute_in_shell(const char *cmd)
484{
dtucker@openbsd.org97e184e2015-10-25 23:14:03 +0000485 char *shell;
Damien Miller194fd902013-10-15 12:13:05 +1100486 pid_t pid;
487 int devnull, status;
488 extern uid_t original_real_uid;
489
490 if ((shell = getenv("SHELL")) == NULL)
491 shell = _PATH_BSHELL;
492
Damien Miller194fd902013-10-15 12:13:05 +1100493 /* Need this to redirect subprocess stdin/out */
494 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
495 fatal("open(/dev/null): %s", strerror(errno));
496
497 debug("Executing command: '%.500s'", cmd);
498
499 /* Fork and execute the command. */
500 if ((pid = fork()) == 0) {
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000501 char *argv[4];
Damien Miller194fd902013-10-15 12:13:05 +1100502
503 /* Child. Permanently give up superuser privileges. */
504 permanently_drop_suid(original_real_uid);
505
506 /* Redirect child stdin and stdout. Leave stderr */
507 if (dup2(devnull, STDIN_FILENO) == -1)
508 fatal("dup2: %s", strerror(errno));
509 if (dup2(devnull, STDOUT_FILENO) == -1)
510 fatal("dup2: %s", strerror(errno));
511 if (devnull > STDERR_FILENO)
512 close(devnull);
513 closefrom(STDERR_FILENO + 1);
514
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000515 argv[0] = shell;
516 argv[1] = "-c";
517 argv[2] = xstrdup(cmd);
518 argv[3] = NULL;
519
Damien Miller194fd902013-10-15 12:13:05 +1100520 execv(argv[0], argv);
521 error("Unable to execute '%.100s': %s", cmd, strerror(errno));
522 /* Die with signal to make this error apparent to parent. */
523 signal(SIGTERM, SIG_DFL);
524 kill(getpid(), SIGTERM);
525 _exit(1);
526 }
527 /* Parent. */
528 if (pid < 0)
529 fatal("%s: fork: %.100s", __func__, strerror(errno));
530
531 close(devnull);
Damien Miller194fd902013-10-15 12:13:05 +1100532
533 while (waitpid(pid, &status, 0) == -1) {
534 if (errno != EINTR && errno != EAGAIN)
535 fatal("%s: waitpid: %s", __func__, strerror(errno));
536 }
537 if (!WIFEXITED(status)) {
538 error("command '%.100s' exited abnormally", cmd);
539 return -1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000540 }
Damien Miller194fd902013-10-15 12:13:05 +1100541 debug3("command returned status %d", WEXITSTATUS(status));
542 return WEXITSTATUS(status);
543}
544
545/*
546 * Parse and execute a Match directive.
547 */
548static int
549match_cfg_line(Options *options, char **condition, struct passwd *pw,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000550 const char *host_arg, const char *original_host, int post_canon,
551 const char *filename, int linenum)
Damien Miller194fd902013-10-15 12:13:05 +1100552{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000553 char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;
Damien Miller084bcd22013-10-23 16:30:51 +1100554 const char *ruser;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000555 int r, port, this_result, result = 1, attributes = 0, negate;
Damien Miller194fd902013-10-15 12:13:05 +1100556 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
557
558 /*
559 * Configuration is likely to be incomplete at this point so we
560 * must be prepared to use default values.
561 */
562 port = options->port <= 0 ? default_ssh_port() : options->port;
563 ruser = options->user == NULL ? pw->pw_name : options->user;
djm@openbsd.org5a622842016-02-08 23:40:12 +0000564 if (post_canon) {
565 host = xstrdup(options->hostname);
566 } else if (options->hostname != NULL) {
Damien Millereff5cad2013-10-23 16:31:10 +1100567 /* NB. Please keep in sync with ssh.c:main() */
Damien Miller084bcd22013-10-23 16:30:51 +1100568 host = percent_expand(options->hostname,
569 "h", host_arg, (char *)NULL);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000570 } else {
Damien Miller084bcd22013-10-23 16:30:51 +1100571 host = xstrdup(host_arg);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000572 }
Damien Miller194fd902013-10-15 12:13:05 +1100573
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000574 debug2("checking match for '%s' host %s originally %s",
575 cp, host, original_host);
576 while ((oattrib = attrib = strdelim(&cp)) && *attrib != '\0') {
577 criteria = NULL;
578 this_result = 1;
579 if ((negate = attrib[0] == '!'))
580 attrib++;
581 /* criteria "all" and "canonical" have no argument */
Damien Millercf31f382013-10-24 21:02:56 +1100582 if (strcasecmp(attrib, "all") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000583 if (attributes > 1 ||
Damien Millercf31f382013-10-24 21:02:56 +1100584 ((arg = strdelim(&cp)) != NULL && *arg != '\0')) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000585 error("%.200s line %d: '%s' cannot be combined "
586 "with other Match attributes",
587 filename, linenum, oattrib);
Damien Millercf31f382013-10-24 21:02:56 +1100588 result = -1;
589 goto out;
590 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000591 if (result)
592 result = negate ? 0 : 1;
Damien Millercf31f382013-10-24 21:02:56 +1100593 goto out;
594 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000595 attributes++;
596 if (strcasecmp(attrib, "canonical") == 0) {
597 r = !!post_canon; /* force bitmask member to boolean */
598 if (r == (negate ? 1 : 0))
599 this_result = result = 0;
600 debug3("%.200s line %d: %smatched '%s'",
601 filename, linenum,
602 this_result ? "" : "not ", oattrib);
603 continue;
604 }
605 /* All other criteria require an argument */
Damien Miller194fd902013-10-15 12:13:05 +1100606 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
607 error("Missing Match criteria for %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100608 result = -1;
609 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100610 }
Damien Miller194fd902013-10-15 12:13:05 +1100611 if (strcasecmp(attrib, "host") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000612 criteria = xstrdup(host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000613 r = match_hostname(host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000614 if (r == (negate ? 1 : 0))
615 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100616 } else if (strcasecmp(attrib, "originalhost") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000617 criteria = xstrdup(original_host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000618 r = match_hostname(original_host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000619 if (r == (negate ? 1 : 0))
620 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100621 } else if (strcasecmp(attrib, "user") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000622 criteria = xstrdup(ruser);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000623 r = match_pattern_list(ruser, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000624 if (r == (negate ? 1 : 0))
625 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100626 } else if (strcasecmp(attrib, "localuser") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000627 criteria = xstrdup(pw->pw_name);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000628 r = match_pattern_list(pw->pw_name, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000629 if (r == (negate ? 1 : 0))
630 this_result = result = 0;
Damien Miller8a04be72013-10-23 16:29:40 +1100631 } else if (strcasecmp(attrib, "exec") == 0) {
Damien Miller194fd902013-10-15 12:13:05 +1100632 if (gethostname(thishost, sizeof(thishost)) == -1)
633 fatal("gethostname: %s", strerror(errno));
634 strlcpy(shorthost, thishost, sizeof(shorthost));
635 shorthost[strcspn(thishost, ".")] = '\0';
636 snprintf(portstr, sizeof(portstr), "%d", port);
637
638 cmd = percent_expand(arg,
639 "L", shorthost,
640 "d", pw->pw_dir,
641 "h", host,
642 "l", thishost,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000643 "n", original_host,
Damien Miller194fd902013-10-15 12:13:05 +1100644 "p", portstr,
645 "r", ruser,
646 "u", pw->pw_name,
647 (char *)NULL);
Damien Miller06287802014-02-24 15:56:45 +1100648 if (result != 1) {
649 /* skip execution if prior predicate failed */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000650 debug3("%.200s line %d: skipped exec "
651 "\"%.100s\"", filename, linenum, cmd);
652 free(cmd);
653 continue;
Damien Miller06287802014-02-24 15:56:45 +1100654 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000655 r = execute_in_shell(cmd);
656 if (r == -1) {
657 fatal("%.200s line %d: match exec "
658 "'%.100s' error", filename,
659 linenum, cmd);
660 }
661 criteria = xstrdup(cmd);
Damien Miller194fd902013-10-15 12:13:05 +1100662 free(cmd);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000663 /* Force exit status to boolean */
664 r = r == 0;
665 if (r == (negate ? 1 : 0))
666 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100667 } else {
668 error("Unsupported Match attribute %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100669 result = -1;
670 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100671 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000672 debug3("%.200s line %d: %smatched '%s \"%.100s\"' ",
673 filename, linenum, this_result ? "": "not ",
674 oattrib, criteria);
675 free(criteria);
Damien Miller194fd902013-10-15 12:13:05 +1100676 }
Damien Millercf31f382013-10-24 21:02:56 +1100677 if (attributes == 0) {
678 error("One or more attributes required for Match");
679 result = -1;
680 goto out;
681 }
Damien Miller084bcd22013-10-23 16:30:51 +1100682 out:
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000683 if (result != -1)
684 debug2("match %sfound", result ? "" : "not ");
685 *condition = cp;
Damien Miller084bcd22013-10-23 16:30:51 +1100686 free(host);
Damien Miller194fd902013-10-15 12:13:05 +1100687 return result;
688}
689
Damien Miller0faf7472013-10-17 11:47:23 +1100690/* Check and prepare a domain name: removes trailing '.' and lowercases */
691static void
692valid_domain(char *name, const char *filename, int linenum)
693{
694 size_t i, l = strlen(name);
695 u_char c, last = '\0';
696
697 if (l == 0)
698 fatal("%s line %d: empty hostname suffix", filename, linenum);
699 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
700 fatal("%s line %d: hostname suffix \"%.100s\" "
701 "starts with invalid character", filename, linenum, name);
702 for (i = 0; i < l; i++) {
703 c = tolower((u_char)name[i]);
704 name[i] = (char)c;
705 if (last == '.' && c == '.')
706 fatal("%s line %d: hostname suffix \"%.100s\" contains "
707 "consecutive separators", filename, linenum, name);
708 if (c != '.' && c != '-' && !isalnum(c) &&
709 c != '_') /* technically invalid, but common */
710 fatal("%s line %d: hostname suffix \"%.100s\" contains "
711 "invalid characters", filename, linenum, name);
712 last = c;
713 }
714 if (name[l - 1] == '.')
715 name[l - 1] = '\0';
716}
717
Damien Miller5428f641999-11-25 11:54:57 +1100718/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000719 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100720 */
Damien Miller4af51302000-04-16 11:18:38 +1000721static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000722parse_token(const char *cp, const char *filename, int linenum,
723 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000724{
Darren Tucker07636982013-05-16 20:30:03 +1000725 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726
Damien Miller95def091999-11-25 00:26:21 +1100727 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000728 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100729 return keywords[i].opcode;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000730 if (ignored_unknown != NULL &&
731 match_pattern_list(cp, ignored_unknown, 1) == 1)
Darren Tucker07636982013-05-16 20:30:03 +1000732 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000733 error("%s: line %d: Bad configuration option: %s",
734 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100735 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000736}
737
Damien Millere9fc72e2013-10-15 12:14:12 +1100738/* Multistate option parsing */
739struct multistate {
740 char *key;
741 int value;
742};
743static const struct multistate multistate_flag[] = {
744 { "true", 1 },
745 { "false", 0 },
746 { "yes", 1 },
747 { "no", 0 },
748 { NULL, -1 }
749};
750static const struct multistate multistate_yesnoask[] = {
751 { "true", 1 },
752 { "false", 0 },
753 { "yes", 1 },
754 { "no", 0 },
755 { "ask", 2 },
756 { NULL, -1 }
757};
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000758static const struct multistate multistate_yesnoaskconfirm[] = {
759 { "true", 1 },
760 { "false", 0 },
761 { "yes", 1 },
762 { "no", 0 },
763 { "ask", 2 },
764 { "confirm", 3 },
765 { NULL, -1 }
766};
Damien Millere9fc72e2013-10-15 12:14:12 +1100767static const struct multistate multistate_addressfamily[] = {
768 { "inet", AF_INET },
769 { "inet6", AF_INET6 },
770 { "any", AF_UNSPEC },
771 { NULL, -1 }
772};
773static const struct multistate multistate_controlmaster[] = {
774 { "true", SSHCTL_MASTER_YES },
775 { "yes", SSHCTL_MASTER_YES },
776 { "false", SSHCTL_MASTER_NO },
777 { "no", SSHCTL_MASTER_NO },
778 { "auto", SSHCTL_MASTER_AUTO },
779 { "ask", SSHCTL_MASTER_ASK },
780 { "autoask", SSHCTL_MASTER_AUTO_ASK },
781 { NULL, -1 }
782};
783static const struct multistate multistate_tunnel[] = {
784 { "ethernet", SSH_TUNMODE_ETHERNET },
785 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
786 { "true", SSH_TUNMODE_DEFAULT },
787 { "yes", SSH_TUNMODE_DEFAULT },
788 { "false", SSH_TUNMODE_NO },
789 { "no", SSH_TUNMODE_NO },
790 { NULL, -1 }
791};
792static const struct multistate multistate_requesttty[] = {
793 { "true", REQUEST_TTY_YES },
794 { "yes", REQUEST_TTY_YES },
795 { "false", REQUEST_TTY_NO },
796 { "no", REQUEST_TTY_NO },
797 { "force", REQUEST_TTY_FORCE },
798 { "auto", REQUEST_TTY_AUTO },
799 { NULL, -1 }
800};
Damien Miller38505592013-10-17 11:48:13 +1100801static const struct multistate multistate_canonicalizehostname[] = {
Damien Miller0faf7472013-10-17 11:47:23 +1100802 { "true", SSH_CANONICALISE_YES },
803 { "false", SSH_CANONICALISE_NO },
804 { "yes", SSH_CANONICALISE_YES },
805 { "no", SSH_CANONICALISE_NO },
806 { "always", SSH_CANONICALISE_ALWAYS },
807 { NULL, -1 }
808};
Damien Millere9fc72e2013-10-15 12:14:12 +1100809
Damien Miller5428f641999-11-25 11:54:57 +1100810/*
811 * Processes a single option line as used in the configuration files. This
812 * only sets those values that have not already been set.
813 */
Damien Miller2ccf6611999-11-15 15:25:10 +1100814int
Damien Miller194fd902013-10-15 12:13:05 +1100815process_config_line(Options *options, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000816 const char *original_host, char *line, const char *filename,
817 int linenum, int *activep, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000819 return process_config_line_depth(options, pw, host, original_host,
820 line, filename, linenum, activep, flags, 0);
821}
822
823#define WHITESPACE " \t\r\n"
824static int
825process_config_line_depth(Options *options, struct passwd *pw, const char *host,
826 const char *original_host, char *line, const char *filename,
827 int linenum, int *activep, int flags, int depth)
828{
Damien Miller295ee632011-05-29 21:42:31 +1000829 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
830 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000831 u_int i, *uintptr, max_entries = 0;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000832 int r, oactive, negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100833 LogLevel *log_level_ptr;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000834 SyslogFacility *log_facility_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000835 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100836 size_t len;
Damien Miller7acefbb2014-07-18 14:11:24 +1000837 struct Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100838 const struct multistate *multistate_ptr;
Damien Miller0faf7472013-10-17 11:47:23 +1100839 struct allowed_cname *cname;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000840 glob_t gl;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000841
Damien Miller194fd902013-10-15 12:13:05 +1100842 if (activep == NULL) { /* We are processing a command line directive */
843 cmdline = 1;
844 activep = &cmdline;
845 }
846
djm@openbsd.orgc924b2e2017-02-03 05:05:56 +0000847 /* Strip trailing whitespace. Allow \f (form feed) at EOL only */
djm@openbsd.org26e0bcf2015-03-30 00:00:29 +0000848 if ((len = strlen(line)) == 0)
849 return 0;
850 for (len--; len > 0; len--) {
djm@openbsd.orgc924b2e2017-02-03 05:05:56 +0000851 if (strchr(WHITESPACE "\f", line[len]) == NULL)
Damien Millerc652cac2003-05-14 13:40:54 +1000852 break;
853 line[len] = '\0';
854 }
855
Damien Millerbe484b52000-07-15 14:14:16 +1000856 s = line;
857 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100858 if ((keyword = strdelim(&s)) == NULL)
859 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000860 /* Ignore leading whitespace. */
861 if (*keyword == '\0')
862 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000863 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100864 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000865 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100866 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000867
Darren Tucker07636982013-05-16 20:30:03 +1000868 opcode = parse_token(keyword, filename, linenum,
869 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870
Damien Miller95def091999-11-25 00:26:21 +1100871 switch (opcode) {
872 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100873 /* don't panic, but count bad options */
874 return -1;
Darren Tucker07636982013-05-16 20:30:03 +1000875 case oIgnoredUnknownOption:
876 debug("%s line %d: Ignored unknown option \"%s\"",
877 filename, linenum, keyword);
878 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000879 case oConnectTimeout:
880 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100881parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000882 arg = strdelim(&s);
883 if (!arg || *arg == '\0')
884 fatal("%s line %d: missing time value.",
885 filename, linenum);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000886 if (strcmp(arg, "none") == 0)
887 value = -1;
888 else if ((value = convtime(arg)) == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000889 fatal("%s line %d: invalid time value.",
890 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100891 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000892 *intptr = value;
893 break;
894
Damien Miller95def091999-11-25 00:26:21 +1100895 case oForwardAgent:
896 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100897 parse_flag:
898 multistate_ptr = multistate_flag;
899 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000900 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000901 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100902 fatal("%s line %d: missing argument.",
903 filename, linenum);
904 value = -1;
905 for (i = 0; multistate_ptr[i].key != NULL; i++) {
906 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
907 value = multistate_ptr[i].value;
908 break;
909 }
910 }
911 if (value == -1)
912 fatal("%s line %d: unsupported option \"%s\".",
913 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100914 if (*activep && *intptr == -1)
915 *intptr = value;
916 break;
917
918 case oForwardX11:
919 intptr = &options->forward_x11;
920 goto parse_flag;
921
Darren Tucker0a118da2003-10-15 15:54:32 +1000922 case oForwardX11Trusted:
923 intptr = &options->forward_x11_trusted;
924 goto parse_flag;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000925
Damien Miller1ab6a512010-06-26 10:02:24 +1000926 case oForwardX11Timeout:
927 intptr = &options->forward_x11_timeout;
928 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000929
Damien Miller95def091999-11-25 00:26:21 +1100930 case oGatewayPorts:
Damien Miller7acefbb2014-07-18 14:11:24 +1000931 intptr = &options->fwd_opts.gateway_ports;
Damien Miller95def091999-11-25 00:26:21 +1100932 goto parse_flag;
933
Darren Tuckere7d4b192006-07-12 22:17:10 +1000934 case oExitOnForwardFailure:
935 intptr = &options->exit_on_forward_failure;
936 goto parse_flag;
937
Damien Miller95def091999-11-25 00:26:21 +1100938 case oUsePrivilegedPort:
939 intptr = &options->use_privileged_port;
940 goto parse_flag;
941
Damien Miller95def091999-11-25 00:26:21 +1100942 case oPasswordAuthentication:
943 intptr = &options->password_authentication;
944 goto parse_flag;
945
Damien Miller874d77b2000-10-14 16:23:11 +1100946 case oKbdInteractiveAuthentication:
947 intptr = &options->kbd_interactive_authentication;
948 goto parse_flag;
949
950 case oKbdInteractiveDevices:
951 charptr = &options->kbd_interactive_devices;
952 goto parse_string;
953
Damien Miller0bc1bd82000-11-13 22:57:25 +1100954 case oPubkeyAuthentication:
955 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000956 goto parse_flag;
957
Damien Miller95def091999-11-25 00:26:21 +1100958 case oRSAAuthentication:
959 intptr = &options->rsa_authentication;
960 goto parse_flag;
961
962 case oRhostsRSAAuthentication:
963 intptr = &options->rhosts_rsa_authentication;
964 goto parse_flag;
965
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000966 case oHostbasedAuthentication:
967 intptr = &options->hostbased_authentication;
968 goto parse_flag;
969
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000970 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000971 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100972 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000973
Darren Tucker0efd1552003-08-26 11:49:55 +1000974 case oGssAuthentication:
975 intptr = &options->gss_authentication;
976 goto parse_flag;
977
978 case oGssDelegateCreds:
979 intptr = &options->gss_deleg_creds;
980 goto parse_flag;
981
Damien Miller95def091999-11-25 00:26:21 +1100982 case oBatchMode:
983 intptr = &options->batch_mode;
984 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller95def091999-11-25 00:26:21 +1100986 case oCheckHostIP:
987 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000988 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000989
Damien Miller37876e92003-05-15 10:19:46 +1000990 case oVerifyHostKeyDNS:
991 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100992 multistate_ptr = multistate_yesnoask;
993 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000994
Damien Miller95def091999-11-25 00:26:21 +1100995 case oStrictHostKeyChecking:
996 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100997 multistate_ptr = multistate_yesnoask;
998 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller95def091999-11-25 00:26:21 +11001000 case oCompression:
1001 intptr = &options->compression;
1002 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003
Damien Miller12c150e2003-12-17 16:31:10 +11001004 case oTCPKeepAlive:
1005 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +11001006 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001007
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001008 case oNoHostAuthenticationForLocalhost:
1009 intptr = &options->no_host_authentication_for_localhost;
1010 goto parse_flag;
1011
Damien Miller95def091999-11-25 00:26:21 +11001012 case oNumberOfPasswordPrompts:
1013 intptr = &options->number_of_password_prompts;
1014 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001015
Damien Miller95def091999-11-25 00:26:21 +11001016 case oCompressionLevel:
1017 intptr = &options->compression_level;
1018 goto parse_int;
1019
Damien Millera5539d22003-04-09 20:50:06 +10001020 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +10001021 arg = strdelim(&s);
1022 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001023 fatal("%.200s line %d: Missing argument.", filename,
1024 linenum);
1025 if (strcmp(arg, "default") == 0) {
1026 val64 = 0;
1027 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +10001028 if (scan_scaled(arg, &val64) == -1)
1029 fatal("%.200s line %d: Bad number '%s': %s",
1030 filename, linenum, arg, strerror(errno));
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001031 if (val64 != 0 && val64 < 16)
1032 fatal("%.200s line %d: RekeyLimit too small",
1033 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +10001034 }
Damien Miller3dff1762008-02-10 22:25:52 +11001035 if (*activep && options->rekey_limit == -1)
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00001036 options->rekey_limit = val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001037 if (s != NULL) { /* optional rekey interval present */
1038 if (strcmp(s, "none") == 0) {
1039 (void)strdelim(&s); /* discard */
1040 break;
1041 }
1042 intptr = &options->rekey_interval;
1043 goto parse_time;
1044 }
Damien Millera5539d22003-04-09 20:50:06 +10001045 break;
1046
Damien Miller95def091999-11-25 00:26:21 +11001047 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +10001048 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001049 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001050 fatal("%.200s line %d: Missing argument.", filename, linenum);
1051 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001052 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +10001053 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +11001054 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001055 filename, linenum, SSH_MAX_IDENTITY_FILES);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001056 add_identity_file(options, NULL,
1057 arg, flags & SSHCONF_USERCONF);
Damien Miller95def091999-11-25 00:26:21 +11001058 }
1059 break;
1060
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001061 case oCertificateFile:
1062 arg = strdelim(&s);
1063 if (!arg || *arg == '\0')
1064 fatal("%.200s line %d: Missing argument.",
1065 filename, linenum);
1066 if (*activep) {
1067 intptr = &options->num_certificate_files;
1068 if (*intptr >= SSH_MAX_CERTIFICATE_FILES) {
1069 fatal("%.200s line %d: Too many certificate "
1070 "files specified (max %d).",
1071 filename, linenum,
1072 SSH_MAX_CERTIFICATE_FILES);
1073 }
1074 add_certificate_file(options, arg,
1075 flags & SSHCONF_USERCONF);
1076 }
1077 break;
1078
Damien Millerd3a18572000-06-07 19:55:44 +10001079 case oXAuthLocation:
1080 charptr=&options->xauth_location;
1081 goto parse_string;
1082
Damien Miller95def091999-11-25 00:26:21 +11001083 case oUser:
1084 charptr = &options->user;
1085parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +10001086 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001087 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +10001088 fatal("%.200s line %d: Missing argument.",
1089 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001090 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001091 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +11001092 break;
1093
1094 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001095 cpptr = (char **)&options->system_hostfiles;
1096 uintptr = &options->num_system_hostfiles;
1097 max_entries = SSH_MAX_HOSTS_FILES;
1098parse_char_array:
1099 if (*activep && *uintptr == 0) {
1100 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1101 if ((*uintptr) >= max_entries)
1102 fatal("%s line %d: "
1103 "too many authorized keys files.",
1104 filename, linenum);
1105 cpptr[(*uintptr)++] = xstrdup(arg);
1106 }
1107 }
1108 return 0;
Damien Miller95def091999-11-25 00:26:21 +11001109
1110 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001111 cpptr = (char **)&options->user_hostfiles;
1112 uintptr = &options->num_user_hostfiles;
1113 max_entries = SSH_MAX_HOSTS_FILES;
1114 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +10001115
Damien Miller95def091999-11-25 00:26:21 +11001116 case oHostName:
1117 charptr = &options->hostname;
1118 goto parse_string;
1119
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001120 case oHostKeyAlias:
1121 charptr = &options->host_key_alias;
1122 goto parse_string;
1123
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001124 case oPreferredAuthentications:
1125 charptr = &options->preferred_authentications;
1126 goto parse_string;
1127
Ben Lindstrome0f88042001-04-30 13:06:24 +00001128 case oBindAddress:
1129 charptr = &options->bind_address;
1130 goto parse_string;
1131
Damien Miller7ea845e2010-02-12 09:21:02 +11001132 case oPKCS11Provider:
1133 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001134 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +00001135
Damien Miller95def091999-11-25 00:26:21 +11001136 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +11001137 charptr = &options->proxy_command;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001138 /* Ignore ProxyCommand if ProxyJump already specified */
1139 if (options->jump_host != NULL)
1140 charptr = &options->jump_host; /* Skip below */
Damien Millerd27b9472005-12-13 19:29:02 +11001141parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +10001142 if (s == NULL)
1143 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +11001144 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +11001145 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +11001146 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +11001147 return 0;
1148
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001149 case oProxyJump:
1150 if (s == NULL) {
1151 fatal("%.200s line %d: Missing argument.",
1152 filename, linenum);
1153 }
1154 len = strspn(s, WHITESPACE "=");
1155 if (parse_jump(s + len, options, *activep) == -1) {
1156 fatal("%.200s line %d: Invalid ProxyJump \"%s\"",
1157 filename, linenum, s + len);
1158 }
1159 return 0;
1160
Damien Miller95def091999-11-25 00:26:21 +11001161 case oPort:
1162 intptr = &options->port;
1163parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +10001164 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001165 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001166 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001167 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +11001168 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +11001169
1170 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +10001171 value = strtol(arg, &endofnumber, 0);
1172 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +11001173 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001174 if (*activep && *intptr == -1)
1175 *intptr = value;
1176 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177
Damien Miller95def091999-11-25 00:26:21 +11001178 case oConnectionAttempts:
1179 intptr = &options->connection_attempts;
1180 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +11001181
Damien Miller95def091999-11-25 00:26:21 +11001182 case oCipher:
1183 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +10001184 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001185 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001186 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001187 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +11001188 if (value == -1)
1189 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001190 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +11001191 if (*activep && *intptr == -1)
1192 *intptr = value;
1193 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001194
Damien Miller78928792000-04-12 20:17:38 +10001195 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001196 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001197 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001198 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001199 if (*arg != '-' && !ciphers_valid(*arg == '+' ? arg + 1 : arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001200 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001201 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001202 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001203 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001204 break;
1205
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001206 case oMacs:
1207 arg = strdelim(&s);
1208 if (!arg || *arg == '\0')
1209 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001210 if (*arg != '-' && !mac_valid(*arg == '+' ? arg + 1 : arg))
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001211 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001212 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001213 if (*activep && options->macs == NULL)
1214 options->macs = xstrdup(arg);
1215 break;
1216
Damien Millerd5f62bf2010-09-24 22:11:14 +10001217 case oKexAlgorithms:
1218 arg = strdelim(&s);
1219 if (!arg || *arg == '\0')
1220 fatal("%.200s line %d: Missing argument.",
1221 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001222 if (*arg != '-' &&
1223 !kex_names_valid(*arg == '+' ? arg + 1 : arg))
Damien Millerd5f62bf2010-09-24 22:11:14 +10001224 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1225 filename, linenum, arg ? arg : "<NONE>");
1226 if (*activep && options->kex_algorithms == NULL)
1227 options->kex_algorithms = xstrdup(arg);
1228 break;
1229
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001230 case oHostKeyAlgorithms:
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001231 charptr = &options->hostkeyalgorithms;
1232parse_keytypes:
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001233 arg = strdelim(&s);
1234 if (!arg || *arg == '\0')
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001235 fatal("%.200s line %d: Missing argument.",
1236 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001237 if (*arg != '-' &&
1238 !sshkey_names_valid2(*arg == '+' ? arg + 1 : arg, 1))
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001239 fatal("%s line %d: Bad key types '%s'.",
1240 filename, linenum, arg ? arg : "<NONE>");
1241 if (*activep && *charptr == NULL)
1242 *charptr = xstrdup(arg);
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001243 break;
1244
Damien Miller78928792000-04-12 20:17:38 +10001245 case oProtocol:
1246 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +10001247 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001248 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001249 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001250 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +10001251 if (value == SSH_PROTO_UNKNOWN)
1252 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001253 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001254 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
1255 *intptr = value;
1256 break;
1257
Damien Miller95def091999-11-25 00:26:21 +11001258 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001259 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001260 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001261 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001262 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001263 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001264 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001265 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1266 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001267 break;
1268
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001269 case oLogFacility:
1270 log_facility_ptr = &options->log_facility;
1271 arg = strdelim(&s);
1272 value = log_facility_number(arg);
1273 if (value == SYSLOG_FACILITY_NOT_SET)
1274 fatal("%.200s line %d: unsupported log facility '%s'",
1275 filename, linenum, arg ? arg : "<NONE>");
1276 if (*log_facility_ptr == -1)
1277 *log_facility_ptr = (SyslogFacility) value;
1278 break;
1279
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001280 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001281 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001282 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001283 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001284 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001285 fatal("%.200s line %d: Missing port argument.",
1286 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001287
Damien Millera699d952008-11-03 19:27:34 +11001288 if (opcode == oLocalForward ||
1289 opcode == oRemoteForward) {
1290 arg2 = strdelim(&s);
1291 if (arg2 == NULL || *arg2 == '\0')
1292 fatal("%.200s line %d: Missing target argument.",
1293 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001294
Damien Millera699d952008-11-03 19:27:34 +11001295 /* construct a string for parse_forward */
1296 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1297 } else if (opcode == oDynamicForward) {
1298 strlcpy(fwdarg, arg, sizeof(fwdarg));
1299 }
1300
1301 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001302 opcode == oDynamicForward ? 1 : 0,
1303 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001304 fatal("%.200s line %d: Bad forwarding specification.",
1305 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001306
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001307 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001308 if (opcode == oLocalForward ||
1309 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001310 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001311 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001312 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001313 }
Damien Miller95def091999-11-25 00:26:21 +11001314 break;
1315
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001316 case oClearAllForwardings:
1317 intptr = &options->clear_forwardings;
1318 goto parse_flag;
1319
Damien Miller95def091999-11-25 00:26:21 +11001320 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001321 if (cmdline)
1322 fatal("Host directive not supported as a command-line "
1323 "option");
Damien Miller95def091999-11-25 00:26:21 +11001324 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001325 arg2 = NULL;
1326 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001327 if ((flags & SSHCONF_NEVERMATCH) != 0)
1328 break;
Damien Millerfe924212011-05-15 08:44:45 +10001329 negated = *arg == '!';
1330 if (negated)
1331 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001332 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001333 if (negated) {
1334 debug("%.200s line %d: Skipping Host "
1335 "block because of negated match "
1336 "for %.100s", filename, linenum,
1337 arg);
1338 *activep = 0;
1339 break;
1340 }
1341 if (!*activep)
1342 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001343 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001344 }
Damien Millerfe924212011-05-15 08:44:45 +10001345 }
1346 if (*activep)
1347 debug("%.200s line %d: Applying options for %.100s",
1348 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001349 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001350 return 0;
1351
Damien Miller194fd902013-10-15 12:13:05 +11001352 case oMatch:
1353 if (cmdline)
1354 fatal("Host directive not supported as a command-line "
1355 "option");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001356 value = match_cfg_line(options, &s, pw, host, original_host,
1357 flags & SSHCONF_POSTCANON, filename, linenum);
Damien Miller194fd902013-10-15 12:13:05 +11001358 if (value < 0)
1359 fatal("%.200s line %d: Bad Match condition", filename,
1360 linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001361 *activep = (flags & SSHCONF_NEVERMATCH) ? 0 : value;
Damien Miller194fd902013-10-15 12:13:05 +11001362 break;
1363
Damien Miller95def091999-11-25 00:26:21 +11001364 case oEscapeChar:
1365 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001366 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001367 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001368 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org08823322015-05-22 04:45:52 +00001369 if (strcmp(arg, "none") == 0)
1370 value = SSH_ESCAPECHAR_NONE;
1371 else if (arg[1] == '\0')
1372 value = (u_char) arg[0];
1373 else if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001374 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1375 value = (u_char) arg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +11001376 else {
1377 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001378 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001379 /* NOTREACHED */
1380 value = 0; /* Avoid compiler warning. */
1381 }
1382 if (*activep && *intptr == -1)
1383 *intptr = value;
1384 break;
1385
Damien Miller20a8f972003-05-18 20:50:30 +10001386 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001387 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001388 multistate_ptr = multistate_addressfamily;
1389 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001390
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001391 case oEnableSSHKeysign:
1392 intptr = &options->enable_ssh_keysign;
1393 goto parse_flag;
1394
Damien Millerbd394c32004-03-08 23:12:36 +11001395 case oIdentitiesOnly:
1396 intptr = &options->identities_only;
1397 goto parse_flag;
1398
Damien Miller509b0102003-12-17 16:33:10 +11001399 case oServerAliveInterval:
1400 intptr = &options->server_alive_interval;
1401 goto parse_time;
1402
1403 case oServerAliveCountMax:
1404 intptr = &options->server_alive_count_max;
1405 goto parse_int;
1406
Darren Tucker46bc0752004-05-02 22:11:30 +10001407 case oSendEnv:
1408 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1409 if (strchr(arg, '=') != NULL)
1410 fatal("%s line %d: Invalid environment name.",
1411 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001412 if (!*activep)
1413 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001414 if (options->num_send_env >= MAX_SEND_ENV)
1415 fatal("%s line %d: too many send env.",
1416 filename, linenum);
1417 options->send_env[options->num_send_env++] =
1418 xstrdup(arg);
1419 }
1420 break;
1421
Damien Miller0e220db2004-06-15 10:34:08 +10001422 case oControlPath:
1423 charptr = &options->control_path;
1424 goto parse_string;
1425
1426 case oControlMaster:
1427 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001428 multistate_ptr = multistate_controlmaster;
1429 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001430
Damien Millere11e1ea2010-08-03 16:04:46 +10001431 case oControlPersist:
1432 /* no/false/yes/true, or a time spec */
1433 intptr = &options->control_persist;
1434 arg = strdelim(&s);
1435 if (!arg || *arg == '\0')
1436 fatal("%.200s line %d: Missing ControlPersist"
1437 " argument.", filename, linenum);
1438 value = 0;
1439 value2 = 0; /* timeout */
1440 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1441 value = 0;
1442 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1443 value = 1;
1444 else if ((value2 = convtime(arg)) >= 0)
1445 value = 1;
1446 else
1447 fatal("%.200s line %d: Bad ControlPersist argument.",
1448 filename, linenum);
1449 if (*activep && *intptr == -1) {
1450 *intptr = value;
1451 options->control_persist_timeout = value2;
1452 }
1453 break;
1454
Damien Millere1776152005-03-01 21:47:37 +11001455 case oHashKnownHosts:
1456 intptr = &options->hash_known_hosts;
1457 goto parse_flag;
1458
Damien Millerd27b9472005-12-13 19:29:02 +11001459 case oTunnel:
1460 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001461 multistate_ptr = multistate_tunnel;
1462 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001463
1464 case oTunnelDevice:
1465 arg = strdelim(&s);
1466 if (!arg || *arg == '\0')
1467 fatal("%.200s line %d: Missing argument.", filename, linenum);
1468 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001469 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001470 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1471 if (*activep) {
1472 options->tun_local = value;
1473 options->tun_remote = value2;
1474 }
1475 break;
1476
1477 case oLocalCommand:
1478 charptr = &options->local_command;
1479 goto parse_command;
1480
1481 case oPermitLocalCommand:
1482 intptr = &options->permit_local_command;
1483 goto parse_flag;
1484
Damien Miller10288242008-06-30 00:04:03 +10001485 case oVisualHostKey:
1486 intptr = &options->visual_host_key;
1487 goto parse_flag;
1488
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001489 case oInclude:
1490 if (cmdline)
1491 fatal("Include directive not supported as a "
1492 "command-line option");
1493 value = 0;
1494 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1495 /*
1496 * Ensure all paths are anchored. User configuration
1497 * files may begin with '~/' but system configurations
1498 * must not. If the path is relative, then treat it
1499 * as living in ~/.ssh for user configurations or
1500 * /etc/ssh for system ones.
1501 */
1502 if (*arg == '~' && (flags & SSHCONF_USERCONF) == 0)
1503 fatal("%.200s line %d: bad include path %s.",
1504 filename, linenum, arg);
1505 if (*arg != '/' && *arg != '~') {
1506 xasprintf(&arg2, "%s/%s",
1507 (flags & SSHCONF_USERCONF) ?
1508 "~/" _PATH_SSH_USER_DIR : SSHDIR, arg);
1509 } else
1510 arg2 = xstrdup(arg);
1511 memset(&gl, 0, sizeof(gl));
1512 r = glob(arg2, GLOB_TILDE, NULL, &gl);
1513 if (r == GLOB_NOMATCH) {
1514 debug("%.200s line %d: include %s matched no "
1515 "files",filename, linenum, arg2);
dtucker@openbsd.orgf6edbe92017-03-10 03:24:48 +00001516 free(arg2);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001517 continue;
1518 } else if (r != 0 || gl.gl_pathc < 0)
1519 fatal("%.200s line %d: glob failed for %s.",
1520 filename, linenum, arg2);
1521 free(arg2);
1522 oactive = *activep;
1523 for (i = 0; i < (u_int)gl.gl_pathc; i++) {
1524 debug3("%.200s line %d: Including file %s "
1525 "depth %d%s", filename, linenum,
1526 gl.gl_pathv[i], depth,
1527 oactive ? "" : " (parse only)");
1528 r = read_config_file_depth(gl.gl_pathv[i],
1529 pw, host, original_host, options,
1530 flags | SSHCONF_CHECKPERM |
1531 (oactive ? 0 : SSHCONF_NEVERMATCH),
1532 activep, depth + 1);
djm@openbsd.orgb64077f2017-01-06 09:27:52 +00001533 if (r != 1 && errno != ENOENT) {
djm@openbsd.org5e820e92017-01-06 03:53:58 +00001534 fatal("Can't open user config file "
1535 "%.100s: %.100s", gl.gl_pathv[i],
1536 strerror(errno));
1537 }
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001538 /*
1539 * don't let Match in includes clobber the
1540 * containing file's Match state.
1541 */
1542 *activep = oactive;
1543 if (r != 1)
1544 value = -1;
1545 }
1546 globfree(&gl);
1547 }
1548 if (value != 0)
1549 return value;
1550 break;
1551
Damien Miller0dac6fb2010-11-20 15:19:38 +11001552 case oIPQoS:
1553 arg = strdelim(&s);
1554 if ((value = parse_ipqos(arg)) == -1)
1555 fatal("%s line %d: Bad IPQoS value: %s",
1556 filename, linenum, arg);
1557 arg = strdelim(&s);
1558 if (arg == NULL)
1559 value2 = value;
1560 else if ((value2 = parse_ipqos(arg)) == -1)
1561 fatal("%s line %d: Bad IPQoS value: %s",
1562 filename, linenum, arg);
1563 if (*activep) {
1564 options->ip_qos_interactive = value;
1565 options->ip_qos_bulk = value2;
1566 }
1567 break;
1568
Damien Miller21771e22011-05-15 08:45:50 +10001569 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001570 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001571 multistate_ptr = multistate_requesttty;
1572 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001573
Darren Tucker07636982013-05-16 20:30:03 +10001574 case oIgnoreUnknown:
1575 charptr = &options->ignored_unknown;
1576 goto parse_string;
1577
Damien Miller1262b662013-08-21 02:44:24 +10001578 case oProxyUseFdpass:
1579 intptr = &options->proxy_use_fdpass;
1580 goto parse_flag;
1581
Damien Miller0faf7472013-10-17 11:47:23 +11001582 case oCanonicalDomains:
1583 value = options->num_canonical_domains != 0;
1584 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1585 valid_domain(arg, filename, linenum);
1586 if (!*activep || value)
1587 continue;
1588 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1589 fatal("%s line %d: too many hostname suffixes.",
1590 filename, linenum);
1591 options->canonical_domains[
1592 options->num_canonical_domains++] = xstrdup(arg);
1593 }
1594 break;
1595
Damien Miller38505592013-10-17 11:48:13 +11001596 case oCanonicalizePermittedCNAMEs:
Damien Miller0faf7472013-10-17 11:47:23 +11001597 value = options->num_permitted_cnames != 0;
1598 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1599 /* Either '*' for everything or 'list:list' */
1600 if (strcmp(arg, "*") == 0)
1601 arg2 = arg;
1602 else {
1603 lowercase(arg);
1604 if ((arg2 = strchr(arg, ':')) == NULL ||
1605 arg2[1] == '\0') {
1606 fatal("%s line %d: "
1607 "Invalid permitted CNAME \"%s\"",
1608 filename, linenum, arg);
1609 }
1610 *arg2 = '\0';
1611 arg2++;
1612 }
1613 if (!*activep || value)
1614 continue;
1615 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1616 fatal("%s line %d: too many permitted CNAMEs.",
1617 filename, linenum);
1618 cname = options->permitted_cnames +
1619 options->num_permitted_cnames++;
1620 cname->source_list = xstrdup(arg);
1621 cname->target_list = xstrdup(arg2);
1622 }
1623 break;
1624
Damien Miller38505592013-10-17 11:48:13 +11001625 case oCanonicalizeHostname:
1626 intptr = &options->canonicalize_hostname;
1627 multistate_ptr = multistate_canonicalizehostname;
Damien Miller0faf7472013-10-17 11:47:23 +11001628 goto parse_multistate;
1629
Damien Miller38505592013-10-17 11:48:13 +11001630 case oCanonicalizeMaxDots:
1631 intptr = &options->canonicalize_max_dots;
Damien Miller0faf7472013-10-17 11:47:23 +11001632 goto parse_int;
1633
Damien Miller38505592013-10-17 11:48:13 +11001634 case oCanonicalizeFallbackLocal:
1635 intptr = &options->canonicalize_fallback_local;
Damien Miller0faf7472013-10-17 11:47:23 +11001636 goto parse_flag;
1637
Damien Miller7acefbb2014-07-18 14:11:24 +10001638 case oStreamLocalBindMask:
1639 arg = strdelim(&s);
1640 if (!arg || *arg == '\0')
1641 fatal("%.200s line %d: Missing StreamLocalBindMask argument.", filename, linenum);
1642 /* Parse mode in octal format */
1643 value = strtol(arg, &endofnumber, 8);
1644 if (arg == endofnumber || value < 0 || value > 0777)
1645 fatal("%.200s line %d: Bad mask.", filename, linenum);
1646 options->fwd_opts.streamlocal_bind_mask = (mode_t)value;
1647 break;
1648
1649 case oStreamLocalBindUnlink:
1650 intptr = &options->fwd_opts.streamlocal_bind_unlink;
1651 goto parse_flag;
1652
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001653 case oRevokedHostKeys:
1654 charptr = &options->revoked_host_keys;
1655 goto parse_string;
1656
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001657 case oFingerprintHash:
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001658 intptr = &options->fingerprint_hash;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001659 arg = strdelim(&s);
1660 if (!arg || *arg == '\0')
1661 fatal("%.200s line %d: Missing argument.",
1662 filename, linenum);
1663 if ((value = ssh_digest_alg_by_name(arg)) == -1)
1664 fatal("%.200s line %d: Invalid hash algorithm \"%s\".",
1665 filename, linenum, arg);
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001666 if (*activep && *intptr == -1)
1667 *intptr = value;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001668 break;
1669
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001670 case oUpdateHostkeys:
1671 intptr = &options->update_hostkeys;
djm@openbsd.org523463a2015-02-16 22:13:32 +00001672 multistate_ptr = multistate_yesnoask;
1673 goto parse_multistate;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001674
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001675 case oHostbasedKeyTypes:
1676 charptr = &options->hostbased_key_types;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001677 goto parse_keytypes;
1678
1679 case oPubkeyAcceptedKeyTypes:
1680 charptr = &options->pubkey_key_types;
1681 goto parse_keytypes;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001682
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001683 case oAddKeysToAgent:
1684 intptr = &options->add_keys_to_agent;
1685 multistate_ptr = multistate_yesnoaskconfirm;
1686 goto parse_multistate;
1687
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001688 case oIdentityAgent:
1689 charptr = &options->identity_agent;
1690 goto parse_string;
1691
Ben Lindstrom4daea862002-06-09 20:04:02 +00001692 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001693 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001694 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001695 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001696
Damien Millerf9b3feb2003-05-16 11:38:32 +10001697 case oUnsupported:
1698 error("%s line %d: Unsupported option \"%s\"",
1699 filename, linenum, keyword);
1700 return 0;
1701
Damien Miller95def091999-11-25 00:26:21 +11001702 default:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001703 fatal("%s: Unimplemented opcode %d", __func__, opcode);
Damien Miller95def091999-11-25 00:26:21 +11001704 }
1705
1706 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001707 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001708 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001709 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001710 }
Damien Miller95def091999-11-25 00:26:21 +11001711 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001712}
1713
Damien Miller5428f641999-11-25 11:54:57 +11001714/*
1715 * Reads the config file and modifies the options accordingly. Options
1716 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001717 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001718 */
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001719int
Damien Miller194fd902013-10-15 12:13:05 +11001720read_config_file(const char *filename, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001721 const char *original_host, Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001722{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001723 int active = 1;
1724
1725 return read_config_file_depth(filename, pw, host, original_host,
1726 options, flags, &active, 0);
1727}
1728
1729#define READCONF_MAX_DEPTH 16
1730static int
1731read_config_file_depth(const char *filename, struct passwd *pw,
1732 const char *host, const char *original_host, Options *options,
1733 int flags, int *activep, int depth)
1734{
Damien Miller95def091999-11-25 00:26:21 +11001735 FILE *f;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001736 char line[4096];
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001737 int linenum;
Damien Miller95def091999-11-25 00:26:21 +11001738 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001739
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001740 if (depth < 0 || depth > READCONF_MAX_DEPTH)
1741 fatal("Too many recursive configuration includes");
1742
Damien Miller57a44762004-04-20 20:11:57 +10001743 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001744 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001745
Darren Tuckeraefa3682013-04-05 11:18:35 +11001746 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001747 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001748
Damien Miller33793852004-06-15 10:27:55 +10001749 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001750 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001751 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001752 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001753 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001754 }
1755
Damien Miller95def091999-11-25 00:26:21 +11001756 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001757
Damien Miller5428f641999-11-25 11:54:57 +11001758 /*
1759 * Mark that we are now processing the options. This flag is turned
1760 * on/off by Host specifications.
1761 */
Damien Miller95def091999-11-25 00:26:21 +11001762 linenum = 0;
1763 while (fgets(line, sizeof(line), f)) {
1764 /* Update line number counter. */
1765 linenum++;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001766 if (strlen(line) == sizeof(line) - 1)
1767 fatal("%s line %d too long", filename, linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001768 if (process_config_line_depth(options, pw, host, original_host,
1769 line, filename, linenum, activep, flags, depth) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001770 bad_options++;
1771 }
1772 fclose(f);
1773 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001774 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001775 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001776 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001777}
1778
Damien Miller13f97b22014-02-24 15:57:55 +11001779/* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
1780int
1781option_clear_or_none(const char *o)
1782{
1783 return o == NULL || strcasecmp(o, "none") == 0;
1784}
1785
Damien Miller5428f641999-11-25 11:54:57 +11001786/*
1787 * Initializes options to special values that indicate that they have not yet
1788 * been set. Read_config_file will only set options with this value. Options
1789 * are processed in the following order: command line, user config file,
1790 * system config file. Last, fill_default_options is called.
1791 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001792
Damien Miller4af51302000-04-16 11:18:38 +10001793void
Damien Miller95def091999-11-25 00:26:21 +11001794initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001795{
Damien Miller95def091999-11-25 00:26:21 +11001796 memset(options, 'X', sizeof(*options));
1797 options->forward_agent = -1;
1798 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001799 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001800 options->forward_x11_timeout = -1;
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001801 options->stdio_forward_host = NULL;
1802 options->stdio_forward_port = 0;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001803 options->clear_forwardings = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001804 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001805 options->xauth_location = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10001806 options->fwd_opts.gateway_ports = -1;
1807 options->fwd_opts.streamlocal_bind_mask = (mode_t)-1;
1808 options->fwd_opts.streamlocal_bind_unlink = -1;
Damien Miller95def091999-11-25 00:26:21 +11001809 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001810 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001811 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001812 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001813 options->gss_authentication = -1;
1814 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001815 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001816 options->kbd_interactive_authentication = -1;
1817 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001818 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001819 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001820 options->batch_mode = -1;
1821 options->check_host_ip = -1;
1822 options->strict_host_key_checking = -1;
1823 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001824 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001825 options->compression_level = -1;
1826 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001827 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001828 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001829 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001830 options->number_of_password_prompts = -1;
1831 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001832 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001833 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001834 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001835 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001836 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001837 options->num_identity_files = 0;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001838 options->num_certificate_files = 0;
Damien Miller95def091999-11-25 00:26:21 +11001839 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001840 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001841 options->proxy_command = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001842 options->jump_user = NULL;
1843 options->jump_host = NULL;
1844 options->jump_port = -1;
1845 options->jump_extra = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001846 options->user = NULL;
1847 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001848 options->num_system_hostfiles = 0;
1849 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001850 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001851 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001852 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001853 options->num_remote_forwards = 0;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001854 options->log_facility = SYSLOG_FACILITY_NOT_SET;
Damien Millerfcd93202002-02-05 12:26:34 +11001855 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001856 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001857 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001858 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001859 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001860 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001861 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001862 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001863 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001864 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001865 options->server_alive_interval = -1;
1866 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001867 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001868 options->control_path = NULL;
1869 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001870 options->control_persist = -1;
1871 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001872 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001873 options->tun_open = -1;
1874 options->tun_local = -1;
1875 options->tun_remote = -1;
1876 options->local_command = NULL;
1877 options->permit_local_command = -1;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001878 options->add_keys_to_agent = -1;
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001879 options->identity_agent = NULL;
Damien Miller10288242008-06-30 00:04:03 +10001880 options->visual_host_key = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001881 options->ip_qos_interactive = -1;
1882 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001883 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001884 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001885 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001886 options->num_canonical_domains = 0;
1887 options->num_permitted_cnames = 0;
Damien Miller38505592013-10-17 11:48:13 +11001888 options->canonicalize_max_dots = -1;
1889 options->canonicalize_fallback_local = -1;
1890 options->canonicalize_hostname = -1;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001891 options->revoked_host_keys = NULL;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001892 options->fingerprint_hash = -1;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001893 options->update_hostkeys = -1;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001894 options->hostbased_key_types = NULL;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001895 options->pubkey_key_types = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001896}
1897
Damien Miller5428f641999-11-25 11:54:57 +11001898/*
Damien Miller13f97b22014-02-24 15:57:55 +11001899 * A petite version of fill_default_options() that just fills the options
1900 * needed for hostname canonicalization to proceed.
1901 */
1902void
1903fill_default_options_for_canonicalization(Options *options)
1904{
1905 if (options->canonicalize_max_dots == -1)
1906 options->canonicalize_max_dots = 1;
1907 if (options->canonicalize_fallback_local == -1)
1908 options->canonicalize_fallback_local = 1;
1909 if (options->canonicalize_hostname == -1)
1910 options->canonicalize_hostname = SSH_CANONICALISE_NO;
1911}
1912
1913/*
Damien Miller5428f641999-11-25 11:54:57 +11001914 * Called after processing other sources of option data, this fills those
1915 * options for which no value has been specified with their default values.
1916 */
Damien Miller4af51302000-04-16 11:18:38 +10001917void
Damien Miller95def091999-11-25 00:26:21 +11001918fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919{
Damien Miller95def091999-11-25 00:26:21 +11001920 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001921 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001922 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001923 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001924 if (options->forward_x11_trusted == -1)
1925 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001926 if (options->forward_x11_timeout == -1)
1927 options->forward_x11_timeout = 1200;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001928 /*
1929 * stdio forwarding (-W) changes the default for these but we defer
1930 * setting the values so they can be overridden.
1931 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10001932 if (options->exit_on_forward_failure == -1)
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001933 options->exit_on_forward_failure =
1934 options->stdio_forward_host != NULL ? 1 : 0;
1935 if (options->clear_forwardings == -1)
1936 options->clear_forwardings =
1937 options->stdio_forward_host != NULL ? 1 : 0;
1938 if (options->clear_forwardings == 1)
1939 clear_forwardings(options);
1940
Damien Millerd3a18572000-06-07 19:55:44 +10001941 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001942 options->xauth_location = _PATH_XAUTH;
Damien Miller7acefbb2014-07-18 14:11:24 +10001943 if (options->fwd_opts.gateway_ports == -1)
1944 options->fwd_opts.gateway_ports = 0;
1945 if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)
1946 options->fwd_opts.streamlocal_bind_mask = 0177;
1947 if (options->fwd_opts.streamlocal_bind_unlink == -1)
1948 options->fwd_opts.streamlocal_bind_unlink = 0;
Damien Miller95def091999-11-25 00:26:21 +11001949 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001950 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001951 if (options->rsa_authentication == -1)
1952 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001953 if (options->pubkey_authentication == -1)
1954 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001955 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001956 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001957 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001958 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001959 if (options->gss_deleg_creds == -1)
1960 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001961 if (options->password_authentication == -1)
1962 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001963 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001964 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001965 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001966 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001967 if (options->hostbased_authentication == -1)
1968 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001969 if (options->batch_mode == -1)
1970 options->batch_mode = 0;
1971 if (options->check_host_ip == -1)
1972 options->check_host_ip = 1;
1973 if (options->strict_host_key_checking == -1)
1974 options->strict_host_key_checking = 2; /* 2 is default */
1975 if (options->compression == -1)
1976 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001977 if (options->tcp_keep_alive == -1)
1978 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001979 if (options->compression_level == -1)
1980 options->compression_level = 6;
1981 if (options->port == -1)
1982 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001983 if (options->address_family == -1)
1984 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001985 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001986 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001987 if (options->number_of_password_prompts == -1)
1988 options->number_of_password_prompts = 3;
1989 /* Selected in ssh_login(). */
1990 if (options->cipher == -1)
1991 options->cipher = SSH_CIPHER_NOT_SET;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001992 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001993 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001994 options->protocol = SSH_PROTO_2;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001995 if (options->add_keys_to_agent == -1)
1996 options->add_keys_to_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001997 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001998 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001999 add_identity_file(options, "~/",
2000 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002001 }
2002 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11002003 add_identity_file(options, "~/",
2004 _PATH_SSH_CLIENT_ID_RSA, 0);
2005 add_identity_file(options, "~/",
2006 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10002007#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11002008 add_identity_file(options, "~/",
2009 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10002010#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +11002011 add_identity_file(options, "~/",
2012 _PATH_SSH_CLIENT_ID_ED25519, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002013 }
Damien Millereba71ba2000-04-29 23:57:08 +10002014 }
Damien Miller95def091999-11-25 00:26:21 +11002015 if (options->escape_char == -1)
2016 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10002017 if (options->num_system_hostfiles == 0) {
2018 options->system_hostfiles[options->num_system_hostfiles++] =
2019 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
2020 options->system_hostfiles[options->num_system_hostfiles++] =
2021 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
2022 }
2023 if (options->num_user_hostfiles == 0) {
2024 options->user_hostfiles[options->num_user_hostfiles++] =
2025 xstrdup(_PATH_SSH_USER_HOSTFILE);
2026 options->user_hostfiles[options->num_user_hostfiles++] =
2027 xstrdup(_PATH_SSH_USER_HOSTFILE2);
2028 }
Damien Millerfcd93202002-02-05 12:26:34 +11002029 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002030 options->log_level = SYSLOG_LEVEL_INFO;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00002031 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
2032 options->log_facility = SYSLOG_FACILITY_USER;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00002033 if (options->no_host_authentication_for_localhost == - 1)
2034 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11002035 if (options->identities_only == -1)
2036 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00002037 if (options->enable_ssh_keysign == -1)
2038 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10002039 if (options->rekey_limit == -1)
2040 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002041 if (options->rekey_interval == -1)
2042 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10002043 if (options->verify_host_key_dns == -1)
2044 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11002045 if (options->server_alive_interval == -1)
2046 options->server_alive_interval = 0;
2047 if (options->server_alive_count_max == -1)
2048 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10002049 if (options->control_master == -1)
2050 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10002051 if (options->control_persist == -1) {
2052 options->control_persist = 0;
2053 options->control_persist_timeout = 0;
2054 }
Damien Millere1776152005-03-01 21:47:37 +11002055 if (options->hash_known_hosts == -1)
2056 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11002057 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11002058 options->tun_open = SSH_TUNMODE_NO;
2059 if (options->tun_local == -1)
2060 options->tun_local = SSH_TUNID_ANY;
2061 if (options->tun_remote == -1)
2062 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11002063 if (options->permit_local_command == -1)
2064 options->permit_local_command = 0;
Damien Miller10288242008-06-30 00:04:03 +10002065 if (options->visual_host_key == -1)
2066 options->visual_host_key = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11002067 if (options->ip_qos_interactive == -1)
2068 options->ip_qos_interactive = IPTOS_LOWDELAY;
2069 if (options->ip_qos_bulk == -1)
2070 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10002071 if (options->request_tty == -1)
2072 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10002073 if (options->proxy_use_fdpass == -1)
2074 options->proxy_use_fdpass = 0;
Damien Miller38505592013-10-17 11:48:13 +11002075 if (options->canonicalize_max_dots == -1)
2076 options->canonicalize_max_dots = 1;
2077 if (options->canonicalize_fallback_local == -1)
2078 options->canonicalize_fallback_local = 1;
2079 if (options->canonicalize_hostname == -1)
2080 options->canonicalize_hostname = SSH_CANONICALISE_NO;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002081 if (options->fingerprint_hash == -1)
2082 options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002083 if (options->update_hostkeys == -1)
djm@openbsd.org15ad7502015-02-02 07:41:40 +00002084 options->update_hostkeys = 0;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002085 if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
2086 kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
2087 kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
2088 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2089 &options->hostbased_key_types) != 0 ||
2090 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2091 &options->pubkey_key_types) != 0)
2092 fatal("%s: kex_assemble_names failed", __func__);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002093
Damien Millere9fc72e2013-10-15 12:14:12 +11002094#define CLEAR_ON_NONE(v) \
2095 do { \
Damien Miller13f97b22014-02-24 15:57:55 +11002096 if (option_clear_or_none(v)) { \
Damien Millere9fc72e2013-10-15 12:14:12 +11002097 free(v); \
2098 v = NULL; \
2099 } \
2100 } while(0)
2101 CLEAR_ON_NONE(options->local_command);
2102 CLEAR_ON_NONE(options->proxy_command);
2103 CLEAR_ON_NONE(options->control_path);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002104 CLEAR_ON_NONE(options->revoked_host_keys);
markus@openbsd.org1a75d142016-05-04 14:29:58 +00002105 /* options->identity_agent distinguishes NULL from 'none' */
Damien Miller95def091999-11-25 00:26:21 +11002106 /* options->user will be set in the main program if appropriate */
2107 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00002108 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00002109 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002110}
Damien Millerf91ee4c2005-03-01 21:24:33 +11002111
Damien Miller7acefbb2014-07-18 14:11:24 +10002112struct fwdarg {
2113 char *arg;
2114 int ispath;
2115};
2116
2117/*
2118 * parse_fwd_field
2119 * parses the next field in a port forwarding specification.
2120 * sets fwd to the parsed field and advances p past the colon
2121 * or sets it to NULL at end of string.
2122 * returns 0 on success, else non-zero.
2123 */
2124static int
2125parse_fwd_field(char **p, struct fwdarg *fwd)
2126{
2127 char *ep, *cp = *p;
2128 int ispath = 0;
2129
2130 if (*cp == '\0') {
2131 *p = NULL;
2132 return -1; /* end of string */
2133 }
2134
2135 /*
2136 * A field escaped with square brackets is used literally.
2137 * XXX - allow ']' to be escaped via backslash?
2138 */
2139 if (*cp == '[') {
2140 /* find matching ']' */
2141 for (ep = cp + 1; *ep != ']' && *ep != '\0'; ep++) {
2142 if (*ep == '/')
2143 ispath = 1;
2144 }
2145 /* no matching ']' or not at end of field. */
2146 if (ep[0] != ']' || (ep[1] != ':' && ep[1] != '\0'))
2147 return -1;
2148 /* NUL terminate the field and advance p past the colon */
2149 *ep++ = '\0';
2150 if (*ep != '\0')
2151 *ep++ = '\0';
2152 fwd->arg = cp + 1;
2153 fwd->ispath = ispath;
2154 *p = ep;
2155 return 0;
2156 }
2157
2158 for (cp = *p; *cp != '\0'; cp++) {
2159 switch (*cp) {
2160 case '\\':
2161 memmove(cp, cp + 1, strlen(cp + 1) + 1);
djm@openbsd.org78c2a4f2015-06-26 05:13:20 +00002162 if (*cp == '\0')
2163 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002164 break;
2165 case '/':
2166 ispath = 1;
2167 break;
2168 case ':':
2169 *cp++ = '\0';
2170 goto done;
2171 }
2172 }
2173done:
2174 fwd->arg = *p;
2175 fwd->ispath = ispath;
2176 *p = cp;
2177 return 0;
2178}
2179
Damien Millerf91ee4c2005-03-01 21:24:33 +11002180/*
2181 * parse_forward
2182 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11002183 * dynamicfwd == 0
Damien Miller7acefbb2014-07-18 14:11:24 +10002184 * [listenhost:]listenport|listenpath:connecthost:connectport|connectpath
2185 * listenpath:connectpath
Damien Millera699d952008-11-03 19:27:34 +11002186 * dynamicfwd == 1
2187 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11002188 * returns number of arguments parsed or zero on error
2189 */
2190int
Damien Miller7acefbb2014-07-18 14:11:24 +10002191parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002192{
Damien Miller7acefbb2014-07-18 14:11:24 +10002193 struct fwdarg fwdargs[4];
2194 char *p, *cp;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002195 int i;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002196
Damien Miller7acefbb2014-07-18 14:11:24 +10002197 memset(fwd, 0, sizeof(*fwd));
2198 memset(fwdargs, 0, sizeof(fwdargs));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002199
2200 cp = p = xstrdup(fwdspec);
2201
2202 /* skip leading spaces */
Damien Millerfdb23062013-11-21 13:57:15 +11002203 while (isspace((u_char)*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002204 cp++;
2205
Damien Miller7acefbb2014-07-18 14:11:24 +10002206 for (i = 0; i < 4; ++i) {
2207 if (parse_fwd_field(&cp, &fwdargs[i]) != 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002208 break;
Damien Miller7acefbb2014-07-18 14:11:24 +10002209 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002210
Damien Millerf4b39532008-11-03 19:28:21 +11002211 /* Check for trailing garbage */
Damien Miller7acefbb2014-07-18 14:11:24 +10002212 if (cp != NULL && *cp != '\0') {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002213 i = 0; /* failure */
Damien Miller7acefbb2014-07-18 14:11:24 +10002214 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002215
2216 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11002217 case 1:
Damien Miller7acefbb2014-07-18 14:11:24 +10002218 if (fwdargs[0].ispath) {
2219 fwd->listen_path = xstrdup(fwdargs[0].arg);
2220 fwd->listen_port = PORT_STREAMLOCAL;
2221 } else {
2222 fwd->listen_host = NULL;
2223 fwd->listen_port = a2port(fwdargs[0].arg);
2224 }
Damien Millera699d952008-11-03 19:27:34 +11002225 fwd->connect_host = xstrdup("socks");
2226 break;
2227
2228 case 2:
Damien Miller7acefbb2014-07-18 14:11:24 +10002229 if (fwdargs[0].ispath && fwdargs[1].ispath) {
2230 fwd->listen_path = xstrdup(fwdargs[0].arg);
2231 fwd->listen_port = PORT_STREAMLOCAL;
2232 fwd->connect_path = xstrdup(fwdargs[1].arg);
2233 fwd->connect_port = PORT_STREAMLOCAL;
2234 } else if (fwdargs[1].ispath) {
2235 fwd->listen_host = NULL;
2236 fwd->listen_port = a2port(fwdargs[0].arg);
2237 fwd->connect_path = xstrdup(fwdargs[1].arg);
2238 fwd->connect_port = PORT_STREAMLOCAL;
2239 } else {
2240 fwd->listen_host = xstrdup(fwdargs[0].arg);
2241 fwd->listen_port = a2port(fwdargs[1].arg);
2242 fwd->connect_host = xstrdup("socks");
2243 }
Damien Millera699d952008-11-03 19:27:34 +11002244 break;
2245
Damien Millerf91ee4c2005-03-01 21:24:33 +11002246 case 3:
Damien Miller7acefbb2014-07-18 14:11:24 +10002247 if (fwdargs[0].ispath) {
2248 fwd->listen_path = xstrdup(fwdargs[0].arg);
2249 fwd->listen_port = PORT_STREAMLOCAL;
2250 fwd->connect_host = xstrdup(fwdargs[1].arg);
2251 fwd->connect_port = a2port(fwdargs[2].arg);
2252 } else if (fwdargs[2].ispath) {
2253 fwd->listen_host = xstrdup(fwdargs[0].arg);
2254 fwd->listen_port = a2port(fwdargs[1].arg);
2255 fwd->connect_path = xstrdup(fwdargs[2].arg);
2256 fwd->connect_port = PORT_STREAMLOCAL;
2257 } else {
2258 fwd->listen_host = NULL;
2259 fwd->listen_port = a2port(fwdargs[0].arg);
2260 fwd->connect_host = xstrdup(fwdargs[1].arg);
2261 fwd->connect_port = a2port(fwdargs[2].arg);
2262 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002263 break;
2264
2265 case 4:
Damien Miller7acefbb2014-07-18 14:11:24 +10002266 fwd->listen_host = xstrdup(fwdargs[0].arg);
2267 fwd->listen_port = a2port(fwdargs[1].arg);
2268 fwd->connect_host = xstrdup(fwdargs[2].arg);
2269 fwd->connect_port = a2port(fwdargs[3].arg);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002270 break;
2271 default:
2272 i = 0; /* failure */
2273 }
2274
Darren Tuckera627d422013-06-02 07:31:17 +10002275 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002276
Damien Millera699d952008-11-03 19:27:34 +11002277 if (dynamicfwd) {
2278 if (!(i == 1 || i == 2))
2279 goto fail_free;
2280 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002281 if (!(i == 3 || i == 4)) {
2282 if (fwd->connect_path == NULL &&
2283 fwd->listen_path == NULL)
2284 goto fail_free;
2285 }
2286 if (fwd->connect_port <= 0 && fwd->connect_path == NULL)
Damien Millera699d952008-11-03 19:27:34 +11002287 goto fail_free;
2288 }
2289
Damien Miller7acefbb2014-07-18 14:11:24 +10002290 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) ||
2291 (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002292 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002293 if (fwd->connect_host != NULL &&
2294 strlen(fwd->connect_host) >= NI_MAXHOST)
2295 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002296 /* XXX - if connecting to a remote socket, max sun len may not match this host */
2297 if (fwd->connect_path != NULL &&
2298 strlen(fwd->connect_path) >= PATH_MAX_SUN)
2299 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11002300 if (fwd->listen_host != NULL &&
2301 strlen(fwd->listen_host) >= NI_MAXHOST)
2302 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002303 if (fwd->listen_path != NULL &&
2304 strlen(fwd->listen_path) >= PATH_MAX_SUN)
2305 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002306
2307 return (i);
2308
2309 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10002310 free(fwd->connect_host);
2311 fwd->connect_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002312 free(fwd->connect_path);
2313 fwd->connect_path = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002314 free(fwd->listen_host);
2315 fwd->listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002316 free(fwd->listen_path);
2317 fwd->listen_path = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002318 return (0);
2319}
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002320
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002321int
2322parse_jump(const char *s, Options *o, int active)
2323{
2324 char *orig, *sdup, *cp;
2325 char *host = NULL, *user = NULL;
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002326 int ret = -1, port = -1, first;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002327
2328 active &= o->proxy_command == NULL && o->jump_host == NULL;
2329
2330 orig = sdup = xstrdup(s);
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002331 first = active;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002332 do {
2333 if ((cp = strrchr(sdup, ',')) == NULL)
2334 cp = sdup; /* last */
2335 else
2336 *cp++ = '\0';
2337
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002338 if (first) {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002339 /* First argument and configuration is active */
2340 if (parse_user_host_port(cp, &user, &host, &port) != 0)
2341 goto out;
2342 } else {
2343 /* Subsequent argument or inactive configuration */
2344 if (parse_user_host_port(cp, NULL, NULL, NULL) != 0)
2345 goto out;
2346 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002347 first = 0; /* only check syntax for subsequent hosts */
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002348 } while (cp != sdup);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002349 /* success */
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002350 if (active) {
2351 o->jump_user = user;
2352 o->jump_host = host;
2353 o->jump_port = port;
2354 o->proxy_command = xstrdup("none");
2355 user = host = NULL;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002356 if ((cp = strrchr(s, ',')) != NULL && cp != s) {
2357 o->jump_extra = xstrdup(s);
2358 o->jump_extra[cp - s] = '\0';
2359 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002360 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002361 ret = 0;
2362 out:
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002363 free(orig);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002364 free(user);
2365 free(host);
2366 return ret;
2367}
2368
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002369/* XXX the following is a near-vebatim copy from servconf.c; refactor */
2370static const char *
2371fmt_multistate_int(int val, const struct multistate *m)
2372{
2373 u_int i;
2374
2375 for (i = 0; m[i].key != NULL; i++) {
2376 if (m[i].value == val)
2377 return m[i].key;
2378 }
2379 return "UNKNOWN";
2380}
2381
2382static const char *
2383fmt_intarg(OpCodes code, int val)
2384{
2385 if (val == -1)
2386 return "unset";
2387 switch (code) {
2388 case oAddressFamily:
2389 return fmt_multistate_int(val, multistate_addressfamily);
2390 case oVerifyHostKeyDNS:
2391 case oStrictHostKeyChecking:
djm@openbsd.org523463a2015-02-16 22:13:32 +00002392 case oUpdateHostkeys:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002393 return fmt_multistate_int(val, multistate_yesnoask);
2394 case oControlMaster:
2395 return fmt_multistate_int(val, multistate_controlmaster);
2396 case oTunnel:
2397 return fmt_multistate_int(val, multistate_tunnel);
2398 case oRequestTTY:
2399 return fmt_multistate_int(val, multistate_requesttty);
2400 case oCanonicalizeHostname:
2401 return fmt_multistate_int(val, multistate_canonicalizehostname);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002402 case oFingerprintHash:
2403 return ssh_digest_alg_name(val);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002404 case oProtocol:
2405 switch (val) {
2406 case SSH_PROTO_1:
2407 return "1";
2408 case SSH_PROTO_2:
2409 return "2";
2410 case (SSH_PROTO_1|SSH_PROTO_2):
2411 return "2,1";
2412 default:
2413 return "UNKNOWN";
2414 }
2415 default:
2416 switch (val) {
2417 case 0:
2418 return "no";
2419 case 1:
2420 return "yes";
2421 default:
2422 return "UNKNOWN";
2423 }
2424 }
2425}
2426
2427static const char *
2428lookup_opcode_name(OpCodes code)
2429{
2430 u_int i;
2431
2432 for (i = 0; keywords[i].name != NULL; i++)
2433 if (keywords[i].opcode == code)
2434 return(keywords[i].name);
2435 return "UNKNOWN";
2436}
2437
2438static void
2439dump_cfg_int(OpCodes code, int val)
2440{
2441 printf("%s %d\n", lookup_opcode_name(code), val);
2442}
2443
2444static void
2445dump_cfg_fmtint(OpCodes code, int val)
2446{
2447 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
2448}
2449
2450static void
2451dump_cfg_string(OpCodes code, const char *val)
2452{
2453 if (val == NULL)
2454 return;
2455 printf("%s %s\n", lookup_opcode_name(code), val);
2456}
2457
2458static void
2459dump_cfg_strarray(OpCodes code, u_int count, char **vals)
2460{
2461 u_int i;
2462
2463 for (i = 0; i < count; i++)
2464 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
2465}
2466
2467static void
2468dump_cfg_strarray_oneline(OpCodes code, u_int count, char **vals)
2469{
2470 u_int i;
2471
2472 printf("%s", lookup_opcode_name(code));
2473 for (i = 0; i < count; i++)
2474 printf(" %s", vals[i]);
2475 printf("\n");
2476}
2477
2478static void
2479dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds)
2480{
2481 const struct Forward *fwd;
2482 u_int i;
2483
2484 /* oDynamicForward */
2485 for (i = 0; i < count; i++) {
2486 fwd = &fwds[i];
djm@openbsd.org4833d012017-01-30 00:34:01 +00002487 if (code == oDynamicForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002488 strcmp(fwd->connect_host, "socks") != 0)
2489 continue;
djm@openbsd.org4833d012017-01-30 00:34:01 +00002490 if (code == oLocalForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002491 strcmp(fwd->connect_host, "socks") == 0)
2492 continue;
2493 printf("%s", lookup_opcode_name(code));
2494 if (fwd->listen_port == PORT_STREAMLOCAL)
2495 printf(" %s", fwd->listen_path);
2496 else if (fwd->listen_host == NULL)
2497 printf(" %d", fwd->listen_port);
2498 else {
2499 printf(" [%s]:%d",
2500 fwd->listen_host, fwd->listen_port);
2501 }
2502 if (code != oDynamicForward) {
2503 if (fwd->connect_port == PORT_STREAMLOCAL)
2504 printf(" %s", fwd->connect_path);
2505 else if (fwd->connect_host == NULL)
2506 printf(" %d", fwd->connect_port);
2507 else {
2508 printf(" [%s]:%d",
2509 fwd->connect_host, fwd->connect_port);
2510 }
2511 }
2512 printf("\n");
2513 }
2514}
2515
2516void
2517dump_client_config(Options *o, const char *host)
2518{
2519 int i;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002520 char buf[8];
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002521
djm@openbsd.org60a92472015-08-21 23:53:08 +00002522 /* This is normally prepared in ssh_kex2 */
2523 if (kex_assemble_names(KEX_DEFAULT_PK_ALG, &o->hostkeyalgorithms) != 0)
2524 fatal("%s: kex_assemble_names failed", __func__);
2525
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002526 /* Most interesting options first: user, host, port */
2527 dump_cfg_string(oUser, o->user);
2528 dump_cfg_string(oHostName, host);
2529 dump_cfg_int(oPort, o->port);
2530
2531 /* Flag options */
2532 dump_cfg_fmtint(oAddressFamily, o->address_family);
2533 dump_cfg_fmtint(oBatchMode, o->batch_mode);
2534 dump_cfg_fmtint(oCanonicalizeFallbackLocal, o->canonicalize_fallback_local);
2535 dump_cfg_fmtint(oCanonicalizeHostname, o->canonicalize_hostname);
2536 dump_cfg_fmtint(oChallengeResponseAuthentication, o->challenge_response_authentication);
2537 dump_cfg_fmtint(oCheckHostIP, o->check_host_ip);
2538 dump_cfg_fmtint(oCompression, o->compression);
2539 dump_cfg_fmtint(oControlMaster, o->control_master);
2540 dump_cfg_fmtint(oEnableSSHKeysign, o->enable_ssh_keysign);
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00002541 dump_cfg_fmtint(oClearAllForwardings, o->clear_forwardings);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002542 dump_cfg_fmtint(oExitOnForwardFailure, o->exit_on_forward_failure);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002543 dump_cfg_fmtint(oFingerprintHash, o->fingerprint_hash);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002544 dump_cfg_fmtint(oForwardAgent, o->forward_agent);
2545 dump_cfg_fmtint(oForwardX11, o->forward_x11);
2546 dump_cfg_fmtint(oForwardX11Trusted, o->forward_x11_trusted);
2547 dump_cfg_fmtint(oGatewayPorts, o->fwd_opts.gateway_ports);
2548#ifdef GSSAPI
2549 dump_cfg_fmtint(oGssAuthentication, o->gss_authentication);
2550 dump_cfg_fmtint(oGssDelegateCreds, o->gss_deleg_creds);
2551#endif /* GSSAPI */
2552 dump_cfg_fmtint(oHashKnownHosts, o->hash_known_hosts);
2553 dump_cfg_fmtint(oHostbasedAuthentication, o->hostbased_authentication);
2554 dump_cfg_fmtint(oIdentitiesOnly, o->identities_only);
2555 dump_cfg_fmtint(oKbdInteractiveAuthentication, o->kbd_interactive_authentication);
2556 dump_cfg_fmtint(oNoHostAuthenticationForLocalhost, o->no_host_authentication_for_localhost);
2557 dump_cfg_fmtint(oPasswordAuthentication, o->password_authentication);
2558 dump_cfg_fmtint(oPermitLocalCommand, o->permit_local_command);
2559 dump_cfg_fmtint(oProtocol, o->protocol);
2560 dump_cfg_fmtint(oProxyUseFdpass, o->proxy_use_fdpass);
2561 dump_cfg_fmtint(oPubkeyAuthentication, o->pubkey_authentication);
2562 dump_cfg_fmtint(oRequestTTY, o->request_tty);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002563#ifdef WITH_RSA1
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002564 dump_cfg_fmtint(oRhostsRSAAuthentication, o->rhosts_rsa_authentication);
2565 dump_cfg_fmtint(oRSAAuthentication, o->rsa_authentication);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002566#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002567 dump_cfg_fmtint(oStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
2568 dump_cfg_fmtint(oStrictHostKeyChecking, o->strict_host_key_checking);
2569 dump_cfg_fmtint(oTCPKeepAlive, o->tcp_keep_alive);
2570 dump_cfg_fmtint(oTunnel, o->tun_open);
2571 dump_cfg_fmtint(oUsePrivilegedPort, o->use_privileged_port);
2572 dump_cfg_fmtint(oVerifyHostKeyDNS, o->verify_host_key_dns);
2573 dump_cfg_fmtint(oVisualHostKey, o->visual_host_key);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002574 dump_cfg_fmtint(oUpdateHostkeys, o->update_hostkeys);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002575
2576 /* Integer options */
2577 dump_cfg_int(oCanonicalizeMaxDots, o->canonicalize_max_dots);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002578#ifdef WITH_SSH1
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002579 dump_cfg_int(oCompressionLevel, o->compression_level);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002580#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002581 dump_cfg_int(oConnectionAttempts, o->connection_attempts);
2582 dump_cfg_int(oForwardX11Timeout, o->forward_x11_timeout);
2583 dump_cfg_int(oNumberOfPasswordPrompts, o->number_of_password_prompts);
2584 dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);
2585 dump_cfg_int(oServerAliveInterval, o->server_alive_interval);
2586
2587 /* String options */
2588 dump_cfg_string(oBindAddress, o->bind_address);
2589 dump_cfg_string(oCiphers, o->ciphers ? o->ciphers : KEX_CLIENT_ENCRYPT);
2590 dump_cfg_string(oControlPath, o->control_path);
djm@openbsd.org60a92472015-08-21 23:53:08 +00002591 dump_cfg_string(oHostKeyAlgorithms, o->hostkeyalgorithms);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002592 dump_cfg_string(oHostKeyAlias, o->host_key_alias);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002593 dump_cfg_string(oHostbasedKeyTypes, o->hostbased_key_types);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00002594 dump_cfg_string(oIdentityAgent, o->identity_agent);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002595 dump_cfg_string(oKbdInteractiveDevices, o->kbd_interactive_devices);
2596 dump_cfg_string(oKexAlgorithms, o->kex_algorithms ? o->kex_algorithms : KEX_CLIENT_KEX);
2597 dump_cfg_string(oLocalCommand, o->local_command);
2598 dump_cfg_string(oLogLevel, log_level_name(o->log_level));
2599 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002600#ifdef ENABLE_PKCS11
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002601 dump_cfg_string(oPKCS11Provider, o->pkcs11_provider);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002602#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002603 dump_cfg_string(oPreferredAuthentications, o->preferred_authentications);
djm@openbsd.org0c46bbe2015-10-07 15:59:12 +00002604 dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002605 dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002606 dump_cfg_string(oXAuthLocation, o->xauth_location);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002607
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002608 /* Forwards */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002609 dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards);
2610 dump_cfg_forwards(oLocalForward, o->num_local_forwards, o->local_forwards);
2611 dump_cfg_forwards(oRemoteForward, o->num_remote_forwards, o->remote_forwards);
2612
2613 /* String array options */
2614 dump_cfg_strarray(oIdentityFile, o->num_identity_files, o->identity_files);
2615 dump_cfg_strarray_oneline(oCanonicalDomains, o->num_canonical_domains, o->canonical_domains);
2616 dump_cfg_strarray_oneline(oGlobalKnownHostsFile, o->num_system_hostfiles, o->system_hostfiles);
2617 dump_cfg_strarray_oneline(oUserKnownHostsFile, o->num_user_hostfiles, o->user_hostfiles);
2618 dump_cfg_strarray(oSendEnv, o->num_send_env, o->send_env);
2619
2620 /* Special cases */
2621
2622 /* oConnectTimeout */
2623 if (o->connection_timeout == -1)
2624 printf("connecttimeout none\n");
2625 else
2626 dump_cfg_int(oConnectTimeout, o->connection_timeout);
2627
2628 /* oTunnelDevice */
2629 printf("tunneldevice");
2630 if (o->tun_local == SSH_TUNID_ANY)
2631 printf(" any");
2632 else
2633 printf(" %d", o->tun_local);
2634 if (o->tun_remote == SSH_TUNID_ANY)
2635 printf(":any");
2636 else
2637 printf(":%d", o->tun_remote);
2638 printf("\n");
2639
2640 /* oCanonicalizePermittedCNAMEs */
2641 if ( o->num_permitted_cnames > 0) {
2642 printf("canonicalizePermittedcnames");
2643 for (i = 0; i < o->num_permitted_cnames; i++) {
2644 printf(" %s:%s", o->permitted_cnames[i].source_list,
2645 o->permitted_cnames[i].target_list);
2646 }
2647 printf("\n");
2648 }
2649
2650 /* oCipher */
2651 if (o->cipher != SSH_CIPHER_NOT_SET)
2652 printf("Cipher %s\n", cipher_name(o->cipher));
2653
2654 /* oControlPersist */
2655 if (o->control_persist == 0 || o->control_persist_timeout == 0)
2656 dump_cfg_fmtint(oControlPersist, o->control_persist);
2657 else
2658 dump_cfg_int(oControlPersist, o->control_persist_timeout);
2659
2660 /* oEscapeChar */
2661 if (o->escape_char == SSH_ESCAPECHAR_NONE)
2662 printf("escapechar none\n");
2663 else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002664 vis(buf, o->escape_char, VIS_WHITE, 0);
2665 printf("escapechar %s\n", buf);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002666 }
2667
2668 /* oIPQoS */
2669 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
2670 printf("%s\n", iptos2str(o->ip_qos_bulk));
2671
2672 /* oRekeyLimit */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00002673 printf("rekeylimit %llu %d\n",
2674 (unsigned long long)o->rekey_limit, o->rekey_interval);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002675
2676 /* oStreamLocalBindMask */
2677 printf("streamlocalbindmask 0%o\n",
2678 o->fwd_opts.streamlocal_bind_mask);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002679
2680 /* oProxyCommand / oProxyJump */
2681 if (o->jump_host == NULL)
2682 dump_cfg_string(oProxyCommand, o->proxy_command);
2683 else {
2684 /* Check for numeric addresses */
2685 i = strchr(o->jump_host, ':') != NULL ||
2686 strspn(o->jump_host, "1234567890.") == strlen(o->jump_host);
2687 snprintf(buf, sizeof(buf), "%d", o->jump_port);
2688 printf("proxyjump %s%s%s%s%s%s%s%s%s\n",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002689 /* optional additional jump spec */
2690 o->jump_extra == NULL ? "" : o->jump_extra,
2691 o->jump_extra == NULL ? "" : ",",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002692 /* optional user */
2693 o->jump_user == NULL ? "" : o->jump_user,
2694 o->jump_user == NULL ? "" : "@",
2695 /* opening [ if hostname is numeric */
2696 i ? "[" : "",
2697 /* mandatory hostname */
2698 o->jump_host,
2699 /* closing ] if hostname is numeric */
2700 i ? "]" : "",
2701 /* optional port number */
2702 o->jump_port <= 0 ? "" : ":",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002703 o->jump_port <= 0 ? "" : buf);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002704 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002705}