blob: 4be5327a9f207d7f5dd3d0c0f6efb0f26ec2e01b [file] [log] [blame]
djm@openbsd.org947a3e82017-05-20 02:35:47 +00001/* $OpenBSD: readconf.c,v 1.276 2017/05/20 02:35:47 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Functions for reading the configuration files.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
18#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100019#include <sys/socket.h>
Damien Miller194fd902013-10-15 12:13:05 +110020#include <sys/wait.h>
Damien 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,
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000155 oUsePrivilegedPort, oLogFacility, oLogLevel, oCiphers, 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,
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000174 oIgnore, 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 */
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000184 { "protocol", oIgnore }, /* NB. silently ignored */
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000185 { "cipher", oDeprecated },
djm@openbsd.org381a2612017-01-30 00:38:50 +0000186 { "fallbacktorsh", oDeprecated },
187 { "globalknownhostsfile2", oDeprecated },
188 { "rhostsauthentication", oDeprecated },
189 { "userknownhostsfile2", oDeprecated },
190 { "useroaming", oDeprecated },
191 { "usersh", oDeprecated },
192
193 /* Unsupported options */
194 { "afstokenpassing", oUnsupported },
195 { "kerberosauthentication", oUnsupported },
196 { "kerberostgtpassing", oUnsupported },
197
198 /* Sometimes-unsupported options */
199#if defined(GSSAPI)
200 { "gssapiauthentication", oGssAuthentication },
201 { "gssapidelegatecredentials", oGssDelegateCreds },
202# else
203 { "gssapiauthentication", oUnsupported },
204 { "gssapidelegatecredentials", oUnsupported },
205#endif
206#ifdef ENABLE_PKCS11
207 { "smartcarddevice", oPKCS11Provider },
208 { "pkcs11provider", oPKCS11Provider },
209# else
210 { "smartcarddevice", oUnsupported },
211 { "pkcs11provider", oUnsupported },
212#endif
djm@openbsd.org381a2612017-01-30 00:38:50 +0000213 { "rsaauthentication", oUnsupported },
214 { "rhostsrsaauthentication", oUnsupported },
215 { "compressionlevel", oUnsupported },
djm@openbsd.org381a2612017-01-30 00:38:50 +0000216
Damien Miller95def091999-11-25 00:26:21 +1100217 { "forwardagent", oForwardAgent },
218 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000219 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000220 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000221 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000222 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100223 { "gatewayports", oGatewayPorts },
224 { "useprivilegedport", oUsePrivilegedPort },
Damien Miller95def091999-11-25 00:26:21 +1100225 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100226 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
227 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100228 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000229 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstromd69dab32001-04-12 23:36:05 +0000230 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000231 { "challengeresponseauthentication", oChallengeResponseAuthentication },
232 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
233 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100234 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100235 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100236 { "identitiesonly", oIdentitiesOnly },
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000237 { "certificatefile", oCertificateFile },
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000238 { "addkeystoagent", oAddKeysToAgent },
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +0000239 { "identityagent", oIdentityAgent },
Damien Miller95def091999-11-25 00:26:21 +1100240 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000241 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100242 { "proxycommand", oProxyCommand },
243 { "port", oPort },
Damien Miller78928792000-04-12 20:17:38 +1000244 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000245 { "macs", oMacs },
Damien Miller95def091999-11-25 00:26:21 +1100246 { "remoteforward", oRemoteForward },
247 { "localforward", oLocalForward },
248 { "user", oUser },
249 { "host", oHost },
Damien Miller194fd902013-10-15 12:13:05 +1100250 { "match", oMatch },
Damien Miller95def091999-11-25 00:26:21 +1100251 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100252 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100253 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller95def091999-11-25 00:26:21 +1100254 { "connectionattempts", oConnectionAttempts },
255 { "batchmode", oBatchMode },
256 { "checkhostip", oCheckHostIP },
257 { "stricthostkeychecking", oStrictHostKeyChecking },
258 { "compression", oCompression },
Damien Miller12c150e2003-12-17 16:31:10 +1100259 { "tcpkeepalive", oTCPKeepAlive },
260 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100261 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000262 { "syslogfacility", oLogFacility },
Damien Miller95def091999-11-25 00:26:21 +1100263 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000264 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000265 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000266 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000267 { "bindaddress", oBindAddress },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100268 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000269 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000270 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100271 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000272 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000273 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000274 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100275 { "serveraliveinterval", oServerAliveInterval },
276 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000277 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000278 { "controlpath", oControlPath },
279 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000280 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100281 { "hashknownhosts", oHashKnownHosts },
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000282 { "include", oInclude },
Damien Millerd27b9472005-12-13 19:29:02 +1100283 { "tunnel", oTunnel },
284 { "tunneldevice", oTunnelDevice },
285 { "localcommand", oLocalCommand },
286 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000287 { "visualhostkey", oVisualHostKey },
Damien Millerd5f62bf2010-09-24 22:11:14 +1000288 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100289 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000290 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000291 { "proxyusefdpass", oProxyUseFdpass },
Damien Miller0faf7472013-10-17 11:47:23 +1100292 { "canonicaldomains", oCanonicalDomains },
Damien Miller38505592013-10-17 11:48:13 +1100293 { "canonicalizefallbacklocal", oCanonicalizeFallbackLocal },
294 { "canonicalizehostname", oCanonicalizeHostname },
295 { "canonicalizemaxdots", oCanonicalizeMaxDots },
296 { "canonicalizepermittedcnames", oCanonicalizePermittedCNAMEs },
Damien Miller7acefbb2014-07-18 14:11:24 +1000297 { "streamlocalbindmask", oStreamLocalBindMask },
298 { "streamlocalbindunlink", oStreamLocalBindUnlink },
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000299 { "revokedhostkeys", oRevokedHostKeys },
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000300 { "fingerprinthash", oFingerprintHash },
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000301 { "updatehostkeys", oUpdateHostkeys },
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000302 { "hostbasedkeytypes", oHostbasedKeyTypes },
markus@openbsd.org3a1638d2015-07-10 06:21:53 +0000303 { "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes },
Darren Tucker07636982013-05-16 20:30:03 +1000304 { "ignoreunknown", oIgnoreUnknown },
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000305 { "proxyjump", oProxyJump },
Damien Miller01ed2272008-11-05 16:20:46 +1100306
Ben Lindstrom65366a82001-12-06 16:32:47 +0000307 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100308};
309
Damien Miller5428f641999-11-25 11:54:57 +1100310/*
311 * Adds a local TCP/IP port forward to options. Never returns if there is an
312 * error.
313 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314
Damien Miller4af51302000-04-16 11:18:38 +1000315void
Damien Miller7acefbb2014-07-18 14:11:24 +1000316add_local_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317{
Damien Miller7acefbb2014-07-18 14:11:24 +1000318 struct Forward *fwd;
Damien Miller95def091999-11-25 00:26:21 +1100319 extern uid_t original_real_uid;
Darren Tucker5f41f032016-04-08 21:14:13 +1000320 int i;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000321
jsg@openbsd.org79d078e2016-10-25 04:08:13 +0000322 if (!bind_permitted(newfwd->listen_port, original_real_uid) &&
Damien Miller7acefbb2014-07-18 14:11:24 +1000323 newfwd->listen_path == NULL)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000324 fatal("Privileged ports can only be forwarded by root.");
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000325 /* Don't add duplicates */
326 for (i = 0; i < options->num_local_forwards; i++) {
327 if (forward_equals(newfwd, options->local_forwards + i))
328 return;
329 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000330 options->local_forwards = xreallocarray(options->local_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000331 options->num_local_forwards + 1,
332 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100333 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100334
Damien Miller1a0442f2008-11-05 16:30:06 +1100335 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100336 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000337 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100338 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100339 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000340 fwd->connect_path = newfwd->connect_path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341}
342
Damien Miller5428f641999-11-25 11:54:57 +1100343/*
344 * Adds a remote TCP/IP port forward to options. Never returns if there is
345 * an error.
346 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347
Damien Miller4af51302000-04-16 11:18:38 +1000348void
Damien Miller7acefbb2014-07-18 14:11:24 +1000349add_remote_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350{
Damien Miller7acefbb2014-07-18 14:11:24 +1000351 struct Forward *fwd;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000352 int i;
Damien Miller232cfb12010-06-26 09:50:30 +1000353
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000354 /* Don't add duplicates */
355 for (i = 0; i < options->num_remote_forwards; i++) {
356 if (forward_equals(newfwd, options->remote_forwards + i))
357 return;
358 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000359 options->remote_forwards = xreallocarray(options->remote_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000360 options->num_remote_forwards + 1,
361 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100362 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100363
Damien Miller1a0442f2008-11-05 16:30:06 +1100364 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100365 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000366 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100367 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100368 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000369 fwd->connect_path = newfwd->connect_path;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100370 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000371 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372}
373
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000374static void
375clear_forwardings(Options *options)
376{
377 int i;
378
Damien Millerf91ee4c2005-03-01 21:24:33 +1100379 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000380 free(options->local_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000381 free(options->local_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000382 free(options->local_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000383 free(options->local_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100384 }
Damien Miller232cfb12010-06-26 09:50:30 +1000385 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000386 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000387 options->local_forwards = NULL;
388 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000389 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100390 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000391 free(options->remote_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000392 free(options->remote_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000393 free(options->remote_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000394 free(options->remote_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100395 }
Damien Miller232cfb12010-06-26 09:50:30 +1000396 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000397 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000398 options->remote_forwards = NULL;
399 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000400 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100401 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000402}
403
Darren Tucker19104782013-04-05 11:13:08 +1100404void
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000405add_certificate_file(Options *options, const char *path, int userprovided)
406{
407 int i;
408
409 if (options->num_certificate_files >= SSH_MAX_CERTIFICATE_FILES)
410 fatal("Too many certificate files specified (max %d)",
411 SSH_MAX_CERTIFICATE_FILES);
412
413 /* Avoid registering duplicates */
414 for (i = 0; i < options->num_certificate_files; i++) {
415 if (options->certificate_file_userprovided[i] == userprovided &&
416 strcmp(options->certificate_files[i], path) == 0) {
417 debug2("%s: ignoring duplicate key %s", __func__, path);
418 return;
419 }
420 }
421
422 options->certificate_file_userprovided[options->num_certificate_files] =
423 userprovided;
424 options->certificate_files[options->num_certificate_files++] =
425 xstrdup(path);
426}
427
428void
Darren Tucker19104782013-04-05 11:13:08 +1100429add_identity_file(Options *options, const char *dir, const char *filename,
430 int userprovided)
431{
432 char *path;
Damien Miller15271902014-05-15 13:47:56 +1000433 int i;
Darren Tucker19104782013-04-05 11:13:08 +1100434
435 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
436 fatal("Too many identity files specified (max %d)",
437 SSH_MAX_IDENTITY_FILES);
438
439 if (dir == NULL) /* no dir, filename is absolute */
440 path = xstrdup(filename);
djm@openbsd.org947a3e82017-05-20 02:35:47 +0000441 else if (xasprintf(&path, "%s%s", dir, filename) >= PATH_MAX)
442 fatal("Identity file path %s too long", path);
Darren Tucker19104782013-04-05 11:13:08 +1100443
Damien Miller15271902014-05-15 13:47:56 +1000444 /* Avoid registering duplicates */
445 for (i = 0; i < options->num_identity_files; i++) {
446 if (options->identity_file_userprovided[i] == userprovided &&
447 strcmp(options->identity_files[i], path) == 0) {
448 debug2("%s: ignoring duplicate key %s", __func__, path);
449 free(path);
450 return;
451 }
452 }
453
Darren Tucker19104782013-04-05 11:13:08 +1100454 options->identity_file_userprovided[options->num_identity_files] =
455 userprovided;
456 options->identity_files[options->num_identity_files++] = path;
457}
458
Damien Miller194fd902013-10-15 12:13:05 +1100459int
460default_ssh_port(void)
461{
462 static int port;
463 struct servent *sp;
464
465 if (port == 0) {
466 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
467 port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
468 }
469 return port;
470}
471
472/*
473 * Execute a command in a shell.
474 * Return its exit status or -1 on abnormal exit.
475 */
476static int
477execute_in_shell(const char *cmd)
478{
dtucker@openbsd.org97e184e2015-10-25 23:14:03 +0000479 char *shell;
Damien Miller194fd902013-10-15 12:13:05 +1100480 pid_t pid;
481 int devnull, status;
482 extern uid_t original_real_uid;
483
484 if ((shell = getenv("SHELL")) == NULL)
485 shell = _PATH_BSHELL;
486
Damien Miller194fd902013-10-15 12:13:05 +1100487 /* Need this to redirect subprocess stdin/out */
488 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
489 fatal("open(/dev/null): %s", strerror(errno));
490
491 debug("Executing command: '%.500s'", cmd);
492
493 /* Fork and execute the command. */
494 if ((pid = fork()) == 0) {
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000495 char *argv[4];
Damien Miller194fd902013-10-15 12:13:05 +1100496
497 /* Child. Permanently give up superuser privileges. */
498 permanently_drop_suid(original_real_uid);
499
500 /* Redirect child stdin and stdout. Leave stderr */
501 if (dup2(devnull, STDIN_FILENO) == -1)
502 fatal("dup2: %s", strerror(errno));
503 if (dup2(devnull, STDOUT_FILENO) == -1)
504 fatal("dup2: %s", strerror(errno));
505 if (devnull > STDERR_FILENO)
506 close(devnull);
507 closefrom(STDERR_FILENO + 1);
508
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000509 argv[0] = shell;
510 argv[1] = "-c";
511 argv[2] = xstrdup(cmd);
512 argv[3] = NULL;
513
Damien Miller194fd902013-10-15 12:13:05 +1100514 execv(argv[0], argv);
515 error("Unable to execute '%.100s': %s", cmd, strerror(errno));
516 /* Die with signal to make this error apparent to parent. */
517 signal(SIGTERM, SIG_DFL);
518 kill(getpid(), SIGTERM);
519 _exit(1);
520 }
521 /* Parent. */
522 if (pid < 0)
523 fatal("%s: fork: %.100s", __func__, strerror(errno));
524
525 close(devnull);
Damien Miller194fd902013-10-15 12:13:05 +1100526
527 while (waitpid(pid, &status, 0) == -1) {
528 if (errno != EINTR && errno != EAGAIN)
529 fatal("%s: waitpid: %s", __func__, strerror(errno));
530 }
531 if (!WIFEXITED(status)) {
532 error("command '%.100s' exited abnormally", cmd);
533 return -1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000534 }
Damien Miller194fd902013-10-15 12:13:05 +1100535 debug3("command returned status %d", WEXITSTATUS(status));
536 return WEXITSTATUS(status);
537}
538
539/*
540 * Parse and execute a Match directive.
541 */
542static int
543match_cfg_line(Options *options, char **condition, struct passwd *pw,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000544 const char *host_arg, const char *original_host, int post_canon,
545 const char *filename, int linenum)
Damien Miller194fd902013-10-15 12:13:05 +1100546{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000547 char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;
Damien Miller084bcd22013-10-23 16:30:51 +1100548 const char *ruser;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000549 int r, port, this_result, result = 1, attributes = 0, negate;
Damien Miller194fd902013-10-15 12:13:05 +1100550 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
551
552 /*
553 * Configuration is likely to be incomplete at this point so we
554 * must be prepared to use default values.
555 */
556 port = options->port <= 0 ? default_ssh_port() : options->port;
557 ruser = options->user == NULL ? pw->pw_name : options->user;
djm@openbsd.org5a622842016-02-08 23:40:12 +0000558 if (post_canon) {
559 host = xstrdup(options->hostname);
560 } else if (options->hostname != NULL) {
Damien Millereff5cad2013-10-23 16:31:10 +1100561 /* NB. Please keep in sync with ssh.c:main() */
Damien Miller084bcd22013-10-23 16:30:51 +1100562 host = percent_expand(options->hostname,
563 "h", host_arg, (char *)NULL);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000564 } else {
Damien Miller084bcd22013-10-23 16:30:51 +1100565 host = xstrdup(host_arg);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000566 }
Damien Miller194fd902013-10-15 12:13:05 +1100567
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000568 debug2("checking match for '%s' host %s originally %s",
569 cp, host, original_host);
570 while ((oattrib = attrib = strdelim(&cp)) && *attrib != '\0') {
571 criteria = NULL;
572 this_result = 1;
573 if ((negate = attrib[0] == '!'))
574 attrib++;
575 /* criteria "all" and "canonical" have no argument */
Damien Millercf31f382013-10-24 21:02:56 +1100576 if (strcasecmp(attrib, "all") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000577 if (attributes > 1 ||
Damien Millercf31f382013-10-24 21:02:56 +1100578 ((arg = strdelim(&cp)) != NULL && *arg != '\0')) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000579 error("%.200s line %d: '%s' cannot be combined "
580 "with other Match attributes",
581 filename, linenum, oattrib);
Damien Millercf31f382013-10-24 21:02:56 +1100582 result = -1;
583 goto out;
584 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000585 if (result)
586 result = negate ? 0 : 1;
Damien Millercf31f382013-10-24 21:02:56 +1100587 goto out;
588 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000589 attributes++;
590 if (strcasecmp(attrib, "canonical") == 0) {
591 r = !!post_canon; /* force bitmask member to boolean */
592 if (r == (negate ? 1 : 0))
593 this_result = result = 0;
594 debug3("%.200s line %d: %smatched '%s'",
595 filename, linenum,
596 this_result ? "" : "not ", oattrib);
597 continue;
598 }
599 /* All other criteria require an argument */
Damien Miller194fd902013-10-15 12:13:05 +1100600 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
601 error("Missing Match criteria for %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100602 result = -1;
603 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100604 }
Damien Miller194fd902013-10-15 12:13:05 +1100605 if (strcasecmp(attrib, "host") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000606 criteria = xstrdup(host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000607 r = match_hostname(host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000608 if (r == (negate ? 1 : 0))
609 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100610 } else if (strcasecmp(attrib, "originalhost") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000611 criteria = xstrdup(original_host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000612 r = match_hostname(original_host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000613 if (r == (negate ? 1 : 0))
614 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100615 } else if (strcasecmp(attrib, "user") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000616 criteria = xstrdup(ruser);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000617 r = match_pattern_list(ruser, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000618 if (r == (negate ? 1 : 0))
619 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100620 } else if (strcasecmp(attrib, "localuser") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000621 criteria = xstrdup(pw->pw_name);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000622 r = match_pattern_list(pw->pw_name, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000623 if (r == (negate ? 1 : 0))
624 this_result = result = 0;
Damien Miller8a04be72013-10-23 16:29:40 +1100625 } else if (strcasecmp(attrib, "exec") == 0) {
Damien Miller194fd902013-10-15 12:13:05 +1100626 if (gethostname(thishost, sizeof(thishost)) == -1)
627 fatal("gethostname: %s", strerror(errno));
628 strlcpy(shorthost, thishost, sizeof(shorthost));
629 shorthost[strcspn(thishost, ".")] = '\0';
630 snprintf(portstr, sizeof(portstr), "%d", port);
631
632 cmd = percent_expand(arg,
633 "L", shorthost,
634 "d", pw->pw_dir,
635 "h", host,
636 "l", thishost,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000637 "n", original_host,
Damien Miller194fd902013-10-15 12:13:05 +1100638 "p", portstr,
639 "r", ruser,
640 "u", pw->pw_name,
641 (char *)NULL);
Damien Miller06287802014-02-24 15:56:45 +1100642 if (result != 1) {
643 /* skip execution if prior predicate failed */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000644 debug3("%.200s line %d: skipped exec "
645 "\"%.100s\"", filename, linenum, cmd);
646 free(cmd);
647 continue;
Damien Miller06287802014-02-24 15:56:45 +1100648 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000649 r = execute_in_shell(cmd);
650 if (r == -1) {
651 fatal("%.200s line %d: match exec "
652 "'%.100s' error", filename,
653 linenum, cmd);
654 }
655 criteria = xstrdup(cmd);
Damien Miller194fd902013-10-15 12:13:05 +1100656 free(cmd);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000657 /* Force exit status to boolean */
658 r = r == 0;
659 if (r == (negate ? 1 : 0))
660 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100661 } else {
662 error("Unsupported Match attribute %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100663 result = -1;
664 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100665 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000666 debug3("%.200s line %d: %smatched '%s \"%.100s\"' ",
667 filename, linenum, this_result ? "": "not ",
668 oattrib, criteria);
669 free(criteria);
Damien Miller194fd902013-10-15 12:13:05 +1100670 }
Damien Millercf31f382013-10-24 21:02:56 +1100671 if (attributes == 0) {
672 error("One or more attributes required for Match");
673 result = -1;
674 goto out;
675 }
Damien Miller084bcd22013-10-23 16:30:51 +1100676 out:
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000677 if (result != -1)
678 debug2("match %sfound", result ? "" : "not ");
679 *condition = cp;
Damien Miller084bcd22013-10-23 16:30:51 +1100680 free(host);
Damien Miller194fd902013-10-15 12:13:05 +1100681 return result;
682}
683
Damien Miller0faf7472013-10-17 11:47:23 +1100684/* Check and prepare a domain name: removes trailing '.' and lowercases */
685static void
686valid_domain(char *name, const char *filename, int linenum)
687{
688 size_t i, l = strlen(name);
689 u_char c, last = '\0';
690
691 if (l == 0)
692 fatal("%s line %d: empty hostname suffix", filename, linenum);
693 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
694 fatal("%s line %d: hostname suffix \"%.100s\" "
695 "starts with invalid character", filename, linenum, name);
696 for (i = 0; i < l; i++) {
697 c = tolower((u_char)name[i]);
698 name[i] = (char)c;
699 if (last == '.' && c == '.')
700 fatal("%s line %d: hostname suffix \"%.100s\" contains "
701 "consecutive separators", filename, linenum, name);
702 if (c != '.' && c != '-' && !isalnum(c) &&
703 c != '_') /* technically invalid, but common */
704 fatal("%s line %d: hostname suffix \"%.100s\" contains "
705 "invalid characters", filename, linenum, name);
706 last = c;
707 }
708 if (name[l - 1] == '.')
709 name[l - 1] = '\0';
710}
711
Damien Miller5428f641999-11-25 11:54:57 +1100712/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000713 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100714 */
Damien Miller4af51302000-04-16 11:18:38 +1000715static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000716parse_token(const char *cp, const char *filename, int linenum,
717 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000718{
Darren Tucker07636982013-05-16 20:30:03 +1000719 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller95def091999-11-25 00:26:21 +1100721 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000722 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100723 return keywords[i].opcode;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000724 if (ignored_unknown != NULL &&
725 match_pattern_list(cp, ignored_unknown, 1) == 1)
Darren Tucker07636982013-05-16 20:30:03 +1000726 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000727 error("%s: line %d: Bad configuration option: %s",
728 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100729 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000730}
731
Damien Millere9fc72e2013-10-15 12:14:12 +1100732/* Multistate option parsing */
733struct multistate {
734 char *key;
735 int value;
736};
737static const struct multistate multistate_flag[] = {
738 { "true", 1 },
739 { "false", 0 },
740 { "yes", 1 },
741 { "no", 0 },
742 { NULL, -1 }
743};
744static const struct multistate multistate_yesnoask[] = {
745 { "true", 1 },
746 { "false", 0 },
747 { "yes", 1 },
748 { "no", 0 },
749 { "ask", 2 },
750 { NULL, -1 }
751};
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000752static const struct multistate multistate_yesnoaskconfirm[] = {
753 { "true", 1 },
754 { "false", 0 },
755 { "yes", 1 },
756 { "no", 0 },
757 { "ask", 2 },
758 { "confirm", 3 },
759 { NULL, -1 }
760};
Damien Millere9fc72e2013-10-15 12:14:12 +1100761static const struct multistate multistate_addressfamily[] = {
762 { "inet", AF_INET },
763 { "inet6", AF_INET6 },
764 { "any", AF_UNSPEC },
765 { NULL, -1 }
766};
767static const struct multistate multistate_controlmaster[] = {
768 { "true", SSHCTL_MASTER_YES },
769 { "yes", SSHCTL_MASTER_YES },
770 { "false", SSHCTL_MASTER_NO },
771 { "no", SSHCTL_MASTER_NO },
772 { "auto", SSHCTL_MASTER_AUTO },
773 { "ask", SSHCTL_MASTER_ASK },
774 { "autoask", SSHCTL_MASTER_AUTO_ASK },
775 { NULL, -1 }
776};
777static const struct multistate multistate_tunnel[] = {
778 { "ethernet", SSH_TUNMODE_ETHERNET },
779 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
780 { "true", SSH_TUNMODE_DEFAULT },
781 { "yes", SSH_TUNMODE_DEFAULT },
782 { "false", SSH_TUNMODE_NO },
783 { "no", SSH_TUNMODE_NO },
784 { NULL, -1 }
785};
786static const struct multistate multistate_requesttty[] = {
787 { "true", REQUEST_TTY_YES },
788 { "yes", REQUEST_TTY_YES },
789 { "false", REQUEST_TTY_NO },
790 { "no", REQUEST_TTY_NO },
791 { "force", REQUEST_TTY_FORCE },
792 { "auto", REQUEST_TTY_AUTO },
793 { NULL, -1 }
794};
Damien Miller38505592013-10-17 11:48:13 +1100795static const struct multistate multistate_canonicalizehostname[] = {
Damien Miller0faf7472013-10-17 11:47:23 +1100796 { "true", SSH_CANONICALISE_YES },
797 { "false", SSH_CANONICALISE_NO },
798 { "yes", SSH_CANONICALISE_YES },
799 { "no", SSH_CANONICALISE_NO },
800 { "always", SSH_CANONICALISE_ALWAYS },
801 { NULL, -1 }
802};
Damien Millere9fc72e2013-10-15 12:14:12 +1100803
Damien Miller5428f641999-11-25 11:54:57 +1100804/*
805 * Processes a single option line as used in the configuration files. This
806 * only sets those values that have not already been set.
807 */
Damien Miller2ccf6611999-11-15 15:25:10 +1100808int
Damien Miller194fd902013-10-15 12:13:05 +1100809process_config_line(Options *options, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000810 const char *original_host, char *line, const char *filename,
811 int linenum, int *activep, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000812{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000813 return process_config_line_depth(options, pw, host, original_host,
814 line, filename, linenum, activep, flags, 0);
815}
816
817#define WHITESPACE " \t\r\n"
818static int
819process_config_line_depth(Options *options, struct passwd *pw, const char *host,
820 const char *original_host, char *line, const char *filename,
821 int linenum, int *activep, int flags, int depth)
822{
Damien Miller295ee632011-05-29 21:42:31 +1000823 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
824 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000825 u_int i, *uintptr, max_entries = 0;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000826 int r, oactive, negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100827 LogLevel *log_level_ptr;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000828 SyslogFacility *log_facility_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000829 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100830 size_t len;
Damien Miller7acefbb2014-07-18 14:11:24 +1000831 struct Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100832 const struct multistate *multistate_ptr;
Damien Miller0faf7472013-10-17 11:47:23 +1100833 struct allowed_cname *cname;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000834 glob_t gl;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000835
Damien Miller194fd902013-10-15 12:13:05 +1100836 if (activep == NULL) { /* We are processing a command line directive */
837 cmdline = 1;
838 activep = &cmdline;
839 }
840
djm@openbsd.orgc924b2e2017-02-03 05:05:56 +0000841 /* Strip trailing whitespace. Allow \f (form feed) at EOL only */
djm@openbsd.org26e0bcf2015-03-30 00:00:29 +0000842 if ((len = strlen(line)) == 0)
843 return 0;
844 for (len--; len > 0; len--) {
djm@openbsd.orgc924b2e2017-02-03 05:05:56 +0000845 if (strchr(WHITESPACE "\f", line[len]) == NULL)
Damien Millerc652cac2003-05-14 13:40:54 +1000846 break;
847 line[len] = '\0';
848 }
849
Damien Millerbe484b52000-07-15 14:14:16 +1000850 s = line;
851 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100852 if ((keyword = strdelim(&s)) == NULL)
853 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000854 /* Ignore leading whitespace. */
855 if (*keyword == '\0')
856 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000857 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100858 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000859 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100860 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861
Darren Tucker07636982013-05-16 20:30:03 +1000862 opcode = parse_token(keyword, filename, linenum,
863 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864
Damien Miller95def091999-11-25 00:26:21 +1100865 switch (opcode) {
866 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100867 /* don't panic, but count bad options */
868 return -1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000869 case oIgnore:
870 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000871 case oIgnoredUnknownOption:
872 debug("%s line %d: Ignored unknown option \"%s\"",
873 filename, linenum, keyword);
874 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000875 case oConnectTimeout:
876 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100877parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000878 arg = strdelim(&s);
879 if (!arg || *arg == '\0')
880 fatal("%s line %d: missing time value.",
881 filename, linenum);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000882 if (strcmp(arg, "none") == 0)
883 value = -1;
884 else if ((value = convtime(arg)) == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000885 fatal("%s line %d: invalid time value.",
886 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100887 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000888 *intptr = value;
889 break;
890
Damien Miller95def091999-11-25 00:26:21 +1100891 case oForwardAgent:
892 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100893 parse_flag:
894 multistate_ptr = multistate_flag;
895 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000896 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000897 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100898 fatal("%s line %d: missing argument.",
899 filename, linenum);
900 value = -1;
901 for (i = 0; multistate_ptr[i].key != NULL; i++) {
902 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
903 value = multistate_ptr[i].value;
904 break;
905 }
906 }
907 if (value == -1)
908 fatal("%s line %d: unsupported option \"%s\".",
909 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100910 if (*activep && *intptr == -1)
911 *intptr = value;
912 break;
913
914 case oForwardX11:
915 intptr = &options->forward_x11;
916 goto parse_flag;
917
Darren Tucker0a118da2003-10-15 15:54:32 +1000918 case oForwardX11Trusted:
919 intptr = &options->forward_x11_trusted;
920 goto parse_flag;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000921
Damien Miller1ab6a512010-06-26 10:02:24 +1000922 case oForwardX11Timeout:
923 intptr = &options->forward_x11_timeout;
924 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000925
Damien Miller95def091999-11-25 00:26:21 +1100926 case oGatewayPorts:
Damien Miller7acefbb2014-07-18 14:11:24 +1000927 intptr = &options->fwd_opts.gateway_ports;
Damien Miller95def091999-11-25 00:26:21 +1100928 goto parse_flag;
929
Darren Tuckere7d4b192006-07-12 22:17:10 +1000930 case oExitOnForwardFailure:
931 intptr = &options->exit_on_forward_failure;
932 goto parse_flag;
933
Damien Miller95def091999-11-25 00:26:21 +1100934 case oUsePrivilegedPort:
935 intptr = &options->use_privileged_port;
936 goto parse_flag;
937
Damien Miller95def091999-11-25 00:26:21 +1100938 case oPasswordAuthentication:
939 intptr = &options->password_authentication;
940 goto parse_flag;
941
Damien Miller874d77b2000-10-14 16:23:11 +1100942 case oKbdInteractiveAuthentication:
943 intptr = &options->kbd_interactive_authentication;
944 goto parse_flag;
945
946 case oKbdInteractiveDevices:
947 charptr = &options->kbd_interactive_devices;
948 goto parse_string;
949
Damien Miller0bc1bd82000-11-13 22:57:25 +1100950 case oPubkeyAuthentication:
951 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000952 goto parse_flag;
953
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000954 case oHostbasedAuthentication:
955 intptr = &options->hostbased_authentication;
956 goto parse_flag;
957
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000958 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000959 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100960 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000961
Darren Tucker0efd1552003-08-26 11:49:55 +1000962 case oGssAuthentication:
963 intptr = &options->gss_authentication;
964 goto parse_flag;
965
966 case oGssDelegateCreds:
967 intptr = &options->gss_deleg_creds;
968 goto parse_flag;
969
Damien Miller95def091999-11-25 00:26:21 +1100970 case oBatchMode:
971 intptr = &options->batch_mode;
972 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller95def091999-11-25 00:26:21 +1100974 case oCheckHostIP:
975 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000976 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000977
Damien Miller37876e92003-05-15 10:19:46 +1000978 case oVerifyHostKeyDNS:
979 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100980 multistate_ptr = multistate_yesnoask;
981 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000982
Damien Miller95def091999-11-25 00:26:21 +1100983 case oStrictHostKeyChecking:
984 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100985 multistate_ptr = multistate_yesnoask;
986 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987
Damien Miller95def091999-11-25 00:26:21 +1100988 case oCompression:
989 intptr = &options->compression;
990 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000991
Damien Miller12c150e2003-12-17 16:31:10 +1100992 case oTCPKeepAlive:
993 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100994 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000996 case oNoHostAuthenticationForLocalhost:
997 intptr = &options->no_host_authentication_for_localhost;
998 goto parse_flag;
999
Damien Miller95def091999-11-25 00:26:21 +11001000 case oNumberOfPasswordPrompts:
1001 intptr = &options->number_of_password_prompts;
1002 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003
Damien Millera5539d22003-04-09 20:50:06 +10001004 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +10001005 arg = strdelim(&s);
1006 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001007 fatal("%.200s line %d: Missing argument.", filename,
1008 linenum);
1009 if (strcmp(arg, "default") == 0) {
1010 val64 = 0;
1011 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +10001012 if (scan_scaled(arg, &val64) == -1)
1013 fatal("%.200s line %d: Bad number '%s': %s",
1014 filename, linenum, arg, strerror(errno));
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001015 if (val64 != 0 && val64 < 16)
1016 fatal("%.200s line %d: RekeyLimit too small",
1017 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +10001018 }
Damien Miller3dff1762008-02-10 22:25:52 +11001019 if (*activep && options->rekey_limit == -1)
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00001020 options->rekey_limit = val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001021 if (s != NULL) { /* optional rekey interval present */
1022 if (strcmp(s, "none") == 0) {
1023 (void)strdelim(&s); /* discard */
1024 break;
1025 }
1026 intptr = &options->rekey_interval;
1027 goto parse_time;
1028 }
Damien Millera5539d22003-04-09 20:50:06 +10001029 break;
1030
Damien Miller95def091999-11-25 00:26:21 +11001031 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +10001032 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001033 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001034 fatal("%.200s line %d: Missing argument.", filename, linenum);
1035 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001036 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +10001037 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +11001038 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001039 filename, linenum, SSH_MAX_IDENTITY_FILES);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001040 add_identity_file(options, NULL,
1041 arg, flags & SSHCONF_USERCONF);
Damien Miller95def091999-11-25 00:26:21 +11001042 }
1043 break;
1044
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001045 case oCertificateFile:
1046 arg = strdelim(&s);
1047 if (!arg || *arg == '\0')
1048 fatal("%.200s line %d: Missing argument.",
1049 filename, linenum);
1050 if (*activep) {
1051 intptr = &options->num_certificate_files;
1052 if (*intptr >= SSH_MAX_CERTIFICATE_FILES) {
1053 fatal("%.200s line %d: Too many certificate "
1054 "files specified (max %d).",
1055 filename, linenum,
1056 SSH_MAX_CERTIFICATE_FILES);
1057 }
1058 add_certificate_file(options, arg,
1059 flags & SSHCONF_USERCONF);
1060 }
1061 break;
1062
Damien Millerd3a18572000-06-07 19:55:44 +10001063 case oXAuthLocation:
1064 charptr=&options->xauth_location;
1065 goto parse_string;
1066
Damien Miller95def091999-11-25 00:26:21 +11001067 case oUser:
1068 charptr = &options->user;
1069parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +10001070 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001071 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +10001072 fatal("%.200s line %d: Missing argument.",
1073 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001074 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001075 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +11001076 break;
1077
1078 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001079 cpptr = (char **)&options->system_hostfiles;
1080 uintptr = &options->num_system_hostfiles;
1081 max_entries = SSH_MAX_HOSTS_FILES;
1082parse_char_array:
1083 if (*activep && *uintptr == 0) {
1084 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1085 if ((*uintptr) >= max_entries)
1086 fatal("%s line %d: "
1087 "too many authorized keys files.",
1088 filename, linenum);
1089 cpptr[(*uintptr)++] = xstrdup(arg);
1090 }
1091 }
1092 return 0;
Damien Miller95def091999-11-25 00:26:21 +11001093
1094 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001095 cpptr = (char **)&options->user_hostfiles;
1096 uintptr = &options->num_user_hostfiles;
1097 max_entries = SSH_MAX_HOSTS_FILES;
1098 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +10001099
Damien Miller95def091999-11-25 00:26:21 +11001100 case oHostName:
1101 charptr = &options->hostname;
1102 goto parse_string;
1103
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001104 case oHostKeyAlias:
1105 charptr = &options->host_key_alias;
1106 goto parse_string;
1107
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001108 case oPreferredAuthentications:
1109 charptr = &options->preferred_authentications;
1110 goto parse_string;
1111
Ben Lindstrome0f88042001-04-30 13:06:24 +00001112 case oBindAddress:
1113 charptr = &options->bind_address;
1114 goto parse_string;
1115
Damien Miller7ea845e2010-02-12 09:21:02 +11001116 case oPKCS11Provider:
1117 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001118 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +00001119
Damien Miller95def091999-11-25 00:26:21 +11001120 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +11001121 charptr = &options->proxy_command;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001122 /* Ignore ProxyCommand if ProxyJump already specified */
1123 if (options->jump_host != NULL)
1124 charptr = &options->jump_host; /* Skip below */
Damien Millerd27b9472005-12-13 19:29:02 +11001125parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +10001126 if (s == NULL)
1127 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +11001128 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +11001129 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +11001130 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +11001131 return 0;
1132
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001133 case oProxyJump:
1134 if (s == NULL) {
1135 fatal("%.200s line %d: Missing argument.",
1136 filename, linenum);
1137 }
1138 len = strspn(s, WHITESPACE "=");
1139 if (parse_jump(s + len, options, *activep) == -1) {
1140 fatal("%.200s line %d: Invalid ProxyJump \"%s\"",
1141 filename, linenum, s + len);
1142 }
1143 return 0;
1144
Damien Miller95def091999-11-25 00:26:21 +11001145 case oPort:
1146 intptr = &options->port;
1147parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +10001148 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001149 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001150 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001151 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +11001152 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +11001153
1154 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +10001155 value = strtol(arg, &endofnumber, 0);
1156 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +11001157 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001158 if (*activep && *intptr == -1)
1159 *intptr = value;
1160 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161
Damien Miller95def091999-11-25 00:26:21 +11001162 case oConnectionAttempts:
1163 intptr = &options->connection_attempts;
1164 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +11001165
Damien Miller78928792000-04-12 20:17:38 +10001166 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001167 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001168 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001169 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001170 if (*arg != '-' && !ciphers_valid(*arg == '+' ? arg + 1 : arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001171 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001172 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001173 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001174 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001175 break;
1176
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001177 case oMacs:
1178 arg = strdelim(&s);
1179 if (!arg || *arg == '\0')
1180 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001181 if (*arg != '-' && !mac_valid(*arg == '+' ? arg + 1 : arg))
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001182 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001183 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001184 if (*activep && options->macs == NULL)
1185 options->macs = xstrdup(arg);
1186 break;
1187
Damien Millerd5f62bf2010-09-24 22:11:14 +10001188 case oKexAlgorithms:
1189 arg = strdelim(&s);
1190 if (!arg || *arg == '\0')
1191 fatal("%.200s line %d: Missing argument.",
1192 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001193 if (*arg != '-' &&
1194 !kex_names_valid(*arg == '+' ? arg + 1 : arg))
Damien Millerd5f62bf2010-09-24 22:11:14 +10001195 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1196 filename, linenum, arg ? arg : "<NONE>");
1197 if (*activep && options->kex_algorithms == NULL)
1198 options->kex_algorithms = xstrdup(arg);
1199 break;
1200
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001201 case oHostKeyAlgorithms:
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001202 charptr = &options->hostkeyalgorithms;
1203parse_keytypes:
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001204 arg = strdelim(&s);
1205 if (!arg || *arg == '\0')
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001206 fatal("%.200s line %d: Missing argument.",
1207 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001208 if (*arg != '-' &&
1209 !sshkey_names_valid2(*arg == '+' ? arg + 1 : arg, 1))
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001210 fatal("%s line %d: Bad key types '%s'.",
1211 filename, linenum, arg ? arg : "<NONE>");
1212 if (*activep && *charptr == NULL)
1213 *charptr = xstrdup(arg);
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001214 break;
1215
Damien Miller95def091999-11-25 00:26:21 +11001216 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001217 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001218 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001219 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001220 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001221 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001222 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001223 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1224 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001225 break;
1226
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001227 case oLogFacility:
1228 log_facility_ptr = &options->log_facility;
1229 arg = strdelim(&s);
1230 value = log_facility_number(arg);
1231 if (value == SYSLOG_FACILITY_NOT_SET)
1232 fatal("%.200s line %d: unsupported log facility '%s'",
1233 filename, linenum, arg ? arg : "<NONE>");
1234 if (*log_facility_ptr == -1)
1235 *log_facility_ptr = (SyslogFacility) value;
1236 break;
1237
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001238 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001239 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001240 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001241 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001242 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001243 fatal("%.200s line %d: Missing port argument.",
1244 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001245
Damien Millera699d952008-11-03 19:27:34 +11001246 if (opcode == oLocalForward ||
1247 opcode == oRemoteForward) {
1248 arg2 = strdelim(&s);
1249 if (arg2 == NULL || *arg2 == '\0')
1250 fatal("%.200s line %d: Missing target argument.",
1251 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001252
Damien Millera699d952008-11-03 19:27:34 +11001253 /* construct a string for parse_forward */
1254 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1255 } else if (opcode == oDynamicForward) {
1256 strlcpy(fwdarg, arg, sizeof(fwdarg));
1257 }
1258
1259 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001260 opcode == oDynamicForward ? 1 : 0,
1261 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001262 fatal("%.200s line %d: Bad forwarding specification.",
1263 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001264
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001265 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001266 if (opcode == oLocalForward ||
1267 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001268 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001269 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001270 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001271 }
Damien Miller95def091999-11-25 00:26:21 +11001272 break;
1273
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001274 case oClearAllForwardings:
1275 intptr = &options->clear_forwardings;
1276 goto parse_flag;
1277
Damien Miller95def091999-11-25 00:26:21 +11001278 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001279 if (cmdline)
1280 fatal("Host directive not supported as a command-line "
1281 "option");
Damien Miller95def091999-11-25 00:26:21 +11001282 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001283 arg2 = NULL;
1284 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001285 if ((flags & SSHCONF_NEVERMATCH) != 0)
1286 break;
Damien Millerfe924212011-05-15 08:44:45 +10001287 negated = *arg == '!';
1288 if (negated)
1289 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001290 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001291 if (negated) {
1292 debug("%.200s line %d: Skipping Host "
1293 "block because of negated match "
1294 "for %.100s", filename, linenum,
1295 arg);
1296 *activep = 0;
1297 break;
1298 }
1299 if (!*activep)
1300 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001301 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001302 }
Damien Millerfe924212011-05-15 08:44:45 +10001303 }
1304 if (*activep)
1305 debug("%.200s line %d: Applying options for %.100s",
1306 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001307 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001308 return 0;
1309
Damien Miller194fd902013-10-15 12:13:05 +11001310 case oMatch:
1311 if (cmdline)
1312 fatal("Host directive not supported as a command-line "
1313 "option");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001314 value = match_cfg_line(options, &s, pw, host, original_host,
1315 flags & SSHCONF_POSTCANON, filename, linenum);
Damien Miller194fd902013-10-15 12:13:05 +11001316 if (value < 0)
1317 fatal("%.200s line %d: Bad Match condition", filename,
1318 linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001319 *activep = (flags & SSHCONF_NEVERMATCH) ? 0 : value;
Damien Miller194fd902013-10-15 12:13:05 +11001320 break;
1321
Damien Miller95def091999-11-25 00:26:21 +11001322 case oEscapeChar:
1323 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001324 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001325 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001326 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org08823322015-05-22 04:45:52 +00001327 if (strcmp(arg, "none") == 0)
1328 value = SSH_ESCAPECHAR_NONE;
1329 else if (arg[1] == '\0')
1330 value = (u_char) arg[0];
1331 else if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001332 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1333 value = (u_char) arg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +11001334 else {
1335 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001336 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001337 /* NOTREACHED */
1338 value = 0; /* Avoid compiler warning. */
1339 }
1340 if (*activep && *intptr == -1)
1341 *intptr = value;
1342 break;
1343
Damien Miller20a8f972003-05-18 20:50:30 +10001344 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001345 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001346 multistate_ptr = multistate_addressfamily;
1347 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001348
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001349 case oEnableSSHKeysign:
1350 intptr = &options->enable_ssh_keysign;
1351 goto parse_flag;
1352
Damien Millerbd394c32004-03-08 23:12:36 +11001353 case oIdentitiesOnly:
1354 intptr = &options->identities_only;
1355 goto parse_flag;
1356
Damien Miller509b0102003-12-17 16:33:10 +11001357 case oServerAliveInterval:
1358 intptr = &options->server_alive_interval;
1359 goto parse_time;
1360
1361 case oServerAliveCountMax:
1362 intptr = &options->server_alive_count_max;
1363 goto parse_int;
1364
Darren Tucker46bc0752004-05-02 22:11:30 +10001365 case oSendEnv:
1366 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1367 if (strchr(arg, '=') != NULL)
1368 fatal("%s line %d: Invalid environment name.",
1369 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001370 if (!*activep)
1371 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001372 if (options->num_send_env >= MAX_SEND_ENV)
1373 fatal("%s line %d: too many send env.",
1374 filename, linenum);
1375 options->send_env[options->num_send_env++] =
1376 xstrdup(arg);
1377 }
1378 break;
1379
Damien Miller0e220db2004-06-15 10:34:08 +10001380 case oControlPath:
1381 charptr = &options->control_path;
1382 goto parse_string;
1383
1384 case oControlMaster:
1385 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001386 multistate_ptr = multistate_controlmaster;
1387 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001388
Damien Millere11e1ea2010-08-03 16:04:46 +10001389 case oControlPersist:
1390 /* no/false/yes/true, or a time spec */
1391 intptr = &options->control_persist;
1392 arg = strdelim(&s);
1393 if (!arg || *arg == '\0')
1394 fatal("%.200s line %d: Missing ControlPersist"
1395 " argument.", filename, linenum);
1396 value = 0;
1397 value2 = 0; /* timeout */
1398 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1399 value = 0;
1400 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1401 value = 1;
1402 else if ((value2 = convtime(arg)) >= 0)
1403 value = 1;
1404 else
1405 fatal("%.200s line %d: Bad ControlPersist argument.",
1406 filename, linenum);
1407 if (*activep && *intptr == -1) {
1408 *intptr = value;
1409 options->control_persist_timeout = value2;
1410 }
1411 break;
1412
Damien Millere1776152005-03-01 21:47:37 +11001413 case oHashKnownHosts:
1414 intptr = &options->hash_known_hosts;
1415 goto parse_flag;
1416
Damien Millerd27b9472005-12-13 19:29:02 +11001417 case oTunnel:
1418 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001419 multistate_ptr = multistate_tunnel;
1420 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001421
1422 case oTunnelDevice:
1423 arg = strdelim(&s);
1424 if (!arg || *arg == '\0')
1425 fatal("%.200s line %d: Missing argument.", filename, linenum);
1426 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001427 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001428 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1429 if (*activep) {
1430 options->tun_local = value;
1431 options->tun_remote = value2;
1432 }
1433 break;
1434
1435 case oLocalCommand:
1436 charptr = &options->local_command;
1437 goto parse_command;
1438
1439 case oPermitLocalCommand:
1440 intptr = &options->permit_local_command;
1441 goto parse_flag;
1442
Damien Miller10288242008-06-30 00:04:03 +10001443 case oVisualHostKey:
1444 intptr = &options->visual_host_key;
1445 goto parse_flag;
1446
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001447 case oInclude:
1448 if (cmdline)
1449 fatal("Include directive not supported as a "
1450 "command-line option");
1451 value = 0;
1452 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1453 /*
1454 * Ensure all paths are anchored. User configuration
1455 * files may begin with '~/' but system configurations
1456 * must not. If the path is relative, then treat it
1457 * as living in ~/.ssh for user configurations or
1458 * /etc/ssh for system ones.
1459 */
1460 if (*arg == '~' && (flags & SSHCONF_USERCONF) == 0)
1461 fatal("%.200s line %d: bad include path %s.",
1462 filename, linenum, arg);
1463 if (*arg != '/' && *arg != '~') {
1464 xasprintf(&arg2, "%s/%s",
1465 (flags & SSHCONF_USERCONF) ?
1466 "~/" _PATH_SSH_USER_DIR : SSHDIR, arg);
1467 } else
1468 arg2 = xstrdup(arg);
1469 memset(&gl, 0, sizeof(gl));
1470 r = glob(arg2, GLOB_TILDE, NULL, &gl);
1471 if (r == GLOB_NOMATCH) {
1472 debug("%.200s line %d: include %s matched no "
1473 "files",filename, linenum, arg2);
dtucker@openbsd.orgf6edbe92017-03-10 03:24:48 +00001474 free(arg2);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001475 continue;
1476 } else if (r != 0 || gl.gl_pathc < 0)
1477 fatal("%.200s line %d: glob failed for %s.",
1478 filename, linenum, arg2);
1479 free(arg2);
1480 oactive = *activep;
1481 for (i = 0; i < (u_int)gl.gl_pathc; i++) {
1482 debug3("%.200s line %d: Including file %s "
1483 "depth %d%s", filename, linenum,
1484 gl.gl_pathv[i], depth,
1485 oactive ? "" : " (parse only)");
1486 r = read_config_file_depth(gl.gl_pathv[i],
1487 pw, host, original_host, options,
1488 flags | SSHCONF_CHECKPERM |
1489 (oactive ? 0 : SSHCONF_NEVERMATCH),
1490 activep, depth + 1);
djm@openbsd.orgb64077f2017-01-06 09:27:52 +00001491 if (r != 1 && errno != ENOENT) {
djm@openbsd.org5e820e92017-01-06 03:53:58 +00001492 fatal("Can't open user config file "
1493 "%.100s: %.100s", gl.gl_pathv[i],
1494 strerror(errno));
1495 }
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001496 /*
1497 * don't let Match in includes clobber the
1498 * containing file's Match state.
1499 */
1500 *activep = oactive;
1501 if (r != 1)
1502 value = -1;
1503 }
1504 globfree(&gl);
1505 }
1506 if (value != 0)
1507 return value;
1508 break;
1509
Damien Miller0dac6fb2010-11-20 15:19:38 +11001510 case oIPQoS:
1511 arg = strdelim(&s);
1512 if ((value = parse_ipqos(arg)) == -1)
1513 fatal("%s line %d: Bad IPQoS value: %s",
1514 filename, linenum, arg);
1515 arg = strdelim(&s);
1516 if (arg == NULL)
1517 value2 = value;
1518 else if ((value2 = parse_ipqos(arg)) == -1)
1519 fatal("%s line %d: Bad IPQoS value: %s",
1520 filename, linenum, arg);
1521 if (*activep) {
1522 options->ip_qos_interactive = value;
1523 options->ip_qos_bulk = value2;
1524 }
1525 break;
1526
Damien Miller21771e22011-05-15 08:45:50 +10001527 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001528 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001529 multistate_ptr = multistate_requesttty;
1530 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001531
Darren Tucker07636982013-05-16 20:30:03 +10001532 case oIgnoreUnknown:
1533 charptr = &options->ignored_unknown;
1534 goto parse_string;
1535
Damien Miller1262b662013-08-21 02:44:24 +10001536 case oProxyUseFdpass:
1537 intptr = &options->proxy_use_fdpass;
1538 goto parse_flag;
1539
Damien Miller0faf7472013-10-17 11:47:23 +11001540 case oCanonicalDomains:
1541 value = options->num_canonical_domains != 0;
1542 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1543 valid_domain(arg, filename, linenum);
1544 if (!*activep || value)
1545 continue;
1546 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1547 fatal("%s line %d: too many hostname suffixes.",
1548 filename, linenum);
1549 options->canonical_domains[
1550 options->num_canonical_domains++] = xstrdup(arg);
1551 }
1552 break;
1553
Damien Miller38505592013-10-17 11:48:13 +11001554 case oCanonicalizePermittedCNAMEs:
Damien Miller0faf7472013-10-17 11:47:23 +11001555 value = options->num_permitted_cnames != 0;
1556 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1557 /* Either '*' for everything or 'list:list' */
1558 if (strcmp(arg, "*") == 0)
1559 arg2 = arg;
1560 else {
1561 lowercase(arg);
1562 if ((arg2 = strchr(arg, ':')) == NULL ||
1563 arg2[1] == '\0') {
1564 fatal("%s line %d: "
1565 "Invalid permitted CNAME \"%s\"",
1566 filename, linenum, arg);
1567 }
1568 *arg2 = '\0';
1569 arg2++;
1570 }
1571 if (!*activep || value)
1572 continue;
1573 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1574 fatal("%s line %d: too many permitted CNAMEs.",
1575 filename, linenum);
1576 cname = options->permitted_cnames +
1577 options->num_permitted_cnames++;
1578 cname->source_list = xstrdup(arg);
1579 cname->target_list = xstrdup(arg2);
1580 }
1581 break;
1582
Damien Miller38505592013-10-17 11:48:13 +11001583 case oCanonicalizeHostname:
1584 intptr = &options->canonicalize_hostname;
1585 multistate_ptr = multistate_canonicalizehostname;
Damien Miller0faf7472013-10-17 11:47:23 +11001586 goto parse_multistate;
1587
Damien Miller38505592013-10-17 11:48:13 +11001588 case oCanonicalizeMaxDots:
1589 intptr = &options->canonicalize_max_dots;
Damien Miller0faf7472013-10-17 11:47:23 +11001590 goto parse_int;
1591
Damien Miller38505592013-10-17 11:48:13 +11001592 case oCanonicalizeFallbackLocal:
1593 intptr = &options->canonicalize_fallback_local;
Damien Miller0faf7472013-10-17 11:47:23 +11001594 goto parse_flag;
1595
Damien Miller7acefbb2014-07-18 14:11:24 +10001596 case oStreamLocalBindMask:
1597 arg = strdelim(&s);
1598 if (!arg || *arg == '\0')
1599 fatal("%.200s line %d: Missing StreamLocalBindMask argument.", filename, linenum);
1600 /* Parse mode in octal format */
1601 value = strtol(arg, &endofnumber, 8);
1602 if (arg == endofnumber || value < 0 || value > 0777)
1603 fatal("%.200s line %d: Bad mask.", filename, linenum);
1604 options->fwd_opts.streamlocal_bind_mask = (mode_t)value;
1605 break;
1606
1607 case oStreamLocalBindUnlink:
1608 intptr = &options->fwd_opts.streamlocal_bind_unlink;
1609 goto parse_flag;
1610
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001611 case oRevokedHostKeys:
1612 charptr = &options->revoked_host_keys;
1613 goto parse_string;
1614
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001615 case oFingerprintHash:
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001616 intptr = &options->fingerprint_hash;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001617 arg = strdelim(&s);
1618 if (!arg || *arg == '\0')
1619 fatal("%.200s line %d: Missing argument.",
1620 filename, linenum);
1621 if ((value = ssh_digest_alg_by_name(arg)) == -1)
1622 fatal("%.200s line %d: Invalid hash algorithm \"%s\".",
1623 filename, linenum, arg);
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001624 if (*activep && *intptr == -1)
1625 *intptr = value;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001626 break;
1627
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001628 case oUpdateHostkeys:
1629 intptr = &options->update_hostkeys;
djm@openbsd.org523463a2015-02-16 22:13:32 +00001630 multistate_ptr = multistate_yesnoask;
1631 goto parse_multistate;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001632
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001633 case oHostbasedKeyTypes:
1634 charptr = &options->hostbased_key_types;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001635 goto parse_keytypes;
1636
1637 case oPubkeyAcceptedKeyTypes:
1638 charptr = &options->pubkey_key_types;
1639 goto parse_keytypes;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001640
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001641 case oAddKeysToAgent:
1642 intptr = &options->add_keys_to_agent;
1643 multistate_ptr = multistate_yesnoaskconfirm;
1644 goto parse_multistate;
1645
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001646 case oIdentityAgent:
1647 charptr = &options->identity_agent;
1648 goto parse_string;
1649
Ben Lindstrom4daea862002-06-09 20:04:02 +00001650 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001651 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001652 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001653 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001654
Damien Millerf9b3feb2003-05-16 11:38:32 +10001655 case oUnsupported:
1656 error("%s line %d: Unsupported option \"%s\"",
1657 filename, linenum, keyword);
1658 return 0;
1659
Damien Miller95def091999-11-25 00:26:21 +11001660 default:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001661 fatal("%s: Unimplemented opcode %d", __func__, opcode);
Damien Miller95def091999-11-25 00:26:21 +11001662 }
1663
1664 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001665 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001666 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001667 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001668 }
Damien Miller95def091999-11-25 00:26:21 +11001669 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670}
1671
Damien Miller5428f641999-11-25 11:54:57 +11001672/*
1673 * Reads the config file and modifies the options accordingly. Options
1674 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001675 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001676 */
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001677int
Damien Miller194fd902013-10-15 12:13:05 +11001678read_config_file(const char *filename, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001679 const char *original_host, Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001680{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001681 int active = 1;
1682
1683 return read_config_file_depth(filename, pw, host, original_host,
1684 options, flags, &active, 0);
1685}
1686
1687#define READCONF_MAX_DEPTH 16
1688static int
1689read_config_file_depth(const char *filename, struct passwd *pw,
1690 const char *host, const char *original_host, Options *options,
1691 int flags, int *activep, int depth)
1692{
Damien Miller95def091999-11-25 00:26:21 +11001693 FILE *f;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001694 char line[4096];
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001695 int linenum;
Damien Miller95def091999-11-25 00:26:21 +11001696 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001697
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001698 if (depth < 0 || depth > READCONF_MAX_DEPTH)
1699 fatal("Too many recursive configuration includes");
1700
Damien Miller57a44762004-04-20 20:11:57 +10001701 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001702 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001703
Darren Tuckeraefa3682013-04-05 11:18:35 +11001704 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001705 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001706
Damien Miller33793852004-06-15 10:27:55 +10001707 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001708 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001709 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001710 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001711 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001712 }
1713
Damien Miller95def091999-11-25 00:26:21 +11001714 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001715
Damien Miller5428f641999-11-25 11:54:57 +11001716 /*
1717 * Mark that we are now processing the options. This flag is turned
1718 * on/off by Host specifications.
1719 */
Damien Miller95def091999-11-25 00:26:21 +11001720 linenum = 0;
1721 while (fgets(line, sizeof(line), f)) {
1722 /* Update line number counter. */
1723 linenum++;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001724 if (strlen(line) == sizeof(line) - 1)
1725 fatal("%s line %d too long", filename, linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001726 if (process_config_line_depth(options, pw, host, original_host,
1727 line, filename, linenum, activep, flags, depth) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001728 bad_options++;
1729 }
1730 fclose(f);
1731 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001732 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001733 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001734 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001735}
1736
Damien Miller13f97b22014-02-24 15:57:55 +11001737/* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
1738int
1739option_clear_or_none(const char *o)
1740{
1741 return o == NULL || strcasecmp(o, "none") == 0;
1742}
1743
Damien Miller5428f641999-11-25 11:54:57 +11001744/*
1745 * Initializes options to special values that indicate that they have not yet
1746 * been set. Read_config_file will only set options with this value. Options
1747 * are processed in the following order: command line, user config file,
1748 * system config file. Last, fill_default_options is called.
1749 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001750
Damien Miller4af51302000-04-16 11:18:38 +10001751void
Damien Miller95def091999-11-25 00:26:21 +11001752initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001753{
Damien Miller95def091999-11-25 00:26:21 +11001754 memset(options, 'X', sizeof(*options));
1755 options->forward_agent = -1;
1756 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001757 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001758 options->forward_x11_timeout = -1;
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001759 options->stdio_forward_host = NULL;
1760 options->stdio_forward_port = 0;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001761 options->clear_forwardings = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001762 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001763 options->xauth_location = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10001764 options->fwd_opts.gateway_ports = -1;
1765 options->fwd_opts.streamlocal_bind_mask = (mode_t)-1;
1766 options->fwd_opts.streamlocal_bind_unlink = -1;
Damien Miller95def091999-11-25 00:26:21 +11001767 options->use_privileged_port = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001768 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001769 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001770 options->gss_authentication = -1;
1771 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001772 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001773 options->kbd_interactive_authentication = -1;
1774 options->kbd_interactive_devices = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001775 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001776 options->batch_mode = -1;
1777 options->check_host_ip = -1;
1778 options->strict_host_key_checking = -1;
1779 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001780 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001781 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001782 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001783 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001784 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001785 options->number_of_password_prompts = -1;
Damien Miller78928792000-04-12 20:17:38 +10001786 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001787 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001788 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001789 options->hostkeyalgorithms = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001790 options->num_identity_files = 0;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001791 options->num_certificate_files = 0;
Damien Miller95def091999-11-25 00:26:21 +11001792 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001793 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001794 options->proxy_command = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001795 options->jump_user = NULL;
1796 options->jump_host = NULL;
1797 options->jump_port = -1;
1798 options->jump_extra = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001799 options->user = NULL;
1800 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001801 options->num_system_hostfiles = 0;
1802 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001803 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001804 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001805 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001806 options->num_remote_forwards = 0;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001807 options->log_facility = SYSLOG_FACILITY_NOT_SET;
Damien Millerfcd93202002-02-05 12:26:34 +11001808 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001809 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001810 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001811 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001812 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001813 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001814 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001815 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001816 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001817 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001818 options->server_alive_interval = -1;
1819 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001820 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001821 options->control_path = NULL;
1822 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001823 options->control_persist = -1;
1824 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001825 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001826 options->tun_open = -1;
1827 options->tun_local = -1;
1828 options->tun_remote = -1;
1829 options->local_command = NULL;
1830 options->permit_local_command = -1;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001831 options->add_keys_to_agent = -1;
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001832 options->identity_agent = NULL;
Damien Miller10288242008-06-30 00:04:03 +10001833 options->visual_host_key = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001834 options->ip_qos_interactive = -1;
1835 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001836 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001837 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001838 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001839 options->num_canonical_domains = 0;
1840 options->num_permitted_cnames = 0;
Damien Miller38505592013-10-17 11:48:13 +11001841 options->canonicalize_max_dots = -1;
1842 options->canonicalize_fallback_local = -1;
1843 options->canonicalize_hostname = -1;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001844 options->revoked_host_keys = NULL;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001845 options->fingerprint_hash = -1;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001846 options->update_hostkeys = -1;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001847 options->hostbased_key_types = NULL;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001848 options->pubkey_key_types = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001849}
1850
Damien Miller5428f641999-11-25 11:54:57 +11001851/*
Damien Miller13f97b22014-02-24 15:57:55 +11001852 * A petite version of fill_default_options() that just fills the options
1853 * needed for hostname canonicalization to proceed.
1854 */
1855void
1856fill_default_options_for_canonicalization(Options *options)
1857{
1858 if (options->canonicalize_max_dots == -1)
1859 options->canonicalize_max_dots = 1;
1860 if (options->canonicalize_fallback_local == -1)
1861 options->canonicalize_fallback_local = 1;
1862 if (options->canonicalize_hostname == -1)
1863 options->canonicalize_hostname = SSH_CANONICALISE_NO;
1864}
1865
1866/*
Damien Miller5428f641999-11-25 11:54:57 +11001867 * Called after processing other sources of option data, this fills those
1868 * options for which no value has been specified with their default values.
1869 */
Damien Miller4af51302000-04-16 11:18:38 +10001870void
Damien Miller95def091999-11-25 00:26:21 +11001871fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001872{
Damien Miller95def091999-11-25 00:26:21 +11001873 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001874 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001875 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001876 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001877 if (options->forward_x11_trusted == -1)
1878 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001879 if (options->forward_x11_timeout == -1)
1880 options->forward_x11_timeout = 1200;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001881 /*
1882 * stdio forwarding (-W) changes the default for these but we defer
1883 * setting the values so they can be overridden.
1884 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10001885 if (options->exit_on_forward_failure == -1)
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001886 options->exit_on_forward_failure =
1887 options->stdio_forward_host != NULL ? 1 : 0;
1888 if (options->clear_forwardings == -1)
1889 options->clear_forwardings =
1890 options->stdio_forward_host != NULL ? 1 : 0;
1891 if (options->clear_forwardings == 1)
1892 clear_forwardings(options);
1893
Damien Millerd3a18572000-06-07 19:55:44 +10001894 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001895 options->xauth_location = _PATH_XAUTH;
Damien Miller7acefbb2014-07-18 14:11:24 +10001896 if (options->fwd_opts.gateway_ports == -1)
1897 options->fwd_opts.gateway_ports = 0;
1898 if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)
1899 options->fwd_opts.streamlocal_bind_mask = 0177;
1900 if (options->fwd_opts.streamlocal_bind_unlink == -1)
1901 options->fwd_opts.streamlocal_bind_unlink = 0;
Damien Miller95def091999-11-25 00:26:21 +11001902 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001903 options->use_privileged_port = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001904 if (options->pubkey_authentication == -1)
1905 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001906 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001907 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001908 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001909 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001910 if (options->gss_deleg_creds == -1)
1911 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001912 if (options->password_authentication == -1)
1913 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001914 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001915 options->kbd_interactive_authentication = 1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001916 if (options->hostbased_authentication == -1)
1917 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001918 if (options->batch_mode == -1)
1919 options->batch_mode = 0;
1920 if (options->check_host_ip == -1)
1921 options->check_host_ip = 1;
1922 if (options->strict_host_key_checking == -1)
1923 options->strict_host_key_checking = 2; /* 2 is default */
1924 if (options->compression == -1)
1925 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001926 if (options->tcp_keep_alive == -1)
1927 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001928 if (options->port == -1)
1929 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001930 if (options->address_family == -1)
1931 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001932 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001933 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001934 if (options->number_of_password_prompts == -1)
1935 options->number_of_password_prompts = 3;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001936 /* options->hostkeyalgorithms, default set in myproposals.h */
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001937 if (options->add_keys_to_agent == -1)
1938 options->add_keys_to_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001939 if (options->num_identity_files == 0) {
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001940 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_RSA, 0);
1941 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001942#ifdef OPENSSL_HAS_ECC
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001943 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001944#endif
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001945 add_identity_file(options, "~/",
1946 _PATH_SSH_CLIENT_ID_ED25519, 0);
Damien Millereba71ba2000-04-29 23:57:08 +10001947 }
Damien Miller95def091999-11-25 00:26:21 +11001948 if (options->escape_char == -1)
1949 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001950 if (options->num_system_hostfiles == 0) {
1951 options->system_hostfiles[options->num_system_hostfiles++] =
1952 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1953 options->system_hostfiles[options->num_system_hostfiles++] =
1954 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1955 }
1956 if (options->num_user_hostfiles == 0) {
1957 options->user_hostfiles[options->num_user_hostfiles++] =
1958 xstrdup(_PATH_SSH_USER_HOSTFILE);
1959 options->user_hostfiles[options->num_user_hostfiles++] =
1960 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1961 }
Damien Millerfcd93202002-02-05 12:26:34 +11001962 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001963 options->log_level = SYSLOG_LEVEL_INFO;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001964 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
1965 options->log_facility = SYSLOG_FACILITY_USER;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001966 if (options->no_host_authentication_for_localhost == - 1)
1967 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001968 if (options->identities_only == -1)
1969 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001970 if (options->enable_ssh_keysign == -1)
1971 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001972 if (options->rekey_limit == -1)
1973 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001974 if (options->rekey_interval == -1)
1975 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001976 if (options->verify_host_key_dns == -1)
1977 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001978 if (options->server_alive_interval == -1)
1979 options->server_alive_interval = 0;
1980 if (options->server_alive_count_max == -1)
1981 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001982 if (options->control_master == -1)
1983 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001984 if (options->control_persist == -1) {
1985 options->control_persist = 0;
1986 options->control_persist_timeout = 0;
1987 }
Damien Millere1776152005-03-01 21:47:37 +11001988 if (options->hash_known_hosts == -1)
1989 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001990 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001991 options->tun_open = SSH_TUNMODE_NO;
1992 if (options->tun_local == -1)
1993 options->tun_local = SSH_TUNID_ANY;
1994 if (options->tun_remote == -1)
1995 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001996 if (options->permit_local_command == -1)
1997 options->permit_local_command = 0;
Damien Miller10288242008-06-30 00:04:03 +10001998 if (options->visual_host_key == -1)
1999 options->visual_host_key = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11002000 if (options->ip_qos_interactive == -1)
2001 options->ip_qos_interactive = IPTOS_LOWDELAY;
2002 if (options->ip_qos_bulk == -1)
2003 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10002004 if (options->request_tty == -1)
2005 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10002006 if (options->proxy_use_fdpass == -1)
2007 options->proxy_use_fdpass = 0;
Damien Miller38505592013-10-17 11:48:13 +11002008 if (options->canonicalize_max_dots == -1)
2009 options->canonicalize_max_dots = 1;
2010 if (options->canonicalize_fallback_local == -1)
2011 options->canonicalize_fallback_local = 1;
2012 if (options->canonicalize_hostname == -1)
2013 options->canonicalize_hostname = SSH_CANONICALISE_NO;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002014 if (options->fingerprint_hash == -1)
2015 options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002016 if (options->update_hostkeys == -1)
djm@openbsd.org15ad7502015-02-02 07:41:40 +00002017 options->update_hostkeys = 0;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002018 if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
2019 kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
2020 kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
2021 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2022 &options->hostbased_key_types) != 0 ||
2023 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2024 &options->pubkey_key_types) != 0)
2025 fatal("%s: kex_assemble_names failed", __func__);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002026
Damien Millere9fc72e2013-10-15 12:14:12 +11002027#define CLEAR_ON_NONE(v) \
2028 do { \
Damien Miller13f97b22014-02-24 15:57:55 +11002029 if (option_clear_or_none(v)) { \
Damien Millere9fc72e2013-10-15 12:14:12 +11002030 free(v); \
2031 v = NULL; \
2032 } \
2033 } while(0)
2034 CLEAR_ON_NONE(options->local_command);
2035 CLEAR_ON_NONE(options->proxy_command);
2036 CLEAR_ON_NONE(options->control_path);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002037 CLEAR_ON_NONE(options->revoked_host_keys);
markus@openbsd.org1a75d142016-05-04 14:29:58 +00002038 /* options->identity_agent distinguishes NULL from 'none' */
Damien Miller95def091999-11-25 00:26:21 +11002039 /* options->user will be set in the main program if appropriate */
2040 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00002041 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00002042 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002043}
Damien Millerf91ee4c2005-03-01 21:24:33 +11002044
Damien Miller7acefbb2014-07-18 14:11:24 +10002045struct fwdarg {
2046 char *arg;
2047 int ispath;
2048};
2049
2050/*
2051 * parse_fwd_field
2052 * parses the next field in a port forwarding specification.
2053 * sets fwd to the parsed field and advances p past the colon
2054 * or sets it to NULL at end of string.
2055 * returns 0 on success, else non-zero.
2056 */
2057static int
2058parse_fwd_field(char **p, struct fwdarg *fwd)
2059{
2060 char *ep, *cp = *p;
2061 int ispath = 0;
2062
2063 if (*cp == '\0') {
2064 *p = NULL;
2065 return -1; /* end of string */
2066 }
2067
2068 /*
2069 * A field escaped with square brackets is used literally.
2070 * XXX - allow ']' to be escaped via backslash?
2071 */
2072 if (*cp == '[') {
2073 /* find matching ']' */
2074 for (ep = cp + 1; *ep != ']' && *ep != '\0'; ep++) {
2075 if (*ep == '/')
2076 ispath = 1;
2077 }
2078 /* no matching ']' or not at end of field. */
2079 if (ep[0] != ']' || (ep[1] != ':' && ep[1] != '\0'))
2080 return -1;
2081 /* NUL terminate the field and advance p past the colon */
2082 *ep++ = '\0';
2083 if (*ep != '\0')
2084 *ep++ = '\0';
2085 fwd->arg = cp + 1;
2086 fwd->ispath = ispath;
2087 *p = ep;
2088 return 0;
2089 }
2090
2091 for (cp = *p; *cp != '\0'; cp++) {
2092 switch (*cp) {
2093 case '\\':
2094 memmove(cp, cp + 1, strlen(cp + 1) + 1);
djm@openbsd.org78c2a4f2015-06-26 05:13:20 +00002095 if (*cp == '\0')
2096 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002097 break;
2098 case '/':
2099 ispath = 1;
2100 break;
2101 case ':':
2102 *cp++ = '\0';
2103 goto done;
2104 }
2105 }
2106done:
2107 fwd->arg = *p;
2108 fwd->ispath = ispath;
2109 *p = cp;
2110 return 0;
2111}
2112
Damien Millerf91ee4c2005-03-01 21:24:33 +11002113/*
2114 * parse_forward
2115 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11002116 * dynamicfwd == 0
Damien Miller7acefbb2014-07-18 14:11:24 +10002117 * [listenhost:]listenport|listenpath:connecthost:connectport|connectpath
2118 * listenpath:connectpath
Damien Millera699d952008-11-03 19:27:34 +11002119 * dynamicfwd == 1
2120 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11002121 * returns number of arguments parsed or zero on error
2122 */
2123int
Damien Miller7acefbb2014-07-18 14:11:24 +10002124parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002125{
Damien Miller7acefbb2014-07-18 14:11:24 +10002126 struct fwdarg fwdargs[4];
2127 char *p, *cp;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002128 int i;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002129
Damien Miller7acefbb2014-07-18 14:11:24 +10002130 memset(fwd, 0, sizeof(*fwd));
2131 memset(fwdargs, 0, sizeof(fwdargs));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002132
2133 cp = p = xstrdup(fwdspec);
2134
2135 /* skip leading spaces */
Damien Millerfdb23062013-11-21 13:57:15 +11002136 while (isspace((u_char)*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002137 cp++;
2138
Damien Miller7acefbb2014-07-18 14:11:24 +10002139 for (i = 0; i < 4; ++i) {
2140 if (parse_fwd_field(&cp, &fwdargs[i]) != 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002141 break;
Damien Miller7acefbb2014-07-18 14:11:24 +10002142 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002143
Damien Millerf4b39532008-11-03 19:28:21 +11002144 /* Check for trailing garbage */
Damien Miller7acefbb2014-07-18 14:11:24 +10002145 if (cp != NULL && *cp != '\0') {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002146 i = 0; /* failure */
Damien Miller7acefbb2014-07-18 14:11:24 +10002147 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002148
2149 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11002150 case 1:
Damien Miller7acefbb2014-07-18 14:11:24 +10002151 if (fwdargs[0].ispath) {
2152 fwd->listen_path = xstrdup(fwdargs[0].arg);
2153 fwd->listen_port = PORT_STREAMLOCAL;
2154 } else {
2155 fwd->listen_host = NULL;
2156 fwd->listen_port = a2port(fwdargs[0].arg);
2157 }
Damien Millera699d952008-11-03 19:27:34 +11002158 fwd->connect_host = xstrdup("socks");
2159 break;
2160
2161 case 2:
Damien Miller7acefbb2014-07-18 14:11:24 +10002162 if (fwdargs[0].ispath && fwdargs[1].ispath) {
2163 fwd->listen_path = xstrdup(fwdargs[0].arg);
2164 fwd->listen_port = PORT_STREAMLOCAL;
2165 fwd->connect_path = xstrdup(fwdargs[1].arg);
2166 fwd->connect_port = PORT_STREAMLOCAL;
2167 } else if (fwdargs[1].ispath) {
2168 fwd->listen_host = NULL;
2169 fwd->listen_port = a2port(fwdargs[0].arg);
2170 fwd->connect_path = xstrdup(fwdargs[1].arg);
2171 fwd->connect_port = PORT_STREAMLOCAL;
2172 } else {
2173 fwd->listen_host = xstrdup(fwdargs[0].arg);
2174 fwd->listen_port = a2port(fwdargs[1].arg);
2175 fwd->connect_host = xstrdup("socks");
2176 }
Damien Millera699d952008-11-03 19:27:34 +11002177 break;
2178
Damien Millerf91ee4c2005-03-01 21:24:33 +11002179 case 3:
Damien Miller7acefbb2014-07-18 14:11:24 +10002180 if (fwdargs[0].ispath) {
2181 fwd->listen_path = xstrdup(fwdargs[0].arg);
2182 fwd->listen_port = PORT_STREAMLOCAL;
2183 fwd->connect_host = xstrdup(fwdargs[1].arg);
2184 fwd->connect_port = a2port(fwdargs[2].arg);
2185 } else if (fwdargs[2].ispath) {
2186 fwd->listen_host = xstrdup(fwdargs[0].arg);
2187 fwd->listen_port = a2port(fwdargs[1].arg);
2188 fwd->connect_path = xstrdup(fwdargs[2].arg);
2189 fwd->connect_port = PORT_STREAMLOCAL;
2190 } else {
2191 fwd->listen_host = NULL;
2192 fwd->listen_port = a2port(fwdargs[0].arg);
2193 fwd->connect_host = xstrdup(fwdargs[1].arg);
2194 fwd->connect_port = a2port(fwdargs[2].arg);
2195 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002196 break;
2197
2198 case 4:
Damien Miller7acefbb2014-07-18 14:11:24 +10002199 fwd->listen_host = xstrdup(fwdargs[0].arg);
2200 fwd->listen_port = a2port(fwdargs[1].arg);
2201 fwd->connect_host = xstrdup(fwdargs[2].arg);
2202 fwd->connect_port = a2port(fwdargs[3].arg);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002203 break;
2204 default:
2205 i = 0; /* failure */
2206 }
2207
Darren Tuckera627d422013-06-02 07:31:17 +10002208 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002209
Damien Millera699d952008-11-03 19:27:34 +11002210 if (dynamicfwd) {
2211 if (!(i == 1 || i == 2))
2212 goto fail_free;
2213 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002214 if (!(i == 3 || i == 4)) {
2215 if (fwd->connect_path == NULL &&
2216 fwd->listen_path == NULL)
2217 goto fail_free;
2218 }
2219 if (fwd->connect_port <= 0 && fwd->connect_path == NULL)
Damien Millera699d952008-11-03 19:27:34 +11002220 goto fail_free;
2221 }
2222
Damien Miller7acefbb2014-07-18 14:11:24 +10002223 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) ||
2224 (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002225 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002226 if (fwd->connect_host != NULL &&
2227 strlen(fwd->connect_host) >= NI_MAXHOST)
2228 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002229 /* XXX - if connecting to a remote socket, max sun len may not match this host */
2230 if (fwd->connect_path != NULL &&
2231 strlen(fwd->connect_path) >= PATH_MAX_SUN)
2232 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11002233 if (fwd->listen_host != NULL &&
2234 strlen(fwd->listen_host) >= NI_MAXHOST)
2235 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002236 if (fwd->listen_path != NULL &&
2237 strlen(fwd->listen_path) >= PATH_MAX_SUN)
2238 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002239
2240 return (i);
2241
2242 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10002243 free(fwd->connect_host);
2244 fwd->connect_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002245 free(fwd->connect_path);
2246 fwd->connect_path = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002247 free(fwd->listen_host);
2248 fwd->listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002249 free(fwd->listen_path);
2250 fwd->listen_path = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002251 return (0);
2252}
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002253
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002254int
2255parse_jump(const char *s, Options *o, int active)
2256{
2257 char *orig, *sdup, *cp;
2258 char *host = NULL, *user = NULL;
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002259 int ret = -1, port = -1, first;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002260
2261 active &= o->proxy_command == NULL && o->jump_host == NULL;
2262
2263 orig = sdup = xstrdup(s);
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002264 first = active;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002265 do {
2266 if ((cp = strrchr(sdup, ',')) == NULL)
2267 cp = sdup; /* last */
2268 else
2269 *cp++ = '\0';
2270
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002271 if (first) {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002272 /* First argument and configuration is active */
2273 if (parse_user_host_port(cp, &user, &host, &port) != 0)
2274 goto out;
2275 } else {
2276 /* Subsequent argument or inactive configuration */
2277 if (parse_user_host_port(cp, NULL, NULL, NULL) != 0)
2278 goto out;
2279 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002280 first = 0; /* only check syntax for subsequent hosts */
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002281 } while (cp != sdup);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002282 /* success */
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002283 if (active) {
2284 o->jump_user = user;
2285 o->jump_host = host;
2286 o->jump_port = port;
2287 o->proxy_command = xstrdup("none");
2288 user = host = NULL;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002289 if ((cp = strrchr(s, ',')) != NULL && cp != s) {
2290 o->jump_extra = xstrdup(s);
2291 o->jump_extra[cp - s] = '\0';
2292 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002293 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002294 ret = 0;
2295 out:
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002296 free(orig);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002297 free(user);
2298 free(host);
2299 return ret;
2300}
2301
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002302/* XXX the following is a near-vebatim copy from servconf.c; refactor */
2303static const char *
2304fmt_multistate_int(int val, const struct multistate *m)
2305{
2306 u_int i;
2307
2308 for (i = 0; m[i].key != NULL; i++) {
2309 if (m[i].value == val)
2310 return m[i].key;
2311 }
2312 return "UNKNOWN";
2313}
2314
2315static const char *
2316fmt_intarg(OpCodes code, int val)
2317{
2318 if (val == -1)
2319 return "unset";
2320 switch (code) {
2321 case oAddressFamily:
2322 return fmt_multistate_int(val, multistate_addressfamily);
2323 case oVerifyHostKeyDNS:
2324 case oStrictHostKeyChecking:
djm@openbsd.org523463a2015-02-16 22:13:32 +00002325 case oUpdateHostkeys:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002326 return fmt_multistate_int(val, multistate_yesnoask);
2327 case oControlMaster:
2328 return fmt_multistate_int(val, multistate_controlmaster);
2329 case oTunnel:
2330 return fmt_multistate_int(val, multistate_tunnel);
2331 case oRequestTTY:
2332 return fmt_multistate_int(val, multistate_requesttty);
2333 case oCanonicalizeHostname:
2334 return fmt_multistate_int(val, multistate_canonicalizehostname);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002335 case oFingerprintHash:
2336 return ssh_digest_alg_name(val);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002337 default:
2338 switch (val) {
2339 case 0:
2340 return "no";
2341 case 1:
2342 return "yes";
2343 default:
2344 return "UNKNOWN";
2345 }
2346 }
2347}
2348
2349static const char *
2350lookup_opcode_name(OpCodes code)
2351{
2352 u_int i;
2353
2354 for (i = 0; keywords[i].name != NULL; i++)
2355 if (keywords[i].opcode == code)
2356 return(keywords[i].name);
2357 return "UNKNOWN";
2358}
2359
2360static void
2361dump_cfg_int(OpCodes code, int val)
2362{
2363 printf("%s %d\n", lookup_opcode_name(code), val);
2364}
2365
2366static void
2367dump_cfg_fmtint(OpCodes code, int val)
2368{
2369 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
2370}
2371
2372static void
2373dump_cfg_string(OpCodes code, const char *val)
2374{
2375 if (val == NULL)
2376 return;
2377 printf("%s %s\n", lookup_opcode_name(code), val);
2378}
2379
2380static void
2381dump_cfg_strarray(OpCodes code, u_int count, char **vals)
2382{
2383 u_int i;
2384
2385 for (i = 0; i < count; i++)
2386 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
2387}
2388
2389static void
2390dump_cfg_strarray_oneline(OpCodes code, u_int count, char **vals)
2391{
2392 u_int i;
2393
2394 printf("%s", lookup_opcode_name(code));
2395 for (i = 0; i < count; i++)
2396 printf(" %s", vals[i]);
2397 printf("\n");
2398}
2399
2400static void
2401dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds)
2402{
2403 const struct Forward *fwd;
2404 u_int i;
2405
2406 /* oDynamicForward */
2407 for (i = 0; i < count; i++) {
2408 fwd = &fwds[i];
djm@openbsd.org4833d012017-01-30 00:34:01 +00002409 if (code == oDynamicForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002410 strcmp(fwd->connect_host, "socks") != 0)
2411 continue;
djm@openbsd.org4833d012017-01-30 00:34:01 +00002412 if (code == oLocalForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002413 strcmp(fwd->connect_host, "socks") == 0)
2414 continue;
2415 printf("%s", lookup_opcode_name(code));
2416 if (fwd->listen_port == PORT_STREAMLOCAL)
2417 printf(" %s", fwd->listen_path);
2418 else if (fwd->listen_host == NULL)
2419 printf(" %d", fwd->listen_port);
2420 else {
2421 printf(" [%s]:%d",
2422 fwd->listen_host, fwd->listen_port);
2423 }
2424 if (code != oDynamicForward) {
2425 if (fwd->connect_port == PORT_STREAMLOCAL)
2426 printf(" %s", fwd->connect_path);
2427 else if (fwd->connect_host == NULL)
2428 printf(" %d", fwd->connect_port);
2429 else {
2430 printf(" [%s]:%d",
2431 fwd->connect_host, fwd->connect_port);
2432 }
2433 }
2434 printf("\n");
2435 }
2436}
2437
2438void
2439dump_client_config(Options *o, const char *host)
2440{
2441 int i;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002442 char buf[8];
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002443
djm@openbsd.org60a92472015-08-21 23:53:08 +00002444 /* This is normally prepared in ssh_kex2 */
2445 if (kex_assemble_names(KEX_DEFAULT_PK_ALG, &o->hostkeyalgorithms) != 0)
2446 fatal("%s: kex_assemble_names failed", __func__);
2447
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002448 /* Most interesting options first: user, host, port */
2449 dump_cfg_string(oUser, o->user);
2450 dump_cfg_string(oHostName, host);
2451 dump_cfg_int(oPort, o->port);
2452
2453 /* Flag options */
2454 dump_cfg_fmtint(oAddressFamily, o->address_family);
2455 dump_cfg_fmtint(oBatchMode, o->batch_mode);
2456 dump_cfg_fmtint(oCanonicalizeFallbackLocal, o->canonicalize_fallback_local);
2457 dump_cfg_fmtint(oCanonicalizeHostname, o->canonicalize_hostname);
2458 dump_cfg_fmtint(oChallengeResponseAuthentication, o->challenge_response_authentication);
2459 dump_cfg_fmtint(oCheckHostIP, o->check_host_ip);
2460 dump_cfg_fmtint(oCompression, o->compression);
2461 dump_cfg_fmtint(oControlMaster, o->control_master);
2462 dump_cfg_fmtint(oEnableSSHKeysign, o->enable_ssh_keysign);
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00002463 dump_cfg_fmtint(oClearAllForwardings, o->clear_forwardings);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002464 dump_cfg_fmtint(oExitOnForwardFailure, o->exit_on_forward_failure);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002465 dump_cfg_fmtint(oFingerprintHash, o->fingerprint_hash);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002466 dump_cfg_fmtint(oForwardAgent, o->forward_agent);
2467 dump_cfg_fmtint(oForwardX11, o->forward_x11);
2468 dump_cfg_fmtint(oForwardX11Trusted, o->forward_x11_trusted);
2469 dump_cfg_fmtint(oGatewayPorts, o->fwd_opts.gateway_ports);
2470#ifdef GSSAPI
2471 dump_cfg_fmtint(oGssAuthentication, o->gss_authentication);
2472 dump_cfg_fmtint(oGssDelegateCreds, o->gss_deleg_creds);
2473#endif /* GSSAPI */
2474 dump_cfg_fmtint(oHashKnownHosts, o->hash_known_hosts);
2475 dump_cfg_fmtint(oHostbasedAuthentication, o->hostbased_authentication);
2476 dump_cfg_fmtint(oIdentitiesOnly, o->identities_only);
2477 dump_cfg_fmtint(oKbdInteractiveAuthentication, o->kbd_interactive_authentication);
2478 dump_cfg_fmtint(oNoHostAuthenticationForLocalhost, o->no_host_authentication_for_localhost);
2479 dump_cfg_fmtint(oPasswordAuthentication, o->password_authentication);
2480 dump_cfg_fmtint(oPermitLocalCommand, o->permit_local_command);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002481 dump_cfg_fmtint(oProxyUseFdpass, o->proxy_use_fdpass);
2482 dump_cfg_fmtint(oPubkeyAuthentication, o->pubkey_authentication);
2483 dump_cfg_fmtint(oRequestTTY, o->request_tty);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002484 dump_cfg_fmtint(oStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
2485 dump_cfg_fmtint(oStrictHostKeyChecking, o->strict_host_key_checking);
2486 dump_cfg_fmtint(oTCPKeepAlive, o->tcp_keep_alive);
2487 dump_cfg_fmtint(oTunnel, o->tun_open);
2488 dump_cfg_fmtint(oUsePrivilegedPort, o->use_privileged_port);
2489 dump_cfg_fmtint(oVerifyHostKeyDNS, o->verify_host_key_dns);
2490 dump_cfg_fmtint(oVisualHostKey, o->visual_host_key);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002491 dump_cfg_fmtint(oUpdateHostkeys, o->update_hostkeys);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002492
2493 /* Integer options */
2494 dump_cfg_int(oCanonicalizeMaxDots, o->canonicalize_max_dots);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002495 dump_cfg_int(oConnectionAttempts, o->connection_attempts);
2496 dump_cfg_int(oForwardX11Timeout, o->forward_x11_timeout);
2497 dump_cfg_int(oNumberOfPasswordPrompts, o->number_of_password_prompts);
2498 dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);
2499 dump_cfg_int(oServerAliveInterval, o->server_alive_interval);
2500
2501 /* String options */
2502 dump_cfg_string(oBindAddress, o->bind_address);
2503 dump_cfg_string(oCiphers, o->ciphers ? o->ciphers : KEX_CLIENT_ENCRYPT);
2504 dump_cfg_string(oControlPath, o->control_path);
djm@openbsd.org60a92472015-08-21 23:53:08 +00002505 dump_cfg_string(oHostKeyAlgorithms, o->hostkeyalgorithms);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002506 dump_cfg_string(oHostKeyAlias, o->host_key_alias);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002507 dump_cfg_string(oHostbasedKeyTypes, o->hostbased_key_types);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00002508 dump_cfg_string(oIdentityAgent, o->identity_agent);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002509 dump_cfg_string(oKbdInteractiveDevices, o->kbd_interactive_devices);
2510 dump_cfg_string(oKexAlgorithms, o->kex_algorithms ? o->kex_algorithms : KEX_CLIENT_KEX);
2511 dump_cfg_string(oLocalCommand, o->local_command);
2512 dump_cfg_string(oLogLevel, log_level_name(o->log_level));
2513 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002514#ifdef ENABLE_PKCS11
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002515 dump_cfg_string(oPKCS11Provider, o->pkcs11_provider);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002516#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002517 dump_cfg_string(oPreferredAuthentications, o->preferred_authentications);
djm@openbsd.org0c46bbe2015-10-07 15:59:12 +00002518 dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002519 dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002520 dump_cfg_string(oXAuthLocation, o->xauth_location);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002521
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002522 /* Forwards */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002523 dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards);
2524 dump_cfg_forwards(oLocalForward, o->num_local_forwards, o->local_forwards);
2525 dump_cfg_forwards(oRemoteForward, o->num_remote_forwards, o->remote_forwards);
2526
2527 /* String array options */
2528 dump_cfg_strarray(oIdentityFile, o->num_identity_files, o->identity_files);
2529 dump_cfg_strarray_oneline(oCanonicalDomains, o->num_canonical_domains, o->canonical_domains);
2530 dump_cfg_strarray_oneline(oGlobalKnownHostsFile, o->num_system_hostfiles, o->system_hostfiles);
2531 dump_cfg_strarray_oneline(oUserKnownHostsFile, o->num_user_hostfiles, o->user_hostfiles);
2532 dump_cfg_strarray(oSendEnv, o->num_send_env, o->send_env);
2533
2534 /* Special cases */
2535
2536 /* oConnectTimeout */
2537 if (o->connection_timeout == -1)
2538 printf("connecttimeout none\n");
2539 else
2540 dump_cfg_int(oConnectTimeout, o->connection_timeout);
2541
2542 /* oTunnelDevice */
2543 printf("tunneldevice");
2544 if (o->tun_local == SSH_TUNID_ANY)
2545 printf(" any");
2546 else
2547 printf(" %d", o->tun_local);
2548 if (o->tun_remote == SSH_TUNID_ANY)
2549 printf(":any");
2550 else
2551 printf(":%d", o->tun_remote);
2552 printf("\n");
2553
2554 /* oCanonicalizePermittedCNAMEs */
2555 if ( o->num_permitted_cnames > 0) {
2556 printf("canonicalizePermittedcnames");
2557 for (i = 0; i < o->num_permitted_cnames; i++) {
2558 printf(" %s:%s", o->permitted_cnames[i].source_list,
2559 o->permitted_cnames[i].target_list);
2560 }
2561 printf("\n");
2562 }
2563
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002564 /* oControlPersist */
2565 if (o->control_persist == 0 || o->control_persist_timeout == 0)
2566 dump_cfg_fmtint(oControlPersist, o->control_persist);
2567 else
2568 dump_cfg_int(oControlPersist, o->control_persist_timeout);
2569
2570 /* oEscapeChar */
2571 if (o->escape_char == SSH_ESCAPECHAR_NONE)
2572 printf("escapechar none\n");
2573 else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002574 vis(buf, o->escape_char, VIS_WHITE, 0);
2575 printf("escapechar %s\n", buf);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002576 }
2577
2578 /* oIPQoS */
2579 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
2580 printf("%s\n", iptos2str(o->ip_qos_bulk));
2581
2582 /* oRekeyLimit */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00002583 printf("rekeylimit %llu %d\n",
2584 (unsigned long long)o->rekey_limit, o->rekey_interval);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002585
2586 /* oStreamLocalBindMask */
2587 printf("streamlocalbindmask 0%o\n",
2588 o->fwd_opts.streamlocal_bind_mask);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002589
2590 /* oProxyCommand / oProxyJump */
2591 if (o->jump_host == NULL)
2592 dump_cfg_string(oProxyCommand, o->proxy_command);
2593 else {
2594 /* Check for numeric addresses */
2595 i = strchr(o->jump_host, ':') != NULL ||
2596 strspn(o->jump_host, "1234567890.") == strlen(o->jump_host);
2597 snprintf(buf, sizeof(buf), "%d", o->jump_port);
2598 printf("proxyjump %s%s%s%s%s%s%s%s%s\n",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002599 /* optional additional jump spec */
2600 o->jump_extra == NULL ? "" : o->jump_extra,
2601 o->jump_extra == NULL ? "" : ",",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002602 /* optional user */
2603 o->jump_user == NULL ? "" : o->jump_user,
2604 o->jump_user == NULL ? "" : "@",
2605 /* opening [ if hostname is numeric */
2606 i ? "[" : "",
2607 /* mandatory hostname */
2608 o->jump_host,
2609 /* closing ] if hostname is numeric */
2610 i ? "]" : "",
2611 /* optional port number */
2612 o->jump_port <= 0 ? "" : ":",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002613 o->jump_port <= 0 ? "" : buf);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002614 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002615}