blob: 5a7197c14242138fe025928a99c9c4941ae312ef [file] [log] [blame]
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +00001/* $OpenBSD: readconf.c,v 1.274 2017/04/30 23:15:04 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);
441 else
442 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
443
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
Damien Miller95def091999-11-25 00:26:21 +1100954 case oRSAAuthentication:
955 intptr = &options->rsa_authentication;
956 goto parse_flag;
957
958 case oRhostsRSAAuthentication:
959 intptr = &options->rhosts_rsa_authentication;
960 goto parse_flag;
961
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000962 case oHostbasedAuthentication:
963 intptr = &options->hostbased_authentication;
964 goto parse_flag;
965
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000966 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000967 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100968 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000969
Darren Tucker0efd1552003-08-26 11:49:55 +1000970 case oGssAuthentication:
971 intptr = &options->gss_authentication;
972 goto parse_flag;
973
974 case oGssDelegateCreds:
975 intptr = &options->gss_deleg_creds;
976 goto parse_flag;
977
Damien Miller95def091999-11-25 00:26:21 +1100978 case oBatchMode:
979 intptr = &options->batch_mode;
980 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000981
Damien Miller95def091999-11-25 00:26:21 +1100982 case oCheckHostIP:
983 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000984 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller37876e92003-05-15 10:19:46 +1000986 case oVerifyHostKeyDNS:
987 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100988 multistate_ptr = multistate_yesnoask;
989 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 case oStrictHostKeyChecking:
992 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100993 multistate_ptr = multistate_yesnoask;
994 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995
Damien Miller95def091999-11-25 00:26:21 +1100996 case oCompression:
997 intptr = &options->compression;
998 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller12c150e2003-12-17 16:31:10 +11001000 case oTCPKeepAlive:
1001 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +11001002 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001004 case oNoHostAuthenticationForLocalhost:
1005 intptr = &options->no_host_authentication_for_localhost;
1006 goto parse_flag;
1007
Damien Miller95def091999-11-25 00:26:21 +11001008 case oNumberOfPasswordPrompts:
1009 intptr = &options->number_of_password_prompts;
1010 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001011
Damien Miller95def091999-11-25 00:26:21 +11001012 case oCompressionLevel:
1013 intptr = &options->compression_level;
1014 goto parse_int;
1015
Damien Millera5539d22003-04-09 20:50:06 +10001016 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +10001017 arg = strdelim(&s);
1018 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001019 fatal("%.200s line %d: Missing argument.", filename,
1020 linenum);
1021 if (strcmp(arg, "default") == 0) {
1022 val64 = 0;
1023 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +10001024 if (scan_scaled(arg, &val64) == -1)
1025 fatal("%.200s line %d: Bad number '%s': %s",
1026 filename, linenum, arg, strerror(errno));
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001027 if (val64 != 0 && val64 < 16)
1028 fatal("%.200s line %d: RekeyLimit too small",
1029 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +10001030 }
Damien Miller3dff1762008-02-10 22:25:52 +11001031 if (*activep && options->rekey_limit == -1)
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00001032 options->rekey_limit = val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001033 if (s != NULL) { /* optional rekey interval present */
1034 if (strcmp(s, "none") == 0) {
1035 (void)strdelim(&s); /* discard */
1036 break;
1037 }
1038 intptr = &options->rekey_interval;
1039 goto parse_time;
1040 }
Damien Millera5539d22003-04-09 20:50:06 +10001041 break;
1042
Damien Miller95def091999-11-25 00:26:21 +11001043 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +10001044 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001045 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001046 fatal("%.200s line %d: Missing argument.", filename, linenum);
1047 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001048 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +10001049 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +11001050 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001051 filename, linenum, SSH_MAX_IDENTITY_FILES);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001052 add_identity_file(options, NULL,
1053 arg, flags & SSHCONF_USERCONF);
Damien Miller95def091999-11-25 00:26:21 +11001054 }
1055 break;
1056
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001057 case oCertificateFile:
1058 arg = strdelim(&s);
1059 if (!arg || *arg == '\0')
1060 fatal("%.200s line %d: Missing argument.",
1061 filename, linenum);
1062 if (*activep) {
1063 intptr = &options->num_certificate_files;
1064 if (*intptr >= SSH_MAX_CERTIFICATE_FILES) {
1065 fatal("%.200s line %d: Too many certificate "
1066 "files specified (max %d).",
1067 filename, linenum,
1068 SSH_MAX_CERTIFICATE_FILES);
1069 }
1070 add_certificate_file(options, arg,
1071 flags & SSHCONF_USERCONF);
1072 }
1073 break;
1074
Damien Millerd3a18572000-06-07 19:55:44 +10001075 case oXAuthLocation:
1076 charptr=&options->xauth_location;
1077 goto parse_string;
1078
Damien Miller95def091999-11-25 00:26:21 +11001079 case oUser:
1080 charptr = &options->user;
1081parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +10001082 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001083 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +10001084 fatal("%.200s line %d: Missing argument.",
1085 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001086 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001087 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +11001088 break;
1089
1090 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001091 cpptr = (char **)&options->system_hostfiles;
1092 uintptr = &options->num_system_hostfiles;
1093 max_entries = SSH_MAX_HOSTS_FILES;
1094parse_char_array:
1095 if (*activep && *uintptr == 0) {
1096 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1097 if ((*uintptr) >= max_entries)
1098 fatal("%s line %d: "
1099 "too many authorized keys files.",
1100 filename, linenum);
1101 cpptr[(*uintptr)++] = xstrdup(arg);
1102 }
1103 }
1104 return 0;
Damien Miller95def091999-11-25 00:26:21 +11001105
1106 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001107 cpptr = (char **)&options->user_hostfiles;
1108 uintptr = &options->num_user_hostfiles;
1109 max_entries = SSH_MAX_HOSTS_FILES;
1110 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +10001111
Damien Miller95def091999-11-25 00:26:21 +11001112 case oHostName:
1113 charptr = &options->hostname;
1114 goto parse_string;
1115
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001116 case oHostKeyAlias:
1117 charptr = &options->host_key_alias;
1118 goto parse_string;
1119
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001120 case oPreferredAuthentications:
1121 charptr = &options->preferred_authentications;
1122 goto parse_string;
1123
Ben Lindstrome0f88042001-04-30 13:06:24 +00001124 case oBindAddress:
1125 charptr = &options->bind_address;
1126 goto parse_string;
1127
Damien Miller7ea845e2010-02-12 09:21:02 +11001128 case oPKCS11Provider:
1129 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001130 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +00001131
Damien Miller95def091999-11-25 00:26:21 +11001132 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +11001133 charptr = &options->proxy_command;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001134 /* Ignore ProxyCommand if ProxyJump already specified */
1135 if (options->jump_host != NULL)
1136 charptr = &options->jump_host; /* Skip below */
Damien Millerd27b9472005-12-13 19:29:02 +11001137parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +10001138 if (s == NULL)
1139 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +11001140 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +11001141 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +11001142 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +11001143 return 0;
1144
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001145 case oProxyJump:
1146 if (s == NULL) {
1147 fatal("%.200s line %d: Missing argument.",
1148 filename, linenum);
1149 }
1150 len = strspn(s, WHITESPACE "=");
1151 if (parse_jump(s + len, options, *activep) == -1) {
1152 fatal("%.200s line %d: Invalid ProxyJump \"%s\"",
1153 filename, linenum, s + len);
1154 }
1155 return 0;
1156
Damien Miller95def091999-11-25 00:26:21 +11001157 case oPort:
1158 intptr = &options->port;
1159parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +10001160 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001161 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001162 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001163 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +11001164 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +11001165
1166 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +10001167 value = strtol(arg, &endofnumber, 0);
1168 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +11001169 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001170 if (*activep && *intptr == -1)
1171 *intptr = value;
1172 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173
Damien Miller95def091999-11-25 00:26:21 +11001174 case oConnectionAttempts:
1175 intptr = &options->connection_attempts;
1176 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +11001177
Damien Miller78928792000-04-12 20:17:38 +10001178 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001179 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001180 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001181 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001182 if (*arg != '-' && !ciphers_valid(*arg == '+' ? arg + 1 : arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001183 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001184 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001185 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001186 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001187 break;
1188
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001189 case oMacs:
1190 arg = strdelim(&s);
1191 if (!arg || *arg == '\0')
1192 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001193 if (*arg != '-' && !mac_valid(*arg == '+' ? arg + 1 : arg))
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001194 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001195 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001196 if (*activep && options->macs == NULL)
1197 options->macs = xstrdup(arg);
1198 break;
1199
Damien Millerd5f62bf2010-09-24 22:11:14 +10001200 case oKexAlgorithms:
1201 arg = strdelim(&s);
1202 if (!arg || *arg == '\0')
1203 fatal("%.200s line %d: Missing argument.",
1204 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001205 if (*arg != '-' &&
1206 !kex_names_valid(*arg == '+' ? arg + 1 : arg))
Damien Millerd5f62bf2010-09-24 22:11:14 +10001207 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1208 filename, linenum, arg ? arg : "<NONE>");
1209 if (*activep && options->kex_algorithms == NULL)
1210 options->kex_algorithms = xstrdup(arg);
1211 break;
1212
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001213 case oHostKeyAlgorithms:
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001214 charptr = &options->hostkeyalgorithms;
1215parse_keytypes:
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001216 arg = strdelim(&s);
1217 if (!arg || *arg == '\0')
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001218 fatal("%.200s line %d: Missing argument.",
1219 filename, linenum);
djm@openbsd.org68bc8cf2017-02-03 23:01:19 +00001220 if (*arg != '-' &&
1221 !sshkey_names_valid2(*arg == '+' ? arg + 1 : arg, 1))
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001222 fatal("%s line %d: Bad key types '%s'.",
1223 filename, linenum, arg ? arg : "<NONE>");
1224 if (*activep && *charptr == NULL)
1225 *charptr = xstrdup(arg);
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001226 break;
1227
Damien Miller95def091999-11-25 00:26:21 +11001228 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001229 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001230 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001231 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001232 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001233 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001234 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001235 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1236 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001237 break;
1238
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001239 case oLogFacility:
1240 log_facility_ptr = &options->log_facility;
1241 arg = strdelim(&s);
1242 value = log_facility_number(arg);
1243 if (value == SYSLOG_FACILITY_NOT_SET)
1244 fatal("%.200s line %d: unsupported log facility '%s'",
1245 filename, linenum, arg ? arg : "<NONE>");
1246 if (*log_facility_ptr == -1)
1247 *log_facility_ptr = (SyslogFacility) value;
1248 break;
1249
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001250 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001251 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001252 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001253 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001254 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001255 fatal("%.200s line %d: Missing port argument.",
1256 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001257
Damien Millera699d952008-11-03 19:27:34 +11001258 if (opcode == oLocalForward ||
1259 opcode == oRemoteForward) {
1260 arg2 = strdelim(&s);
1261 if (arg2 == NULL || *arg2 == '\0')
1262 fatal("%.200s line %d: Missing target argument.",
1263 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001264
Damien Millera699d952008-11-03 19:27:34 +11001265 /* construct a string for parse_forward */
1266 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1267 } else if (opcode == oDynamicForward) {
1268 strlcpy(fwdarg, arg, sizeof(fwdarg));
1269 }
1270
1271 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001272 opcode == oDynamicForward ? 1 : 0,
1273 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001274 fatal("%.200s line %d: Bad forwarding specification.",
1275 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001276
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001277 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001278 if (opcode == oLocalForward ||
1279 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001280 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001281 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001282 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001283 }
Damien Miller95def091999-11-25 00:26:21 +11001284 break;
1285
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001286 case oClearAllForwardings:
1287 intptr = &options->clear_forwardings;
1288 goto parse_flag;
1289
Damien Miller95def091999-11-25 00:26:21 +11001290 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001291 if (cmdline)
1292 fatal("Host directive not supported as a command-line "
1293 "option");
Damien Miller95def091999-11-25 00:26:21 +11001294 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001295 arg2 = NULL;
1296 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001297 if ((flags & SSHCONF_NEVERMATCH) != 0)
1298 break;
Damien Millerfe924212011-05-15 08:44:45 +10001299 negated = *arg == '!';
1300 if (negated)
1301 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001302 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001303 if (negated) {
1304 debug("%.200s line %d: Skipping Host "
1305 "block because of negated match "
1306 "for %.100s", filename, linenum,
1307 arg);
1308 *activep = 0;
1309 break;
1310 }
1311 if (!*activep)
1312 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001313 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001314 }
Damien Millerfe924212011-05-15 08:44:45 +10001315 }
1316 if (*activep)
1317 debug("%.200s line %d: Applying options for %.100s",
1318 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001319 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001320 return 0;
1321
Damien Miller194fd902013-10-15 12:13:05 +11001322 case oMatch:
1323 if (cmdline)
1324 fatal("Host directive not supported as a command-line "
1325 "option");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001326 value = match_cfg_line(options, &s, pw, host, original_host,
1327 flags & SSHCONF_POSTCANON, filename, linenum);
Damien Miller194fd902013-10-15 12:13:05 +11001328 if (value < 0)
1329 fatal("%.200s line %d: Bad Match condition", filename,
1330 linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001331 *activep = (flags & SSHCONF_NEVERMATCH) ? 0 : value;
Damien Miller194fd902013-10-15 12:13:05 +11001332 break;
1333
Damien Miller95def091999-11-25 00:26:21 +11001334 case oEscapeChar:
1335 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001336 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001337 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001338 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org08823322015-05-22 04:45:52 +00001339 if (strcmp(arg, "none") == 0)
1340 value = SSH_ESCAPECHAR_NONE;
1341 else if (arg[1] == '\0')
1342 value = (u_char) arg[0];
1343 else if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001344 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1345 value = (u_char) arg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +11001346 else {
1347 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001348 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001349 /* NOTREACHED */
1350 value = 0; /* Avoid compiler warning. */
1351 }
1352 if (*activep && *intptr == -1)
1353 *intptr = value;
1354 break;
1355
Damien Miller20a8f972003-05-18 20:50:30 +10001356 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001357 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001358 multistate_ptr = multistate_addressfamily;
1359 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001360
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001361 case oEnableSSHKeysign:
1362 intptr = &options->enable_ssh_keysign;
1363 goto parse_flag;
1364
Damien Millerbd394c32004-03-08 23:12:36 +11001365 case oIdentitiesOnly:
1366 intptr = &options->identities_only;
1367 goto parse_flag;
1368
Damien Miller509b0102003-12-17 16:33:10 +11001369 case oServerAliveInterval:
1370 intptr = &options->server_alive_interval;
1371 goto parse_time;
1372
1373 case oServerAliveCountMax:
1374 intptr = &options->server_alive_count_max;
1375 goto parse_int;
1376
Darren Tucker46bc0752004-05-02 22:11:30 +10001377 case oSendEnv:
1378 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1379 if (strchr(arg, '=') != NULL)
1380 fatal("%s line %d: Invalid environment name.",
1381 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001382 if (!*activep)
1383 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001384 if (options->num_send_env >= MAX_SEND_ENV)
1385 fatal("%s line %d: too many send env.",
1386 filename, linenum);
1387 options->send_env[options->num_send_env++] =
1388 xstrdup(arg);
1389 }
1390 break;
1391
Damien Miller0e220db2004-06-15 10:34:08 +10001392 case oControlPath:
1393 charptr = &options->control_path;
1394 goto parse_string;
1395
1396 case oControlMaster:
1397 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001398 multistate_ptr = multistate_controlmaster;
1399 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001400
Damien Millere11e1ea2010-08-03 16:04:46 +10001401 case oControlPersist:
1402 /* no/false/yes/true, or a time spec */
1403 intptr = &options->control_persist;
1404 arg = strdelim(&s);
1405 if (!arg || *arg == '\0')
1406 fatal("%.200s line %d: Missing ControlPersist"
1407 " argument.", filename, linenum);
1408 value = 0;
1409 value2 = 0; /* timeout */
1410 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1411 value = 0;
1412 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1413 value = 1;
1414 else if ((value2 = convtime(arg)) >= 0)
1415 value = 1;
1416 else
1417 fatal("%.200s line %d: Bad ControlPersist argument.",
1418 filename, linenum);
1419 if (*activep && *intptr == -1) {
1420 *intptr = value;
1421 options->control_persist_timeout = value2;
1422 }
1423 break;
1424
Damien Millere1776152005-03-01 21:47:37 +11001425 case oHashKnownHosts:
1426 intptr = &options->hash_known_hosts;
1427 goto parse_flag;
1428
Damien Millerd27b9472005-12-13 19:29:02 +11001429 case oTunnel:
1430 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001431 multistate_ptr = multistate_tunnel;
1432 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001433
1434 case oTunnelDevice:
1435 arg = strdelim(&s);
1436 if (!arg || *arg == '\0')
1437 fatal("%.200s line %d: Missing argument.", filename, linenum);
1438 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001439 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001440 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1441 if (*activep) {
1442 options->tun_local = value;
1443 options->tun_remote = value2;
1444 }
1445 break;
1446
1447 case oLocalCommand:
1448 charptr = &options->local_command;
1449 goto parse_command;
1450
1451 case oPermitLocalCommand:
1452 intptr = &options->permit_local_command;
1453 goto parse_flag;
1454
Damien Miller10288242008-06-30 00:04:03 +10001455 case oVisualHostKey:
1456 intptr = &options->visual_host_key;
1457 goto parse_flag;
1458
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001459 case oInclude:
1460 if (cmdline)
1461 fatal("Include directive not supported as a "
1462 "command-line option");
1463 value = 0;
1464 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1465 /*
1466 * Ensure all paths are anchored. User configuration
1467 * files may begin with '~/' but system configurations
1468 * must not. If the path is relative, then treat it
1469 * as living in ~/.ssh for user configurations or
1470 * /etc/ssh for system ones.
1471 */
1472 if (*arg == '~' && (flags & SSHCONF_USERCONF) == 0)
1473 fatal("%.200s line %d: bad include path %s.",
1474 filename, linenum, arg);
1475 if (*arg != '/' && *arg != '~') {
1476 xasprintf(&arg2, "%s/%s",
1477 (flags & SSHCONF_USERCONF) ?
1478 "~/" _PATH_SSH_USER_DIR : SSHDIR, arg);
1479 } else
1480 arg2 = xstrdup(arg);
1481 memset(&gl, 0, sizeof(gl));
1482 r = glob(arg2, GLOB_TILDE, NULL, &gl);
1483 if (r == GLOB_NOMATCH) {
1484 debug("%.200s line %d: include %s matched no "
1485 "files",filename, linenum, arg2);
dtucker@openbsd.orgf6edbe92017-03-10 03:24:48 +00001486 free(arg2);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001487 continue;
1488 } else if (r != 0 || gl.gl_pathc < 0)
1489 fatal("%.200s line %d: glob failed for %s.",
1490 filename, linenum, arg2);
1491 free(arg2);
1492 oactive = *activep;
1493 for (i = 0; i < (u_int)gl.gl_pathc; i++) {
1494 debug3("%.200s line %d: Including file %s "
1495 "depth %d%s", filename, linenum,
1496 gl.gl_pathv[i], depth,
1497 oactive ? "" : " (parse only)");
1498 r = read_config_file_depth(gl.gl_pathv[i],
1499 pw, host, original_host, options,
1500 flags | SSHCONF_CHECKPERM |
1501 (oactive ? 0 : SSHCONF_NEVERMATCH),
1502 activep, depth + 1);
djm@openbsd.orgb64077f2017-01-06 09:27:52 +00001503 if (r != 1 && errno != ENOENT) {
djm@openbsd.org5e820e92017-01-06 03:53:58 +00001504 fatal("Can't open user config file "
1505 "%.100s: %.100s", gl.gl_pathv[i],
1506 strerror(errno));
1507 }
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001508 /*
1509 * don't let Match in includes clobber the
1510 * containing file's Match state.
1511 */
1512 *activep = oactive;
1513 if (r != 1)
1514 value = -1;
1515 }
1516 globfree(&gl);
1517 }
1518 if (value != 0)
1519 return value;
1520 break;
1521
Damien Miller0dac6fb2010-11-20 15:19:38 +11001522 case oIPQoS:
1523 arg = strdelim(&s);
1524 if ((value = parse_ipqos(arg)) == -1)
1525 fatal("%s line %d: Bad IPQoS value: %s",
1526 filename, linenum, arg);
1527 arg = strdelim(&s);
1528 if (arg == NULL)
1529 value2 = value;
1530 else if ((value2 = parse_ipqos(arg)) == -1)
1531 fatal("%s line %d: Bad IPQoS value: %s",
1532 filename, linenum, arg);
1533 if (*activep) {
1534 options->ip_qos_interactive = value;
1535 options->ip_qos_bulk = value2;
1536 }
1537 break;
1538
Damien Miller21771e22011-05-15 08:45:50 +10001539 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001540 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001541 multistate_ptr = multistate_requesttty;
1542 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001543
Darren Tucker07636982013-05-16 20:30:03 +10001544 case oIgnoreUnknown:
1545 charptr = &options->ignored_unknown;
1546 goto parse_string;
1547
Damien Miller1262b662013-08-21 02:44:24 +10001548 case oProxyUseFdpass:
1549 intptr = &options->proxy_use_fdpass;
1550 goto parse_flag;
1551
Damien Miller0faf7472013-10-17 11:47:23 +11001552 case oCanonicalDomains:
1553 value = options->num_canonical_domains != 0;
1554 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1555 valid_domain(arg, filename, linenum);
1556 if (!*activep || value)
1557 continue;
1558 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1559 fatal("%s line %d: too many hostname suffixes.",
1560 filename, linenum);
1561 options->canonical_domains[
1562 options->num_canonical_domains++] = xstrdup(arg);
1563 }
1564 break;
1565
Damien Miller38505592013-10-17 11:48:13 +11001566 case oCanonicalizePermittedCNAMEs:
Damien Miller0faf7472013-10-17 11:47:23 +11001567 value = options->num_permitted_cnames != 0;
1568 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1569 /* Either '*' for everything or 'list:list' */
1570 if (strcmp(arg, "*") == 0)
1571 arg2 = arg;
1572 else {
1573 lowercase(arg);
1574 if ((arg2 = strchr(arg, ':')) == NULL ||
1575 arg2[1] == '\0') {
1576 fatal("%s line %d: "
1577 "Invalid permitted CNAME \"%s\"",
1578 filename, linenum, arg);
1579 }
1580 *arg2 = '\0';
1581 arg2++;
1582 }
1583 if (!*activep || value)
1584 continue;
1585 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1586 fatal("%s line %d: too many permitted CNAMEs.",
1587 filename, linenum);
1588 cname = options->permitted_cnames +
1589 options->num_permitted_cnames++;
1590 cname->source_list = xstrdup(arg);
1591 cname->target_list = xstrdup(arg2);
1592 }
1593 break;
1594
Damien Miller38505592013-10-17 11:48:13 +11001595 case oCanonicalizeHostname:
1596 intptr = &options->canonicalize_hostname;
1597 multistate_ptr = multistate_canonicalizehostname;
Damien Miller0faf7472013-10-17 11:47:23 +11001598 goto parse_multistate;
1599
Damien Miller38505592013-10-17 11:48:13 +11001600 case oCanonicalizeMaxDots:
1601 intptr = &options->canonicalize_max_dots;
Damien Miller0faf7472013-10-17 11:47:23 +11001602 goto parse_int;
1603
Damien Miller38505592013-10-17 11:48:13 +11001604 case oCanonicalizeFallbackLocal:
1605 intptr = &options->canonicalize_fallback_local;
Damien Miller0faf7472013-10-17 11:47:23 +11001606 goto parse_flag;
1607
Damien Miller7acefbb2014-07-18 14:11:24 +10001608 case oStreamLocalBindMask:
1609 arg = strdelim(&s);
1610 if (!arg || *arg == '\0')
1611 fatal("%.200s line %d: Missing StreamLocalBindMask argument.", filename, linenum);
1612 /* Parse mode in octal format */
1613 value = strtol(arg, &endofnumber, 8);
1614 if (arg == endofnumber || value < 0 || value > 0777)
1615 fatal("%.200s line %d: Bad mask.", filename, linenum);
1616 options->fwd_opts.streamlocal_bind_mask = (mode_t)value;
1617 break;
1618
1619 case oStreamLocalBindUnlink:
1620 intptr = &options->fwd_opts.streamlocal_bind_unlink;
1621 goto parse_flag;
1622
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001623 case oRevokedHostKeys:
1624 charptr = &options->revoked_host_keys;
1625 goto parse_string;
1626
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001627 case oFingerprintHash:
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001628 intptr = &options->fingerprint_hash;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001629 arg = strdelim(&s);
1630 if (!arg || *arg == '\0')
1631 fatal("%.200s line %d: Missing argument.",
1632 filename, linenum);
1633 if ((value = ssh_digest_alg_by_name(arg)) == -1)
1634 fatal("%.200s line %d: Invalid hash algorithm \"%s\".",
1635 filename, linenum, arg);
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001636 if (*activep && *intptr == -1)
1637 *intptr = value;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001638 break;
1639
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001640 case oUpdateHostkeys:
1641 intptr = &options->update_hostkeys;
djm@openbsd.org523463a2015-02-16 22:13:32 +00001642 multistate_ptr = multistate_yesnoask;
1643 goto parse_multistate;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001644
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001645 case oHostbasedKeyTypes:
1646 charptr = &options->hostbased_key_types;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001647 goto parse_keytypes;
1648
1649 case oPubkeyAcceptedKeyTypes:
1650 charptr = &options->pubkey_key_types;
1651 goto parse_keytypes;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001652
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001653 case oAddKeysToAgent:
1654 intptr = &options->add_keys_to_agent;
1655 multistate_ptr = multistate_yesnoaskconfirm;
1656 goto parse_multistate;
1657
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001658 case oIdentityAgent:
1659 charptr = &options->identity_agent;
1660 goto parse_string;
1661
Ben Lindstrom4daea862002-06-09 20:04:02 +00001662 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001663 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001664 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001665 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001666
Damien Millerf9b3feb2003-05-16 11:38:32 +10001667 case oUnsupported:
1668 error("%s line %d: Unsupported option \"%s\"",
1669 filename, linenum, keyword);
1670 return 0;
1671
Damien Miller95def091999-11-25 00:26:21 +11001672 default:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001673 fatal("%s: Unimplemented opcode %d", __func__, opcode);
Damien Miller95def091999-11-25 00:26:21 +11001674 }
1675
1676 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001677 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001678 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001679 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001680 }
Damien Miller95def091999-11-25 00:26:21 +11001681 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001682}
1683
Damien Miller5428f641999-11-25 11:54:57 +11001684/*
1685 * Reads the config file and modifies the options accordingly. Options
1686 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001687 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001688 */
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001689int
Damien Miller194fd902013-10-15 12:13:05 +11001690read_config_file(const char *filename, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001691 const char *original_host, Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001692{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001693 int active = 1;
1694
1695 return read_config_file_depth(filename, pw, host, original_host,
1696 options, flags, &active, 0);
1697}
1698
1699#define READCONF_MAX_DEPTH 16
1700static int
1701read_config_file_depth(const char *filename, struct passwd *pw,
1702 const char *host, const char *original_host, Options *options,
1703 int flags, int *activep, int depth)
1704{
Damien Miller95def091999-11-25 00:26:21 +11001705 FILE *f;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001706 char line[4096];
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001707 int linenum;
Damien Miller95def091999-11-25 00:26:21 +11001708 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001709
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001710 if (depth < 0 || depth > READCONF_MAX_DEPTH)
1711 fatal("Too many recursive configuration includes");
1712
Damien Miller57a44762004-04-20 20:11:57 +10001713 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001714 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001715
Darren Tuckeraefa3682013-04-05 11:18:35 +11001716 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001717 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001718
Damien Miller33793852004-06-15 10:27:55 +10001719 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001720 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001721 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001722 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001723 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001724 }
1725
Damien Miller95def091999-11-25 00:26:21 +11001726 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001727
Damien Miller5428f641999-11-25 11:54:57 +11001728 /*
1729 * Mark that we are now processing the options. This flag is turned
1730 * on/off by Host specifications.
1731 */
Damien Miller95def091999-11-25 00:26:21 +11001732 linenum = 0;
1733 while (fgets(line, sizeof(line), f)) {
1734 /* Update line number counter. */
1735 linenum++;
djm@openbsd.org61b8ef62017-03-10 04:27:32 +00001736 if (strlen(line) == sizeof(line) - 1)
1737 fatal("%s line %d too long", filename, linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001738 if (process_config_line_depth(options, pw, host, original_host,
1739 line, filename, linenum, activep, flags, depth) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001740 bad_options++;
1741 }
1742 fclose(f);
1743 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001744 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001745 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001746 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747}
1748
Damien Miller13f97b22014-02-24 15:57:55 +11001749/* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
1750int
1751option_clear_or_none(const char *o)
1752{
1753 return o == NULL || strcasecmp(o, "none") == 0;
1754}
1755
Damien Miller5428f641999-11-25 11:54:57 +11001756/*
1757 * Initializes options to special values that indicate that they have not yet
1758 * been set. Read_config_file will only set options with this value. Options
1759 * are processed in the following order: command line, user config file,
1760 * system config file. Last, fill_default_options is called.
1761 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001762
Damien Miller4af51302000-04-16 11:18:38 +10001763void
Damien Miller95def091999-11-25 00:26:21 +11001764initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001765{
Damien Miller95def091999-11-25 00:26:21 +11001766 memset(options, 'X', sizeof(*options));
1767 options->forward_agent = -1;
1768 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001769 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001770 options->forward_x11_timeout = -1;
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001771 options->stdio_forward_host = NULL;
1772 options->stdio_forward_port = 0;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001773 options->clear_forwardings = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001774 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001775 options->xauth_location = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10001776 options->fwd_opts.gateway_ports = -1;
1777 options->fwd_opts.streamlocal_bind_mask = (mode_t)-1;
1778 options->fwd_opts.streamlocal_bind_unlink = -1;
Damien Miller95def091999-11-25 00:26:21 +11001779 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001780 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001781 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001782 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001783 options->gss_authentication = -1;
1784 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001785 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001786 options->kbd_interactive_authentication = -1;
1787 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001788 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001789 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001790 options->batch_mode = -1;
1791 options->check_host_ip = -1;
1792 options->strict_host_key_checking = -1;
1793 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001794 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001795 options->compression_level = -1;
1796 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001797 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001798 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001799 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001800 options->number_of_password_prompts = -1;
Damien Miller78928792000-04-12 20:17:38 +10001801 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001802 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001803 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001804 options->hostkeyalgorithms = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001805 options->num_identity_files = 0;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001806 options->num_certificate_files = 0;
Damien Miller95def091999-11-25 00:26:21 +11001807 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001808 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001809 options->proxy_command = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001810 options->jump_user = NULL;
1811 options->jump_host = NULL;
1812 options->jump_port = -1;
1813 options->jump_extra = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001814 options->user = NULL;
1815 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001816 options->num_system_hostfiles = 0;
1817 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001818 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001819 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001820 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001821 options->num_remote_forwards = 0;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001822 options->log_facility = SYSLOG_FACILITY_NOT_SET;
Damien Millerfcd93202002-02-05 12:26:34 +11001823 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001824 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001825 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001826 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001827 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001828 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001829 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001830 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001831 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001832 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001833 options->server_alive_interval = -1;
1834 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001835 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001836 options->control_path = NULL;
1837 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001838 options->control_persist = -1;
1839 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001840 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001841 options->tun_open = -1;
1842 options->tun_local = -1;
1843 options->tun_remote = -1;
1844 options->local_command = NULL;
1845 options->permit_local_command = -1;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001846 options->add_keys_to_agent = -1;
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001847 options->identity_agent = NULL;
Damien Miller10288242008-06-30 00:04:03 +10001848 options->visual_host_key = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001849 options->ip_qos_interactive = -1;
1850 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001851 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001852 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001853 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001854 options->num_canonical_domains = 0;
1855 options->num_permitted_cnames = 0;
Damien Miller38505592013-10-17 11:48:13 +11001856 options->canonicalize_max_dots = -1;
1857 options->canonicalize_fallback_local = -1;
1858 options->canonicalize_hostname = -1;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001859 options->revoked_host_keys = NULL;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001860 options->fingerprint_hash = -1;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001861 options->update_hostkeys = -1;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001862 options->hostbased_key_types = NULL;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001863 options->pubkey_key_types = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001864}
1865
Damien Miller5428f641999-11-25 11:54:57 +11001866/*
Damien Miller13f97b22014-02-24 15:57:55 +11001867 * A petite version of fill_default_options() that just fills the options
1868 * needed for hostname canonicalization to proceed.
1869 */
1870void
1871fill_default_options_for_canonicalization(Options *options)
1872{
1873 if (options->canonicalize_max_dots == -1)
1874 options->canonicalize_max_dots = 1;
1875 if (options->canonicalize_fallback_local == -1)
1876 options->canonicalize_fallback_local = 1;
1877 if (options->canonicalize_hostname == -1)
1878 options->canonicalize_hostname = SSH_CANONICALISE_NO;
1879}
1880
1881/*
Damien Miller5428f641999-11-25 11:54:57 +11001882 * Called after processing other sources of option data, this fills those
1883 * options for which no value has been specified with their default values.
1884 */
Damien Miller4af51302000-04-16 11:18:38 +10001885void
Damien Miller95def091999-11-25 00:26:21 +11001886fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001887{
Damien Miller95def091999-11-25 00:26:21 +11001888 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001889 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001890 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001891 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001892 if (options->forward_x11_trusted == -1)
1893 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001894 if (options->forward_x11_timeout == -1)
1895 options->forward_x11_timeout = 1200;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001896 /*
1897 * stdio forwarding (-W) changes the default for these but we defer
1898 * setting the values so they can be overridden.
1899 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10001900 if (options->exit_on_forward_failure == -1)
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001901 options->exit_on_forward_failure =
1902 options->stdio_forward_host != NULL ? 1 : 0;
1903 if (options->clear_forwardings == -1)
1904 options->clear_forwardings =
1905 options->stdio_forward_host != NULL ? 1 : 0;
1906 if (options->clear_forwardings == 1)
1907 clear_forwardings(options);
1908
Damien Millerd3a18572000-06-07 19:55:44 +10001909 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001910 options->xauth_location = _PATH_XAUTH;
Damien Miller7acefbb2014-07-18 14:11:24 +10001911 if (options->fwd_opts.gateway_ports == -1)
1912 options->fwd_opts.gateway_ports = 0;
1913 if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)
1914 options->fwd_opts.streamlocal_bind_mask = 0177;
1915 if (options->fwd_opts.streamlocal_bind_unlink == -1)
1916 options->fwd_opts.streamlocal_bind_unlink = 0;
Damien Miller95def091999-11-25 00:26:21 +11001917 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001918 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001919 if (options->rsa_authentication == -1)
1920 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001921 if (options->pubkey_authentication == -1)
1922 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001923 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001924 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001925 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001926 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001927 if (options->gss_deleg_creds == -1)
1928 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001929 if (options->password_authentication == -1)
1930 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001931 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001932 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001933 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001934 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001935 if (options->hostbased_authentication == -1)
1936 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001937 if (options->batch_mode == -1)
1938 options->batch_mode = 0;
1939 if (options->check_host_ip == -1)
1940 options->check_host_ip = 1;
1941 if (options->strict_host_key_checking == -1)
1942 options->strict_host_key_checking = 2; /* 2 is default */
1943 if (options->compression == -1)
1944 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001945 if (options->tcp_keep_alive == -1)
1946 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001947 if (options->compression_level == -1)
1948 options->compression_level = 6;
1949 if (options->port == -1)
1950 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001951 if (options->address_family == -1)
1952 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001953 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001954 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001955 if (options->number_of_password_prompts == -1)
1956 options->number_of_password_prompts = 3;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001957 /* options->hostkeyalgorithms, default set in myproposals.h */
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001958 if (options->add_keys_to_agent == -1)
1959 options->add_keys_to_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001960 if (options->num_identity_files == 0) {
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001961 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_RSA, 0);
1962 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001963#ifdef OPENSSL_HAS_ECC
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001964 add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001965#endif
djm@openbsd.org99f95ba2017-04-30 23:11:45 +00001966 add_identity_file(options, "~/",
1967 _PATH_SSH_CLIENT_ID_ED25519, 0);
Damien Millereba71ba2000-04-29 23:57:08 +10001968 }
Damien Miller95def091999-11-25 00:26:21 +11001969 if (options->escape_char == -1)
1970 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001971 if (options->num_system_hostfiles == 0) {
1972 options->system_hostfiles[options->num_system_hostfiles++] =
1973 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1974 options->system_hostfiles[options->num_system_hostfiles++] =
1975 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1976 }
1977 if (options->num_user_hostfiles == 0) {
1978 options->user_hostfiles[options->num_user_hostfiles++] =
1979 xstrdup(_PATH_SSH_USER_HOSTFILE);
1980 options->user_hostfiles[options->num_user_hostfiles++] =
1981 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1982 }
Damien Millerfcd93202002-02-05 12:26:34 +11001983 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001984 options->log_level = SYSLOG_LEVEL_INFO;
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001985 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
1986 options->log_facility = SYSLOG_FACILITY_USER;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001987 if (options->no_host_authentication_for_localhost == - 1)
1988 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001989 if (options->identities_only == -1)
1990 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001991 if (options->enable_ssh_keysign == -1)
1992 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001993 if (options->rekey_limit == -1)
1994 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001995 if (options->rekey_interval == -1)
1996 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001997 if (options->verify_host_key_dns == -1)
1998 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001999 if (options->server_alive_interval == -1)
2000 options->server_alive_interval = 0;
2001 if (options->server_alive_count_max == -1)
2002 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10002003 if (options->control_master == -1)
2004 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10002005 if (options->control_persist == -1) {
2006 options->control_persist = 0;
2007 options->control_persist_timeout = 0;
2008 }
Damien Millere1776152005-03-01 21:47:37 +11002009 if (options->hash_known_hosts == -1)
2010 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11002011 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11002012 options->tun_open = SSH_TUNMODE_NO;
2013 if (options->tun_local == -1)
2014 options->tun_local = SSH_TUNID_ANY;
2015 if (options->tun_remote == -1)
2016 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11002017 if (options->permit_local_command == -1)
2018 options->permit_local_command = 0;
Damien Miller10288242008-06-30 00:04:03 +10002019 if (options->visual_host_key == -1)
2020 options->visual_host_key = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11002021 if (options->ip_qos_interactive == -1)
2022 options->ip_qos_interactive = IPTOS_LOWDELAY;
2023 if (options->ip_qos_bulk == -1)
2024 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10002025 if (options->request_tty == -1)
2026 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10002027 if (options->proxy_use_fdpass == -1)
2028 options->proxy_use_fdpass = 0;
Damien Miller38505592013-10-17 11:48:13 +11002029 if (options->canonicalize_max_dots == -1)
2030 options->canonicalize_max_dots = 1;
2031 if (options->canonicalize_fallback_local == -1)
2032 options->canonicalize_fallback_local = 1;
2033 if (options->canonicalize_hostname == -1)
2034 options->canonicalize_hostname = SSH_CANONICALISE_NO;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002035 if (options->fingerprint_hash == -1)
2036 options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002037 if (options->update_hostkeys == -1)
djm@openbsd.org15ad7502015-02-02 07:41:40 +00002038 options->update_hostkeys = 0;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002039 if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
2040 kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
2041 kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
2042 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2043 &options->hostbased_key_types) != 0 ||
2044 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2045 &options->pubkey_key_types) != 0)
2046 fatal("%s: kex_assemble_names failed", __func__);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002047
Damien Millere9fc72e2013-10-15 12:14:12 +11002048#define CLEAR_ON_NONE(v) \
2049 do { \
Damien Miller13f97b22014-02-24 15:57:55 +11002050 if (option_clear_or_none(v)) { \
Damien Millere9fc72e2013-10-15 12:14:12 +11002051 free(v); \
2052 v = NULL; \
2053 } \
2054 } while(0)
2055 CLEAR_ON_NONE(options->local_command);
2056 CLEAR_ON_NONE(options->proxy_command);
2057 CLEAR_ON_NONE(options->control_path);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002058 CLEAR_ON_NONE(options->revoked_host_keys);
markus@openbsd.org1a75d142016-05-04 14:29:58 +00002059 /* options->identity_agent distinguishes NULL from 'none' */
Damien Miller95def091999-11-25 00:26:21 +11002060 /* options->user will be set in the main program if appropriate */
2061 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00002062 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00002063 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002064}
Damien Millerf91ee4c2005-03-01 21:24:33 +11002065
Damien Miller7acefbb2014-07-18 14:11:24 +10002066struct fwdarg {
2067 char *arg;
2068 int ispath;
2069};
2070
2071/*
2072 * parse_fwd_field
2073 * parses the next field in a port forwarding specification.
2074 * sets fwd to the parsed field and advances p past the colon
2075 * or sets it to NULL at end of string.
2076 * returns 0 on success, else non-zero.
2077 */
2078static int
2079parse_fwd_field(char **p, struct fwdarg *fwd)
2080{
2081 char *ep, *cp = *p;
2082 int ispath = 0;
2083
2084 if (*cp == '\0') {
2085 *p = NULL;
2086 return -1; /* end of string */
2087 }
2088
2089 /*
2090 * A field escaped with square brackets is used literally.
2091 * XXX - allow ']' to be escaped via backslash?
2092 */
2093 if (*cp == '[') {
2094 /* find matching ']' */
2095 for (ep = cp + 1; *ep != ']' && *ep != '\0'; ep++) {
2096 if (*ep == '/')
2097 ispath = 1;
2098 }
2099 /* no matching ']' or not at end of field. */
2100 if (ep[0] != ']' || (ep[1] != ':' && ep[1] != '\0'))
2101 return -1;
2102 /* NUL terminate the field and advance p past the colon */
2103 *ep++ = '\0';
2104 if (*ep != '\0')
2105 *ep++ = '\0';
2106 fwd->arg = cp + 1;
2107 fwd->ispath = ispath;
2108 *p = ep;
2109 return 0;
2110 }
2111
2112 for (cp = *p; *cp != '\0'; cp++) {
2113 switch (*cp) {
2114 case '\\':
2115 memmove(cp, cp + 1, strlen(cp + 1) + 1);
djm@openbsd.org78c2a4f2015-06-26 05:13:20 +00002116 if (*cp == '\0')
2117 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002118 break;
2119 case '/':
2120 ispath = 1;
2121 break;
2122 case ':':
2123 *cp++ = '\0';
2124 goto done;
2125 }
2126 }
2127done:
2128 fwd->arg = *p;
2129 fwd->ispath = ispath;
2130 *p = cp;
2131 return 0;
2132}
2133
Damien Millerf91ee4c2005-03-01 21:24:33 +11002134/*
2135 * parse_forward
2136 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11002137 * dynamicfwd == 0
Damien Miller7acefbb2014-07-18 14:11:24 +10002138 * [listenhost:]listenport|listenpath:connecthost:connectport|connectpath
2139 * listenpath:connectpath
Damien Millera699d952008-11-03 19:27:34 +11002140 * dynamicfwd == 1
2141 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11002142 * returns number of arguments parsed or zero on error
2143 */
2144int
Damien Miller7acefbb2014-07-18 14:11:24 +10002145parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002146{
Damien Miller7acefbb2014-07-18 14:11:24 +10002147 struct fwdarg fwdargs[4];
2148 char *p, *cp;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002149 int i;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002150
Damien Miller7acefbb2014-07-18 14:11:24 +10002151 memset(fwd, 0, sizeof(*fwd));
2152 memset(fwdargs, 0, sizeof(fwdargs));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002153
2154 cp = p = xstrdup(fwdspec);
2155
2156 /* skip leading spaces */
Damien Millerfdb23062013-11-21 13:57:15 +11002157 while (isspace((u_char)*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002158 cp++;
2159
Damien Miller7acefbb2014-07-18 14:11:24 +10002160 for (i = 0; i < 4; ++i) {
2161 if (parse_fwd_field(&cp, &fwdargs[i]) != 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002162 break;
Damien Miller7acefbb2014-07-18 14:11:24 +10002163 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002164
Damien Millerf4b39532008-11-03 19:28:21 +11002165 /* Check for trailing garbage */
Damien Miller7acefbb2014-07-18 14:11:24 +10002166 if (cp != NULL && *cp != '\0') {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002167 i = 0; /* failure */
Damien Miller7acefbb2014-07-18 14:11:24 +10002168 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002169
2170 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11002171 case 1:
Damien Miller7acefbb2014-07-18 14:11:24 +10002172 if (fwdargs[0].ispath) {
2173 fwd->listen_path = xstrdup(fwdargs[0].arg);
2174 fwd->listen_port = PORT_STREAMLOCAL;
2175 } else {
2176 fwd->listen_host = NULL;
2177 fwd->listen_port = a2port(fwdargs[0].arg);
2178 }
Damien Millera699d952008-11-03 19:27:34 +11002179 fwd->connect_host = xstrdup("socks");
2180 break;
2181
2182 case 2:
Damien Miller7acefbb2014-07-18 14:11:24 +10002183 if (fwdargs[0].ispath && fwdargs[1].ispath) {
2184 fwd->listen_path = xstrdup(fwdargs[0].arg);
2185 fwd->listen_port = PORT_STREAMLOCAL;
2186 fwd->connect_path = xstrdup(fwdargs[1].arg);
2187 fwd->connect_port = PORT_STREAMLOCAL;
2188 } else if (fwdargs[1].ispath) {
2189 fwd->listen_host = NULL;
2190 fwd->listen_port = a2port(fwdargs[0].arg);
2191 fwd->connect_path = xstrdup(fwdargs[1].arg);
2192 fwd->connect_port = PORT_STREAMLOCAL;
2193 } else {
2194 fwd->listen_host = xstrdup(fwdargs[0].arg);
2195 fwd->listen_port = a2port(fwdargs[1].arg);
2196 fwd->connect_host = xstrdup("socks");
2197 }
Damien Millera699d952008-11-03 19:27:34 +11002198 break;
2199
Damien Millerf91ee4c2005-03-01 21:24:33 +11002200 case 3:
Damien Miller7acefbb2014-07-18 14:11:24 +10002201 if (fwdargs[0].ispath) {
2202 fwd->listen_path = xstrdup(fwdargs[0].arg);
2203 fwd->listen_port = PORT_STREAMLOCAL;
2204 fwd->connect_host = xstrdup(fwdargs[1].arg);
2205 fwd->connect_port = a2port(fwdargs[2].arg);
2206 } else if (fwdargs[2].ispath) {
2207 fwd->listen_host = xstrdup(fwdargs[0].arg);
2208 fwd->listen_port = a2port(fwdargs[1].arg);
2209 fwd->connect_path = xstrdup(fwdargs[2].arg);
2210 fwd->connect_port = PORT_STREAMLOCAL;
2211 } else {
2212 fwd->listen_host = NULL;
2213 fwd->listen_port = a2port(fwdargs[0].arg);
2214 fwd->connect_host = xstrdup(fwdargs[1].arg);
2215 fwd->connect_port = a2port(fwdargs[2].arg);
2216 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002217 break;
2218
2219 case 4:
Damien Miller7acefbb2014-07-18 14:11:24 +10002220 fwd->listen_host = xstrdup(fwdargs[0].arg);
2221 fwd->listen_port = a2port(fwdargs[1].arg);
2222 fwd->connect_host = xstrdup(fwdargs[2].arg);
2223 fwd->connect_port = a2port(fwdargs[3].arg);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002224 break;
2225 default:
2226 i = 0; /* failure */
2227 }
2228
Darren Tuckera627d422013-06-02 07:31:17 +10002229 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002230
Damien Millera699d952008-11-03 19:27:34 +11002231 if (dynamicfwd) {
2232 if (!(i == 1 || i == 2))
2233 goto fail_free;
2234 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002235 if (!(i == 3 || i == 4)) {
2236 if (fwd->connect_path == NULL &&
2237 fwd->listen_path == NULL)
2238 goto fail_free;
2239 }
2240 if (fwd->connect_port <= 0 && fwd->connect_path == NULL)
Damien Millera699d952008-11-03 19:27:34 +11002241 goto fail_free;
2242 }
2243
Damien Miller7acefbb2014-07-18 14:11:24 +10002244 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) ||
2245 (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002246 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002247 if (fwd->connect_host != NULL &&
2248 strlen(fwd->connect_host) >= NI_MAXHOST)
2249 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002250 /* XXX - if connecting to a remote socket, max sun len may not match this host */
2251 if (fwd->connect_path != NULL &&
2252 strlen(fwd->connect_path) >= PATH_MAX_SUN)
2253 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11002254 if (fwd->listen_host != NULL &&
2255 strlen(fwd->listen_host) >= NI_MAXHOST)
2256 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002257 if (fwd->listen_path != NULL &&
2258 strlen(fwd->listen_path) >= PATH_MAX_SUN)
2259 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002260
2261 return (i);
2262
2263 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10002264 free(fwd->connect_host);
2265 fwd->connect_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002266 free(fwd->connect_path);
2267 fwd->connect_path = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002268 free(fwd->listen_host);
2269 fwd->listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002270 free(fwd->listen_path);
2271 fwd->listen_path = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002272 return (0);
2273}
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002274
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002275int
2276parse_jump(const char *s, Options *o, int active)
2277{
2278 char *orig, *sdup, *cp;
2279 char *host = NULL, *user = NULL;
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002280 int ret = -1, port = -1, first;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002281
2282 active &= o->proxy_command == NULL && o->jump_host == NULL;
2283
2284 orig = sdup = xstrdup(s);
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002285 first = active;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002286 do {
2287 if ((cp = strrchr(sdup, ',')) == NULL)
2288 cp = sdup; /* last */
2289 else
2290 *cp++ = '\0';
2291
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002292 if (first) {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002293 /* First argument and configuration is active */
2294 if (parse_user_host_port(cp, &user, &host, &port) != 0)
2295 goto out;
2296 } else {
2297 /* Subsequent argument or inactive configuration */
2298 if (parse_user_host_port(cp, NULL, NULL, NULL) != 0)
2299 goto out;
2300 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002301 first = 0; /* only check syntax for subsequent hosts */
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002302 } while (cp != sdup);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002303 /* success */
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002304 if (active) {
2305 o->jump_user = user;
2306 o->jump_host = host;
2307 o->jump_port = port;
2308 o->proxy_command = xstrdup("none");
2309 user = host = NULL;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002310 if ((cp = strrchr(s, ',')) != NULL && cp != s) {
2311 o->jump_extra = xstrdup(s);
2312 o->jump_extra[cp - s] = '\0';
2313 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002314 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002315 ret = 0;
2316 out:
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002317 free(orig);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002318 free(user);
2319 free(host);
2320 return ret;
2321}
2322
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002323/* XXX the following is a near-vebatim copy from servconf.c; refactor */
2324static const char *
2325fmt_multistate_int(int val, const struct multistate *m)
2326{
2327 u_int i;
2328
2329 for (i = 0; m[i].key != NULL; i++) {
2330 if (m[i].value == val)
2331 return m[i].key;
2332 }
2333 return "UNKNOWN";
2334}
2335
2336static const char *
2337fmt_intarg(OpCodes code, int val)
2338{
2339 if (val == -1)
2340 return "unset";
2341 switch (code) {
2342 case oAddressFamily:
2343 return fmt_multistate_int(val, multistate_addressfamily);
2344 case oVerifyHostKeyDNS:
2345 case oStrictHostKeyChecking:
djm@openbsd.org523463a2015-02-16 22:13:32 +00002346 case oUpdateHostkeys:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002347 return fmt_multistate_int(val, multistate_yesnoask);
2348 case oControlMaster:
2349 return fmt_multistate_int(val, multistate_controlmaster);
2350 case oTunnel:
2351 return fmt_multistate_int(val, multistate_tunnel);
2352 case oRequestTTY:
2353 return fmt_multistate_int(val, multistate_requesttty);
2354 case oCanonicalizeHostname:
2355 return fmt_multistate_int(val, multistate_canonicalizehostname);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002356 case oFingerprintHash:
2357 return ssh_digest_alg_name(val);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002358 default:
2359 switch (val) {
2360 case 0:
2361 return "no";
2362 case 1:
2363 return "yes";
2364 default:
2365 return "UNKNOWN";
2366 }
2367 }
2368}
2369
2370static const char *
2371lookup_opcode_name(OpCodes code)
2372{
2373 u_int i;
2374
2375 for (i = 0; keywords[i].name != NULL; i++)
2376 if (keywords[i].opcode == code)
2377 return(keywords[i].name);
2378 return "UNKNOWN";
2379}
2380
2381static void
2382dump_cfg_int(OpCodes code, int val)
2383{
2384 printf("%s %d\n", lookup_opcode_name(code), val);
2385}
2386
2387static void
2388dump_cfg_fmtint(OpCodes code, int val)
2389{
2390 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
2391}
2392
2393static void
2394dump_cfg_string(OpCodes code, const char *val)
2395{
2396 if (val == NULL)
2397 return;
2398 printf("%s %s\n", lookup_opcode_name(code), val);
2399}
2400
2401static void
2402dump_cfg_strarray(OpCodes code, u_int count, char **vals)
2403{
2404 u_int i;
2405
2406 for (i = 0; i < count; i++)
2407 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
2408}
2409
2410static void
2411dump_cfg_strarray_oneline(OpCodes code, u_int count, char **vals)
2412{
2413 u_int i;
2414
2415 printf("%s", lookup_opcode_name(code));
2416 for (i = 0; i < count; i++)
2417 printf(" %s", vals[i]);
2418 printf("\n");
2419}
2420
2421static void
2422dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds)
2423{
2424 const struct Forward *fwd;
2425 u_int i;
2426
2427 /* oDynamicForward */
2428 for (i = 0; i < count; i++) {
2429 fwd = &fwds[i];
djm@openbsd.org4833d012017-01-30 00:34:01 +00002430 if (code == oDynamicForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002431 strcmp(fwd->connect_host, "socks") != 0)
2432 continue;
djm@openbsd.org4833d012017-01-30 00:34:01 +00002433 if (code == oLocalForward && fwd->connect_host != NULL &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002434 strcmp(fwd->connect_host, "socks") == 0)
2435 continue;
2436 printf("%s", lookup_opcode_name(code));
2437 if (fwd->listen_port == PORT_STREAMLOCAL)
2438 printf(" %s", fwd->listen_path);
2439 else if (fwd->listen_host == NULL)
2440 printf(" %d", fwd->listen_port);
2441 else {
2442 printf(" [%s]:%d",
2443 fwd->listen_host, fwd->listen_port);
2444 }
2445 if (code != oDynamicForward) {
2446 if (fwd->connect_port == PORT_STREAMLOCAL)
2447 printf(" %s", fwd->connect_path);
2448 else if (fwd->connect_host == NULL)
2449 printf(" %d", fwd->connect_port);
2450 else {
2451 printf(" [%s]:%d",
2452 fwd->connect_host, fwd->connect_port);
2453 }
2454 }
2455 printf("\n");
2456 }
2457}
2458
2459void
2460dump_client_config(Options *o, const char *host)
2461{
2462 int i;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002463 char buf[8];
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002464
djm@openbsd.org60a92472015-08-21 23:53:08 +00002465 /* This is normally prepared in ssh_kex2 */
2466 if (kex_assemble_names(KEX_DEFAULT_PK_ALG, &o->hostkeyalgorithms) != 0)
2467 fatal("%s: kex_assemble_names failed", __func__);
2468
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002469 /* Most interesting options first: user, host, port */
2470 dump_cfg_string(oUser, o->user);
2471 dump_cfg_string(oHostName, host);
2472 dump_cfg_int(oPort, o->port);
2473
2474 /* Flag options */
2475 dump_cfg_fmtint(oAddressFamily, o->address_family);
2476 dump_cfg_fmtint(oBatchMode, o->batch_mode);
2477 dump_cfg_fmtint(oCanonicalizeFallbackLocal, o->canonicalize_fallback_local);
2478 dump_cfg_fmtint(oCanonicalizeHostname, o->canonicalize_hostname);
2479 dump_cfg_fmtint(oChallengeResponseAuthentication, o->challenge_response_authentication);
2480 dump_cfg_fmtint(oCheckHostIP, o->check_host_ip);
2481 dump_cfg_fmtint(oCompression, o->compression);
2482 dump_cfg_fmtint(oControlMaster, o->control_master);
2483 dump_cfg_fmtint(oEnableSSHKeysign, o->enable_ssh_keysign);
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00002484 dump_cfg_fmtint(oClearAllForwardings, o->clear_forwardings);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002485 dump_cfg_fmtint(oExitOnForwardFailure, o->exit_on_forward_failure);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002486 dump_cfg_fmtint(oFingerprintHash, o->fingerprint_hash);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002487 dump_cfg_fmtint(oForwardAgent, o->forward_agent);
2488 dump_cfg_fmtint(oForwardX11, o->forward_x11);
2489 dump_cfg_fmtint(oForwardX11Trusted, o->forward_x11_trusted);
2490 dump_cfg_fmtint(oGatewayPorts, o->fwd_opts.gateway_ports);
2491#ifdef GSSAPI
2492 dump_cfg_fmtint(oGssAuthentication, o->gss_authentication);
2493 dump_cfg_fmtint(oGssDelegateCreds, o->gss_deleg_creds);
2494#endif /* GSSAPI */
2495 dump_cfg_fmtint(oHashKnownHosts, o->hash_known_hosts);
2496 dump_cfg_fmtint(oHostbasedAuthentication, o->hostbased_authentication);
2497 dump_cfg_fmtint(oIdentitiesOnly, o->identities_only);
2498 dump_cfg_fmtint(oKbdInteractiveAuthentication, o->kbd_interactive_authentication);
2499 dump_cfg_fmtint(oNoHostAuthenticationForLocalhost, o->no_host_authentication_for_localhost);
2500 dump_cfg_fmtint(oPasswordAuthentication, o->password_authentication);
2501 dump_cfg_fmtint(oPermitLocalCommand, o->permit_local_command);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002502 dump_cfg_fmtint(oProxyUseFdpass, o->proxy_use_fdpass);
2503 dump_cfg_fmtint(oPubkeyAuthentication, o->pubkey_authentication);
2504 dump_cfg_fmtint(oRequestTTY, o->request_tty);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002505#ifdef WITH_RSA1
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002506 dump_cfg_fmtint(oRhostsRSAAuthentication, o->rhosts_rsa_authentication);
2507 dump_cfg_fmtint(oRSAAuthentication, o->rsa_authentication);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002508#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002509 dump_cfg_fmtint(oStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
2510 dump_cfg_fmtint(oStrictHostKeyChecking, o->strict_host_key_checking);
2511 dump_cfg_fmtint(oTCPKeepAlive, o->tcp_keep_alive);
2512 dump_cfg_fmtint(oTunnel, o->tun_open);
2513 dump_cfg_fmtint(oUsePrivilegedPort, o->use_privileged_port);
2514 dump_cfg_fmtint(oVerifyHostKeyDNS, o->verify_host_key_dns);
2515 dump_cfg_fmtint(oVisualHostKey, o->visual_host_key);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002516 dump_cfg_fmtint(oUpdateHostkeys, o->update_hostkeys);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002517
2518 /* Integer options */
2519 dump_cfg_int(oCanonicalizeMaxDots, o->canonicalize_max_dots);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002520 dump_cfg_int(oConnectionAttempts, o->connection_attempts);
2521 dump_cfg_int(oForwardX11Timeout, o->forward_x11_timeout);
2522 dump_cfg_int(oNumberOfPasswordPrompts, o->number_of_password_prompts);
2523 dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);
2524 dump_cfg_int(oServerAliveInterval, o->server_alive_interval);
2525
2526 /* String options */
2527 dump_cfg_string(oBindAddress, o->bind_address);
2528 dump_cfg_string(oCiphers, o->ciphers ? o->ciphers : KEX_CLIENT_ENCRYPT);
2529 dump_cfg_string(oControlPath, o->control_path);
djm@openbsd.org60a92472015-08-21 23:53:08 +00002530 dump_cfg_string(oHostKeyAlgorithms, o->hostkeyalgorithms);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002531 dump_cfg_string(oHostKeyAlias, o->host_key_alias);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002532 dump_cfg_string(oHostbasedKeyTypes, o->hostbased_key_types);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00002533 dump_cfg_string(oIdentityAgent, o->identity_agent);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002534 dump_cfg_string(oKbdInteractiveDevices, o->kbd_interactive_devices);
2535 dump_cfg_string(oKexAlgorithms, o->kex_algorithms ? o->kex_algorithms : KEX_CLIENT_KEX);
2536 dump_cfg_string(oLocalCommand, o->local_command);
2537 dump_cfg_string(oLogLevel, log_level_name(o->log_level));
2538 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002539#ifdef ENABLE_PKCS11
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002540 dump_cfg_string(oPKCS11Provider, o->pkcs11_provider);
djm@openbsd.org381a2612017-01-30 00:38:50 +00002541#endif
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002542 dump_cfg_string(oPreferredAuthentications, o->preferred_authentications);
djm@openbsd.org0c46bbe2015-10-07 15:59:12 +00002543 dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002544 dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002545 dump_cfg_string(oXAuthLocation, o->xauth_location);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002546
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002547 /* Forwards */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002548 dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards);
2549 dump_cfg_forwards(oLocalForward, o->num_local_forwards, o->local_forwards);
2550 dump_cfg_forwards(oRemoteForward, o->num_remote_forwards, o->remote_forwards);
2551
2552 /* String array options */
2553 dump_cfg_strarray(oIdentityFile, o->num_identity_files, o->identity_files);
2554 dump_cfg_strarray_oneline(oCanonicalDomains, o->num_canonical_domains, o->canonical_domains);
2555 dump_cfg_strarray_oneline(oGlobalKnownHostsFile, o->num_system_hostfiles, o->system_hostfiles);
2556 dump_cfg_strarray_oneline(oUserKnownHostsFile, o->num_user_hostfiles, o->user_hostfiles);
2557 dump_cfg_strarray(oSendEnv, o->num_send_env, o->send_env);
2558
2559 /* Special cases */
2560
2561 /* oConnectTimeout */
2562 if (o->connection_timeout == -1)
2563 printf("connecttimeout none\n");
2564 else
2565 dump_cfg_int(oConnectTimeout, o->connection_timeout);
2566
2567 /* oTunnelDevice */
2568 printf("tunneldevice");
2569 if (o->tun_local == SSH_TUNID_ANY)
2570 printf(" any");
2571 else
2572 printf(" %d", o->tun_local);
2573 if (o->tun_remote == SSH_TUNID_ANY)
2574 printf(":any");
2575 else
2576 printf(":%d", o->tun_remote);
2577 printf("\n");
2578
2579 /* oCanonicalizePermittedCNAMEs */
2580 if ( o->num_permitted_cnames > 0) {
2581 printf("canonicalizePermittedcnames");
2582 for (i = 0; i < o->num_permitted_cnames; i++) {
2583 printf(" %s:%s", o->permitted_cnames[i].source_list,
2584 o->permitted_cnames[i].target_list);
2585 }
2586 printf("\n");
2587 }
2588
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002589 /* oControlPersist */
2590 if (o->control_persist == 0 || o->control_persist_timeout == 0)
2591 dump_cfg_fmtint(oControlPersist, o->control_persist);
2592 else
2593 dump_cfg_int(oControlPersist, o->control_persist_timeout);
2594
2595 /* oEscapeChar */
2596 if (o->escape_char == SSH_ESCAPECHAR_NONE)
2597 printf("escapechar none\n");
2598 else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002599 vis(buf, o->escape_char, VIS_WHITE, 0);
2600 printf("escapechar %s\n", buf);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002601 }
2602
2603 /* oIPQoS */
2604 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
2605 printf("%s\n", iptos2str(o->ip_qos_bulk));
2606
2607 /* oRekeyLimit */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00002608 printf("rekeylimit %llu %d\n",
2609 (unsigned long long)o->rekey_limit, o->rekey_interval);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002610
2611 /* oStreamLocalBindMask */
2612 printf("streamlocalbindmask 0%o\n",
2613 o->fwd_opts.streamlocal_bind_mask);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002614
2615 /* oProxyCommand / oProxyJump */
2616 if (o->jump_host == NULL)
2617 dump_cfg_string(oProxyCommand, o->proxy_command);
2618 else {
2619 /* Check for numeric addresses */
2620 i = strchr(o->jump_host, ':') != NULL ||
2621 strspn(o->jump_host, "1234567890.") == strlen(o->jump_host);
2622 snprintf(buf, sizeof(buf), "%d", o->jump_port);
2623 printf("proxyjump %s%s%s%s%s%s%s%s%s\n",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002624 /* optional additional jump spec */
2625 o->jump_extra == NULL ? "" : o->jump_extra,
2626 o->jump_extra == NULL ? "" : ",",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002627 /* optional user */
2628 o->jump_user == NULL ? "" : o->jump_user,
2629 o->jump_user == NULL ? "" : "@",
2630 /* opening [ if hostname is numeric */
2631 i ? "[" : "",
2632 /* mandatory hostname */
2633 o->jump_host,
2634 /* closing ] if hostname is numeric */
2635 i ? "]" : "",
2636 /* optional port number */
2637 o->jump_port <= 0 ? "" : ":",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002638 o->jump_port <= 0 ? "" : buf);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002639 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002640}