blob: 7194b0cccc4b62e7c63849925b0dfd0d9c83122d [file] [log] [blame]
djm@openbsd.orgb64077f2017-01-06 09:27:52 +00001/* $OpenBSD: readconf.c,v 1.264 2017/01/06 09:27:52 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
96 Cipher 3des
97
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
111 Cipher none
112 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,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000155 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000156 oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000157 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000158 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Damien Miller7ea845e2010-02-12 09:21:02 +1100159 oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000160 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000161 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000162 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100163 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millere11e1ea2010-08-03 16:04:46 +1000164 oSendEnv, oControlPath, oControlMaster, oControlPersist,
165 oHashKnownHosts,
Damien Millerd27b9472005-12-13 19:29:02 +1100166 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
markus@openbsd.orga3068632016-01-14 16:17:39 +0000167 oVisualHostKey,
Damien Miller1262b662013-08-21 02:44:24 +1000168 oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
Damien Miller38505592013-10-17 11:48:13 +1100169 oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots,
170 oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs,
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000171 oStreamLocalBindMask, oStreamLocalBindUnlink, oRevokedHostKeys,
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000172 oFingerprintHash, oUpdateHostkeys, oHostbasedKeyTypes,
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000173 oPubkeyAcceptedKeyTypes, oProxyJump,
Darren Tucker07636982013-05-16 20:30:03 +1000174 oIgnoredUnknownOption, oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175} OpCodes;
176
177/* Textual representations of the tokens. */
178
Damien Miller95def091999-11-25 00:26:21 +1100179static struct {
180 const char *name;
181 OpCodes opcode;
182} keywords[] = {
183 { "forwardagent", oForwardAgent },
184 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000185 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000186 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000187 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000188 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100189 { "gatewayports", oGatewayPorts },
190 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000191 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100192 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100193 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
194 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100195 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100196 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000197 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000198 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000199 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000200 { "challengeresponseauthentication", oChallengeResponseAuthentication },
201 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
202 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000203 { "kerberosauthentication", oUnsupported },
204 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000205 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000206#if defined(GSSAPI)
207 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000208 { "gssapidelegatecredentials", oGssDelegateCreds },
209#else
210 { "gssapiauthentication", oUnsupported },
211 { "gssapidelegatecredentials", oUnsupported },
212#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000213 { "fallbacktorsh", oDeprecated },
214 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100215 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100216 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100217 { "identitiesonly", oIdentitiesOnly },
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000218 { "certificatefile", oCertificateFile },
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000219 { "addkeystoagent", oAddKeysToAgent },
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +0000220 { "identityagent", oIdentityAgent },
Damien Miller95def091999-11-25 00:26:21 +1100221 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000222 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100223 { "proxycommand", oProxyCommand },
224 { "port", oPort },
225 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000226 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000227 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000228 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100229 { "remoteforward", oRemoteForward },
230 { "localforward", oLocalForward },
231 { "user", oUser },
232 { "host", oHost },
Damien Miller194fd902013-10-15 12:13:05 +1100233 { "match", oMatch },
Damien Miller95def091999-11-25 00:26:21 +1100234 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100235 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000236 { "globalknownhostsfile2", oDeprecated },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100237 { "userknownhostsfile", oUserKnownHostsFile },
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000238 { "userknownhostsfile2", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100239 { "connectionattempts", oConnectionAttempts },
240 { "batchmode", oBatchMode },
241 { "checkhostip", oCheckHostIP },
242 { "stricthostkeychecking", oStrictHostKeyChecking },
243 { "compression", oCompression },
244 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100245 { "tcpkeepalive", oTCPKeepAlive },
246 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100247 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100248 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000249 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000250 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000251 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000252 { "bindaddress", oBindAddress },
Damien Miller7ea845e2010-02-12 09:21:02 +1100253#ifdef ENABLE_PKCS11
254 { "smartcarddevice", oPKCS11Provider },
255 { "pkcs11provider", oPKCS11Provider },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000256#else
257 { "smartcarddevice", oUnsupported },
Damien Miller7ea845e2010-02-12 09:21:02 +1100258 { "pkcs11provider", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000259#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100260 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000261 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000262 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100263 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000264 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000265 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000266 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100267 { "serveraliveinterval", oServerAliveInterval },
268 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000269 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000270 { "controlpath", oControlPath },
271 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000272 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100273 { "hashknownhosts", oHashKnownHosts },
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000274 { "include", oInclude },
Damien Millerd27b9472005-12-13 19:29:02 +1100275 { "tunnel", oTunnel },
276 { "tunneldevice", oTunnelDevice },
277 { "localcommand", oLocalCommand },
278 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000279 { "visualhostkey", oVisualHostKey },
markus@openbsd.orga3068632016-01-14 16:17:39 +0000280 { "useroaming", oDeprecated },
Damien Millerd5f62bf2010-09-24 22:11:14 +1000281 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100282 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000283 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000284 { "proxyusefdpass", oProxyUseFdpass },
Damien Miller0faf7472013-10-17 11:47:23 +1100285 { "canonicaldomains", oCanonicalDomains },
Damien Miller38505592013-10-17 11:48:13 +1100286 { "canonicalizefallbacklocal", oCanonicalizeFallbackLocal },
287 { "canonicalizehostname", oCanonicalizeHostname },
288 { "canonicalizemaxdots", oCanonicalizeMaxDots },
289 { "canonicalizepermittedcnames", oCanonicalizePermittedCNAMEs },
Damien Miller7acefbb2014-07-18 14:11:24 +1000290 { "streamlocalbindmask", oStreamLocalBindMask },
291 { "streamlocalbindunlink", oStreamLocalBindUnlink },
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000292 { "revokedhostkeys", oRevokedHostKeys },
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000293 { "fingerprinthash", oFingerprintHash },
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000294 { "updatehostkeys", oUpdateHostkeys },
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000295 { "hostbasedkeytypes", oHostbasedKeyTypes },
markus@openbsd.org3a1638d2015-07-10 06:21:53 +0000296 { "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes },
Darren Tucker07636982013-05-16 20:30:03 +1000297 { "ignoreunknown", oIgnoreUnknown },
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000298 { "proxyjump", oProxyJump },
Damien Miller01ed2272008-11-05 16:20:46 +1100299
Ben Lindstrom65366a82001-12-06 16:32:47 +0000300 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100301};
302
Damien Miller5428f641999-11-25 11:54:57 +1100303/*
304 * Adds a local TCP/IP port forward to options. Never returns if there is an
305 * error.
306 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
Damien Miller4af51302000-04-16 11:18:38 +1000308void
Damien Miller7acefbb2014-07-18 14:11:24 +1000309add_local_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
Damien Miller7acefbb2014-07-18 14:11:24 +1000311 struct Forward *fwd;
Damien Miller95def091999-11-25 00:26:21 +1100312 extern uid_t original_real_uid;
Darren Tucker5f41f032016-04-08 21:14:13 +1000313 int i;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000314
jsg@openbsd.org79d078e2016-10-25 04:08:13 +0000315 if (!bind_permitted(newfwd->listen_port, original_real_uid) &&
Damien Miller7acefbb2014-07-18 14:11:24 +1000316 newfwd->listen_path == NULL)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000317 fatal("Privileged ports can only be forwarded by root.");
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000318 /* Don't add duplicates */
319 for (i = 0; i < options->num_local_forwards; i++) {
320 if (forward_equals(newfwd, options->local_forwards + i))
321 return;
322 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000323 options->local_forwards = xreallocarray(options->local_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000324 options->num_local_forwards + 1,
325 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100326 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100327
Damien Miller1a0442f2008-11-05 16:30:06 +1100328 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100329 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000330 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100331 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100332 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000333 fwd->connect_path = newfwd->connect_path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334}
335
Damien Miller5428f641999-11-25 11:54:57 +1100336/*
337 * Adds a remote TCP/IP port forward to options. Never returns if there is
338 * an error.
339 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340
Damien Miller4af51302000-04-16 11:18:38 +1000341void
Damien Miller7acefbb2014-07-18 14:11:24 +1000342add_remote_forward(Options *options, const struct Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343{
Damien Miller7acefbb2014-07-18 14:11:24 +1000344 struct Forward *fwd;
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000345 int i;
Damien Miller232cfb12010-06-26 09:50:30 +1000346
djm@openbsd.org0ccbd5e2016-04-06 06:42:17 +0000347 /* Don't add duplicates */
348 for (i = 0; i < options->num_remote_forwards; i++) {
349 if (forward_equals(newfwd, options->remote_forwards + i))
350 return;
351 }
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000352 options->remote_forwards = xreallocarray(options->remote_forwards,
Damien Miller232cfb12010-06-26 09:50:30 +1000353 options->num_remote_forwards + 1,
354 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100355 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100356
Damien Miller1a0442f2008-11-05 16:30:06 +1100357 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100358 fwd->listen_port = newfwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000359 fwd->listen_path = newfwd->listen_path;
Damien Miller1a0442f2008-11-05 16:30:06 +1100360 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100361 fwd->connect_port = newfwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +1000362 fwd->connect_path = newfwd->connect_path;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100363 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000364 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365}
366
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000367static void
368clear_forwardings(Options *options)
369{
370 int i;
371
Damien Millerf91ee4c2005-03-01 21:24:33 +1100372 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000373 free(options->local_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000374 free(options->local_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000375 free(options->local_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000376 free(options->local_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100377 }
Damien Miller232cfb12010-06-26 09:50:30 +1000378 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000379 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000380 options->local_forwards = NULL;
381 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000382 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100383 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000384 free(options->remote_forwards[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000385 free(options->remote_forwards[i].listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000386 free(options->remote_forwards[i].connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000387 free(options->remote_forwards[i].connect_path);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100388 }
Damien Miller232cfb12010-06-26 09:50:30 +1000389 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000390 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000391 options->remote_forwards = NULL;
392 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000393 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100394 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000395}
396
Darren Tucker19104782013-04-05 11:13:08 +1100397void
djm@openbsd.org4e44a792015-09-24 06:15:11 +0000398add_certificate_file(Options *options, const char *path, int userprovided)
399{
400 int i;
401
402 if (options->num_certificate_files >= SSH_MAX_CERTIFICATE_FILES)
403 fatal("Too many certificate files specified (max %d)",
404 SSH_MAX_CERTIFICATE_FILES);
405
406 /* Avoid registering duplicates */
407 for (i = 0; i < options->num_certificate_files; i++) {
408 if (options->certificate_file_userprovided[i] == userprovided &&
409 strcmp(options->certificate_files[i], path) == 0) {
410 debug2("%s: ignoring duplicate key %s", __func__, path);
411 return;
412 }
413 }
414
415 options->certificate_file_userprovided[options->num_certificate_files] =
416 userprovided;
417 options->certificate_files[options->num_certificate_files++] =
418 xstrdup(path);
419}
420
421void
Darren Tucker19104782013-04-05 11:13:08 +1100422add_identity_file(Options *options, const char *dir, const char *filename,
423 int userprovided)
424{
425 char *path;
Damien Miller15271902014-05-15 13:47:56 +1000426 int i;
Darren Tucker19104782013-04-05 11:13:08 +1100427
428 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
429 fatal("Too many identity files specified (max %d)",
430 SSH_MAX_IDENTITY_FILES);
431
432 if (dir == NULL) /* no dir, filename is absolute */
433 path = xstrdup(filename);
434 else
435 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
436
Damien Miller15271902014-05-15 13:47:56 +1000437 /* Avoid registering duplicates */
438 for (i = 0; i < options->num_identity_files; i++) {
439 if (options->identity_file_userprovided[i] == userprovided &&
440 strcmp(options->identity_files[i], path) == 0) {
441 debug2("%s: ignoring duplicate key %s", __func__, path);
442 free(path);
443 return;
444 }
445 }
446
Darren Tucker19104782013-04-05 11:13:08 +1100447 options->identity_file_userprovided[options->num_identity_files] =
448 userprovided;
449 options->identity_files[options->num_identity_files++] = path;
450}
451
Damien Miller194fd902013-10-15 12:13:05 +1100452int
453default_ssh_port(void)
454{
455 static int port;
456 struct servent *sp;
457
458 if (port == 0) {
459 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
460 port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
461 }
462 return port;
463}
464
465/*
466 * Execute a command in a shell.
467 * Return its exit status or -1 on abnormal exit.
468 */
469static int
470execute_in_shell(const char *cmd)
471{
dtucker@openbsd.org97e184e2015-10-25 23:14:03 +0000472 char *shell;
Damien Miller194fd902013-10-15 12:13:05 +1100473 pid_t pid;
474 int devnull, status;
475 extern uid_t original_real_uid;
476
477 if ((shell = getenv("SHELL")) == NULL)
478 shell = _PATH_BSHELL;
479
Damien Miller194fd902013-10-15 12:13:05 +1100480 /* Need this to redirect subprocess stdin/out */
481 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
482 fatal("open(/dev/null): %s", strerror(errno));
483
484 debug("Executing command: '%.500s'", cmd);
485
486 /* Fork and execute the command. */
487 if ((pid = fork()) == 0) {
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000488 char *argv[4];
Damien Miller194fd902013-10-15 12:13:05 +1100489
490 /* Child. Permanently give up superuser privileges. */
491 permanently_drop_suid(original_real_uid);
492
493 /* Redirect child stdin and stdout. Leave stderr */
494 if (dup2(devnull, STDIN_FILENO) == -1)
495 fatal("dup2: %s", strerror(errno));
496 if (dup2(devnull, STDOUT_FILENO) == -1)
497 fatal("dup2: %s", strerror(errno));
498 if (devnull > STDERR_FILENO)
499 close(devnull);
500 closefrom(STDERR_FILENO + 1);
501
djm@openbsd.orga4aef3e2015-10-27 08:54:52 +0000502 argv[0] = shell;
503 argv[1] = "-c";
504 argv[2] = xstrdup(cmd);
505 argv[3] = NULL;
506
Damien Miller194fd902013-10-15 12:13:05 +1100507 execv(argv[0], argv);
508 error("Unable to execute '%.100s': %s", cmd, strerror(errno));
509 /* Die with signal to make this error apparent to parent. */
510 signal(SIGTERM, SIG_DFL);
511 kill(getpid(), SIGTERM);
512 _exit(1);
513 }
514 /* Parent. */
515 if (pid < 0)
516 fatal("%s: fork: %.100s", __func__, strerror(errno));
517
518 close(devnull);
Damien Miller194fd902013-10-15 12:13:05 +1100519
520 while (waitpid(pid, &status, 0) == -1) {
521 if (errno != EINTR && errno != EAGAIN)
522 fatal("%s: waitpid: %s", __func__, strerror(errno));
523 }
524 if (!WIFEXITED(status)) {
525 error("command '%.100s' exited abnormally", cmd);
526 return -1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000527 }
Damien Miller194fd902013-10-15 12:13:05 +1100528 debug3("command returned status %d", WEXITSTATUS(status));
529 return WEXITSTATUS(status);
530}
531
532/*
533 * Parse and execute a Match directive.
534 */
535static int
536match_cfg_line(Options *options, char **condition, struct passwd *pw,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000537 const char *host_arg, const char *original_host, int post_canon,
538 const char *filename, int linenum)
Damien Miller194fd902013-10-15 12:13:05 +1100539{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000540 char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;
Damien Miller084bcd22013-10-23 16:30:51 +1100541 const char *ruser;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000542 int r, port, this_result, result = 1, attributes = 0, negate;
Damien Miller194fd902013-10-15 12:13:05 +1100543 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
544
545 /*
546 * Configuration is likely to be incomplete at this point so we
547 * must be prepared to use default values.
548 */
549 port = options->port <= 0 ? default_ssh_port() : options->port;
550 ruser = options->user == NULL ? pw->pw_name : options->user;
djm@openbsd.org5a622842016-02-08 23:40:12 +0000551 if (post_canon) {
552 host = xstrdup(options->hostname);
553 } else if (options->hostname != NULL) {
Damien Millereff5cad2013-10-23 16:31:10 +1100554 /* NB. Please keep in sync with ssh.c:main() */
Damien Miller084bcd22013-10-23 16:30:51 +1100555 host = percent_expand(options->hostname,
556 "h", host_arg, (char *)NULL);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000557 } else {
Damien Miller084bcd22013-10-23 16:30:51 +1100558 host = xstrdup(host_arg);
djm@openbsd.org5a622842016-02-08 23:40:12 +0000559 }
Damien Miller194fd902013-10-15 12:13:05 +1100560
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000561 debug2("checking match for '%s' host %s originally %s",
562 cp, host, original_host);
563 while ((oattrib = attrib = strdelim(&cp)) && *attrib != '\0') {
564 criteria = NULL;
565 this_result = 1;
566 if ((negate = attrib[0] == '!'))
567 attrib++;
568 /* criteria "all" and "canonical" have no argument */
Damien Millercf31f382013-10-24 21:02:56 +1100569 if (strcasecmp(attrib, "all") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000570 if (attributes > 1 ||
Damien Millercf31f382013-10-24 21:02:56 +1100571 ((arg = strdelim(&cp)) != NULL && *arg != '\0')) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000572 error("%.200s line %d: '%s' cannot be combined "
573 "with other Match attributes",
574 filename, linenum, oattrib);
Damien Millercf31f382013-10-24 21:02:56 +1100575 result = -1;
576 goto out;
577 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000578 if (result)
579 result = negate ? 0 : 1;
Damien Millercf31f382013-10-24 21:02:56 +1100580 goto out;
581 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000582 attributes++;
583 if (strcasecmp(attrib, "canonical") == 0) {
584 r = !!post_canon; /* force bitmask member to boolean */
585 if (r == (negate ? 1 : 0))
586 this_result = result = 0;
587 debug3("%.200s line %d: %smatched '%s'",
588 filename, linenum,
589 this_result ? "" : "not ", oattrib);
590 continue;
591 }
592 /* All other criteria require an argument */
Damien Miller194fd902013-10-15 12:13:05 +1100593 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
594 error("Missing Match criteria for %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100595 result = -1;
596 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100597 }
Damien Miller194fd902013-10-15 12:13:05 +1100598 if (strcasecmp(attrib, "host") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000599 criteria = xstrdup(host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000600 r = match_hostname(host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000601 if (r == (negate ? 1 : 0))
602 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100603 } else if (strcasecmp(attrib, "originalhost") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000604 criteria = xstrdup(original_host);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000605 r = match_hostname(original_host, arg) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000606 if (r == (negate ? 1 : 0))
607 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100608 } else if (strcasecmp(attrib, "user") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000609 criteria = xstrdup(ruser);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000610 r = match_pattern_list(ruser, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000611 if (r == (negate ? 1 : 0))
612 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100613 } else if (strcasecmp(attrib, "localuser") == 0) {
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000614 criteria = xstrdup(pw->pw_name);
djm@openbsd.orge661a862015-05-04 06:10:48 +0000615 r = match_pattern_list(pw->pw_name, arg, 0) == 1;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000616 if (r == (negate ? 1 : 0))
617 this_result = result = 0;
Damien Miller8a04be72013-10-23 16:29:40 +1100618 } else if (strcasecmp(attrib, "exec") == 0) {
Damien Miller194fd902013-10-15 12:13:05 +1100619 if (gethostname(thishost, sizeof(thishost)) == -1)
620 fatal("gethostname: %s", strerror(errno));
621 strlcpy(shorthost, thishost, sizeof(shorthost));
622 shorthost[strcspn(thishost, ".")] = '\0';
623 snprintf(portstr, sizeof(portstr), "%d", port);
624
625 cmd = percent_expand(arg,
626 "L", shorthost,
627 "d", pw->pw_dir,
628 "h", host,
629 "l", thishost,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000630 "n", original_host,
Damien Miller194fd902013-10-15 12:13:05 +1100631 "p", portstr,
632 "r", ruser,
633 "u", pw->pw_name,
634 (char *)NULL);
Damien Miller06287802014-02-24 15:56:45 +1100635 if (result != 1) {
636 /* skip execution if prior predicate failed */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000637 debug3("%.200s line %d: skipped exec "
638 "\"%.100s\"", filename, linenum, cmd);
639 free(cmd);
640 continue;
Damien Miller06287802014-02-24 15:56:45 +1100641 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000642 r = execute_in_shell(cmd);
643 if (r == -1) {
644 fatal("%.200s line %d: match exec "
645 "'%.100s' error", filename,
646 linenum, cmd);
647 }
648 criteria = xstrdup(cmd);
Damien Miller194fd902013-10-15 12:13:05 +1100649 free(cmd);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000650 /* Force exit status to boolean */
651 r = r == 0;
652 if (r == (negate ? 1 : 0))
653 this_result = result = 0;
Damien Miller194fd902013-10-15 12:13:05 +1100654 } else {
655 error("Unsupported Match attribute %s", attrib);
Damien Miller084bcd22013-10-23 16:30:51 +1100656 result = -1;
657 goto out;
Damien Miller194fd902013-10-15 12:13:05 +1100658 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000659 debug3("%.200s line %d: %smatched '%s \"%.100s\"' ",
660 filename, linenum, this_result ? "": "not ",
661 oattrib, criteria);
662 free(criteria);
Damien Miller194fd902013-10-15 12:13:05 +1100663 }
Damien Millercf31f382013-10-24 21:02:56 +1100664 if (attributes == 0) {
665 error("One or more attributes required for Match");
666 result = -1;
667 goto out;
668 }
Damien Miller084bcd22013-10-23 16:30:51 +1100669 out:
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000670 if (result != -1)
671 debug2("match %sfound", result ? "" : "not ");
672 *condition = cp;
Damien Miller084bcd22013-10-23 16:30:51 +1100673 free(host);
Damien Miller194fd902013-10-15 12:13:05 +1100674 return result;
675}
676
Damien Miller0faf7472013-10-17 11:47:23 +1100677/* Check and prepare a domain name: removes trailing '.' and lowercases */
678static void
679valid_domain(char *name, const char *filename, int linenum)
680{
681 size_t i, l = strlen(name);
682 u_char c, last = '\0';
683
684 if (l == 0)
685 fatal("%s line %d: empty hostname suffix", filename, linenum);
686 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
687 fatal("%s line %d: hostname suffix \"%.100s\" "
688 "starts with invalid character", filename, linenum, name);
689 for (i = 0; i < l; i++) {
690 c = tolower((u_char)name[i]);
691 name[i] = (char)c;
692 if (last == '.' && c == '.')
693 fatal("%s line %d: hostname suffix \"%.100s\" contains "
694 "consecutive separators", filename, linenum, name);
695 if (c != '.' && c != '-' && !isalnum(c) &&
696 c != '_') /* technically invalid, but common */
697 fatal("%s line %d: hostname suffix \"%.100s\" contains "
698 "invalid characters", filename, linenum, name);
699 last = c;
700 }
701 if (name[l - 1] == '.')
702 name[l - 1] = '\0';
703}
704
Damien Miller5428f641999-11-25 11:54:57 +1100705/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000706 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100707 */
Damien Miller4af51302000-04-16 11:18:38 +1000708static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000709parse_token(const char *cp, const char *filename, int linenum,
710 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711{
Darren Tucker07636982013-05-16 20:30:03 +1000712 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713
Damien Miller95def091999-11-25 00:26:21 +1100714 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000715 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100716 return keywords[i].opcode;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000717 if (ignored_unknown != NULL &&
718 match_pattern_list(cp, ignored_unknown, 1) == 1)
Darren Tucker07636982013-05-16 20:30:03 +1000719 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000720 error("%s: line %d: Bad configuration option: %s",
721 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100722 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723}
724
Damien Millere9fc72e2013-10-15 12:14:12 +1100725/* Multistate option parsing */
726struct multistate {
727 char *key;
728 int value;
729};
730static const struct multistate multistate_flag[] = {
731 { "true", 1 },
732 { "false", 0 },
733 { "yes", 1 },
734 { "no", 0 },
735 { NULL, -1 }
736};
737static const struct multistate multistate_yesnoask[] = {
738 { "true", 1 },
739 { "false", 0 },
740 { "yes", 1 },
741 { "no", 0 },
742 { "ask", 2 },
743 { NULL, -1 }
744};
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000745static const struct multistate multistate_yesnoaskconfirm[] = {
746 { "true", 1 },
747 { "false", 0 },
748 { "yes", 1 },
749 { "no", 0 },
750 { "ask", 2 },
751 { "confirm", 3 },
752 { NULL, -1 }
753};
Damien Millere9fc72e2013-10-15 12:14:12 +1100754static const struct multistate multistate_addressfamily[] = {
755 { "inet", AF_INET },
756 { "inet6", AF_INET6 },
757 { "any", AF_UNSPEC },
758 { NULL, -1 }
759};
760static const struct multistate multistate_controlmaster[] = {
761 { "true", SSHCTL_MASTER_YES },
762 { "yes", SSHCTL_MASTER_YES },
763 { "false", SSHCTL_MASTER_NO },
764 { "no", SSHCTL_MASTER_NO },
765 { "auto", SSHCTL_MASTER_AUTO },
766 { "ask", SSHCTL_MASTER_ASK },
767 { "autoask", SSHCTL_MASTER_AUTO_ASK },
768 { NULL, -1 }
769};
770static const struct multistate multistate_tunnel[] = {
771 { "ethernet", SSH_TUNMODE_ETHERNET },
772 { "point-to-point", SSH_TUNMODE_POINTOPOINT },
773 { "true", SSH_TUNMODE_DEFAULT },
774 { "yes", SSH_TUNMODE_DEFAULT },
775 { "false", SSH_TUNMODE_NO },
776 { "no", SSH_TUNMODE_NO },
777 { NULL, -1 }
778};
779static const struct multistate multistate_requesttty[] = {
780 { "true", REQUEST_TTY_YES },
781 { "yes", REQUEST_TTY_YES },
782 { "false", REQUEST_TTY_NO },
783 { "no", REQUEST_TTY_NO },
784 { "force", REQUEST_TTY_FORCE },
785 { "auto", REQUEST_TTY_AUTO },
786 { NULL, -1 }
787};
Damien Miller38505592013-10-17 11:48:13 +1100788static const struct multistate multistate_canonicalizehostname[] = {
Damien Miller0faf7472013-10-17 11:47:23 +1100789 { "true", SSH_CANONICALISE_YES },
790 { "false", SSH_CANONICALISE_NO },
791 { "yes", SSH_CANONICALISE_YES },
792 { "no", SSH_CANONICALISE_NO },
793 { "always", SSH_CANONICALISE_ALWAYS },
794 { NULL, -1 }
795};
Damien Millere9fc72e2013-10-15 12:14:12 +1100796
Damien Miller5428f641999-11-25 11:54:57 +1100797/*
798 * Processes a single option line as used in the configuration files. This
799 * only sets those values that have not already been set.
800 */
Damien Miller2ccf6611999-11-15 15:25:10 +1100801int
Damien Miller194fd902013-10-15 12:13:05 +1100802process_config_line(Options *options, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000803 const char *original_host, char *line, const char *filename,
804 int linenum, int *activep, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000806 return process_config_line_depth(options, pw, host, original_host,
807 line, filename, linenum, activep, flags, 0);
808}
809
810#define WHITESPACE " \t\r\n"
811static int
812process_config_line_depth(Options *options, struct passwd *pw, const char *host,
813 const char *original_host, char *line, const char *filename,
814 int linenum, int *activep, int flags, int depth)
815{
Damien Miller295ee632011-05-29 21:42:31 +1000816 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
817 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000818 u_int i, *uintptr, max_entries = 0;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000819 int r, oactive, negated, opcode, *intptr, value, value2, cmdline = 0;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100820 LogLevel *log_level_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000821 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100822 size_t len;
Damien Miller7acefbb2014-07-18 14:11:24 +1000823 struct Forward fwd;
Damien Millere9fc72e2013-10-15 12:14:12 +1100824 const struct multistate *multistate_ptr;
Damien Miller0faf7472013-10-17 11:47:23 +1100825 struct allowed_cname *cname;
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +0000826 glob_t gl;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000827
Damien Miller194fd902013-10-15 12:13:05 +1100828 if (activep == NULL) { /* We are processing a command line directive */
829 cmdline = 1;
830 activep = &cmdline;
831 }
832
Damien Millerc652cac2003-05-14 13:40:54 +1000833 /* Strip trailing whitespace */
djm@openbsd.org26e0bcf2015-03-30 00:00:29 +0000834 if ((len = strlen(line)) == 0)
835 return 0;
836 for (len--; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000837 if (strchr(WHITESPACE, line[len]) == NULL)
838 break;
839 line[len] = '\0';
840 }
841
Damien Millerbe484b52000-07-15 14:14:16 +1000842 s = line;
843 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100844 if ((keyword = strdelim(&s)) == NULL)
845 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000846 /* Ignore leading whitespace. */
847 if (*keyword == '\0')
848 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000849 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100850 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000851 /* Match lowercase keyword */
Damien Millere9fc72e2013-10-15 12:14:12 +1100852 lowercase(keyword);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000853
Darren Tucker07636982013-05-16 20:30:03 +1000854 opcode = parse_token(keyword, filename, linenum,
855 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856
Damien Miller95def091999-11-25 00:26:21 +1100857 switch (opcode) {
858 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100859 /* don't panic, but count bad options */
860 return -1;
Darren Tucker07636982013-05-16 20:30:03 +1000861 case oIgnoredUnknownOption:
862 debug("%s line %d: Ignored unknown option \"%s\"",
863 filename, linenum, keyword);
864 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000865 case oConnectTimeout:
866 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100867parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000868 arg = strdelim(&s);
869 if (!arg || *arg == '\0')
870 fatal("%s line %d: missing time value.",
871 filename, linenum);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000872 if (strcmp(arg, "none") == 0)
873 value = -1;
874 else if ((value = convtime(arg)) == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000875 fatal("%s line %d: invalid time value.",
876 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100877 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000878 *intptr = value;
879 break;
880
Damien Miller95def091999-11-25 00:26:21 +1100881 case oForwardAgent:
882 intptr = &options->forward_agent;
Damien Millere9fc72e2013-10-15 12:14:12 +1100883 parse_flag:
884 multistate_ptr = multistate_flag;
885 parse_multistate:
Damien Millerbe484b52000-07-15 14:14:16 +1000886 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000887 if (!arg || *arg == '\0')
Damien Millere9fc72e2013-10-15 12:14:12 +1100888 fatal("%s line %d: missing argument.",
889 filename, linenum);
890 value = -1;
891 for (i = 0; multistate_ptr[i].key != NULL; i++) {
892 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
893 value = multistate_ptr[i].value;
894 break;
895 }
896 }
897 if (value == -1)
898 fatal("%s line %d: unsupported option \"%s\".",
899 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100900 if (*activep && *intptr == -1)
901 *intptr = value;
902 break;
903
904 case oForwardX11:
905 intptr = &options->forward_x11;
906 goto parse_flag;
907
Darren Tucker0a118da2003-10-15 15:54:32 +1000908 case oForwardX11Trusted:
909 intptr = &options->forward_x11_trusted;
910 goto parse_flag;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000911
Damien Miller1ab6a512010-06-26 10:02:24 +1000912 case oForwardX11Timeout:
913 intptr = &options->forward_x11_timeout;
914 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000915
Damien Miller95def091999-11-25 00:26:21 +1100916 case oGatewayPorts:
Damien Miller7acefbb2014-07-18 14:11:24 +1000917 intptr = &options->fwd_opts.gateway_ports;
Damien Miller95def091999-11-25 00:26:21 +1100918 goto parse_flag;
919
Darren Tuckere7d4b192006-07-12 22:17:10 +1000920 case oExitOnForwardFailure:
921 intptr = &options->exit_on_forward_failure;
922 goto parse_flag;
923
Damien Miller95def091999-11-25 00:26:21 +1100924 case oUsePrivilegedPort:
925 intptr = &options->use_privileged_port;
926 goto parse_flag;
927
Damien Miller95def091999-11-25 00:26:21 +1100928 case oPasswordAuthentication:
929 intptr = &options->password_authentication;
930 goto parse_flag;
931
Damien Miller874d77b2000-10-14 16:23:11 +1100932 case oKbdInteractiveAuthentication:
933 intptr = &options->kbd_interactive_authentication;
934 goto parse_flag;
935
936 case oKbdInteractiveDevices:
937 charptr = &options->kbd_interactive_devices;
938 goto parse_string;
939
Damien Miller0bc1bd82000-11-13 22:57:25 +1100940 case oPubkeyAuthentication:
941 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000942 goto parse_flag;
943
Damien Miller95def091999-11-25 00:26:21 +1100944 case oRSAAuthentication:
945 intptr = &options->rsa_authentication;
946 goto parse_flag;
947
948 case oRhostsRSAAuthentication:
949 intptr = &options->rhosts_rsa_authentication;
950 goto parse_flag;
951
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000952 case oHostbasedAuthentication:
953 intptr = &options->hostbased_authentication;
954 goto parse_flag;
955
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000956 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000957 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100958 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000959
Darren Tucker0efd1552003-08-26 11:49:55 +1000960 case oGssAuthentication:
961 intptr = &options->gss_authentication;
962 goto parse_flag;
963
964 case oGssDelegateCreds:
965 intptr = &options->gss_deleg_creds;
966 goto parse_flag;
967
Damien Miller95def091999-11-25 00:26:21 +1100968 case oBatchMode:
969 intptr = &options->batch_mode;
970 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller95def091999-11-25 00:26:21 +1100972 case oCheckHostIP:
973 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000974 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975
Damien Miller37876e92003-05-15 10:19:46 +1000976 case oVerifyHostKeyDNS:
977 intptr = &options->verify_host_key_dns;
Damien Millere9fc72e2013-10-15 12:14:12 +1100978 multistate_ptr = multistate_yesnoask;
979 goto parse_multistate;
Damien Miller37876e92003-05-15 10:19:46 +1000980
Damien Miller95def091999-11-25 00:26:21 +1100981 case oStrictHostKeyChecking:
982 intptr = &options->strict_host_key_checking;
Damien Millere9fc72e2013-10-15 12:14:12 +1100983 multistate_ptr = multistate_yesnoask;
984 goto parse_multistate;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller95def091999-11-25 00:26:21 +1100986 case oCompression:
987 intptr = &options->compression;
988 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000989
Damien Miller12c150e2003-12-17 16:31:10 +1100990 case oTCPKeepAlive:
991 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100992 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000994 case oNoHostAuthenticationForLocalhost:
995 intptr = &options->no_host_authentication_for_localhost;
996 goto parse_flag;
997
Damien Miller95def091999-11-25 00:26:21 +1100998 case oNumberOfPasswordPrompts:
999 intptr = &options->number_of_password_prompts;
1000 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Damien Miller95def091999-11-25 00:26:21 +11001002 case oCompressionLevel:
1003 intptr = &options->compression_level;
1004 goto parse_int;
1005
Damien Millera5539d22003-04-09 20:50:06 +10001006 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +10001007 arg = strdelim(&s);
1008 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001009 fatal("%.200s line %d: Missing argument.", filename,
1010 linenum);
1011 if (strcmp(arg, "default") == 0) {
1012 val64 = 0;
1013 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +10001014 if (scan_scaled(arg, &val64) == -1)
1015 fatal("%.200s line %d: Bad number '%s': %s",
1016 filename, linenum, arg, strerror(errno));
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001017 if (val64 != 0 && val64 < 16)
1018 fatal("%.200s line %d: RekeyLimit too small",
1019 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +10001020 }
Damien Miller3dff1762008-02-10 22:25:52 +11001021 if (*activep && options->rekey_limit == -1)
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00001022 options->rekey_limit = val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001023 if (s != NULL) { /* optional rekey interval present */
1024 if (strcmp(s, "none") == 0) {
1025 (void)strdelim(&s); /* discard */
1026 break;
1027 }
1028 intptr = &options->rekey_interval;
1029 goto parse_time;
1030 }
Damien Millera5539d22003-04-09 20:50:06 +10001031 break;
1032
Damien Miller95def091999-11-25 00:26:21 +11001033 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +10001034 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001035 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001036 fatal("%.200s line %d: Missing argument.", filename, linenum);
1037 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001038 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +10001039 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +11001040 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001041 filename, linenum, SSH_MAX_IDENTITY_FILES);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001042 add_identity_file(options, NULL,
1043 arg, flags & SSHCONF_USERCONF);
Damien Miller95def091999-11-25 00:26:21 +11001044 }
1045 break;
1046
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001047 case oCertificateFile:
1048 arg = strdelim(&s);
1049 if (!arg || *arg == '\0')
1050 fatal("%.200s line %d: Missing argument.",
1051 filename, linenum);
1052 if (*activep) {
1053 intptr = &options->num_certificate_files;
1054 if (*intptr >= SSH_MAX_CERTIFICATE_FILES) {
1055 fatal("%.200s line %d: Too many certificate "
1056 "files specified (max %d).",
1057 filename, linenum,
1058 SSH_MAX_CERTIFICATE_FILES);
1059 }
1060 add_certificate_file(options, arg,
1061 flags & SSHCONF_USERCONF);
1062 }
1063 break;
1064
Damien Millerd3a18572000-06-07 19:55:44 +10001065 case oXAuthLocation:
1066 charptr=&options->xauth_location;
1067 goto parse_string;
1068
Damien Miller95def091999-11-25 00:26:21 +11001069 case oUser:
1070 charptr = &options->user;
1071parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +10001072 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001073 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +10001074 fatal("%.200s line %d: Missing argument.",
1075 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001076 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001077 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +11001078 break;
1079
1080 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001081 cpptr = (char **)&options->system_hostfiles;
1082 uintptr = &options->num_system_hostfiles;
1083 max_entries = SSH_MAX_HOSTS_FILES;
1084parse_char_array:
1085 if (*activep && *uintptr == 0) {
1086 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1087 if ((*uintptr) >= max_entries)
1088 fatal("%s line %d: "
1089 "too many authorized keys files.",
1090 filename, linenum);
1091 cpptr[(*uintptr)++] = xstrdup(arg);
1092 }
1093 }
1094 return 0;
Damien Miller95def091999-11-25 00:26:21 +11001095
1096 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +10001097 cpptr = (char **)&options->user_hostfiles;
1098 uintptr = &options->num_user_hostfiles;
1099 max_entries = SSH_MAX_HOSTS_FILES;
1100 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +10001101
Damien Miller95def091999-11-25 00:26:21 +11001102 case oHostName:
1103 charptr = &options->hostname;
1104 goto parse_string;
1105
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001106 case oHostKeyAlias:
1107 charptr = &options->host_key_alias;
1108 goto parse_string;
1109
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001110 case oPreferredAuthentications:
1111 charptr = &options->preferred_authentications;
1112 goto parse_string;
1113
Ben Lindstrome0f88042001-04-30 13:06:24 +00001114 case oBindAddress:
1115 charptr = &options->bind_address;
1116 goto parse_string;
1117
Damien Miller7ea845e2010-02-12 09:21:02 +11001118 case oPKCS11Provider:
1119 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001120 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +00001121
Damien Miller95def091999-11-25 00:26:21 +11001122 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +11001123 charptr = &options->proxy_command;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001124 /* Ignore ProxyCommand if ProxyJump already specified */
1125 if (options->jump_host != NULL)
1126 charptr = &options->jump_host; /* Skip below */
Damien Millerd27b9472005-12-13 19:29:02 +11001127parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +10001128 if (s == NULL)
1129 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +11001130 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +11001131 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +11001132 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +11001133 return 0;
1134
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001135 case oProxyJump:
1136 if (s == NULL) {
1137 fatal("%.200s line %d: Missing argument.",
1138 filename, linenum);
1139 }
1140 len = strspn(s, WHITESPACE "=");
1141 if (parse_jump(s + len, options, *activep) == -1) {
1142 fatal("%.200s line %d: Invalid ProxyJump \"%s\"",
1143 filename, linenum, s + len);
1144 }
1145 return 0;
1146
Damien Miller95def091999-11-25 00:26:21 +11001147 case oPort:
1148 intptr = &options->port;
1149parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +10001150 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001151 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001152 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001153 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +11001154 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +11001155
1156 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +10001157 value = strtol(arg, &endofnumber, 0);
1158 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +11001159 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001160 if (*activep && *intptr == -1)
1161 *intptr = value;
1162 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163
Damien Miller95def091999-11-25 00:26:21 +11001164 case oConnectionAttempts:
1165 intptr = &options->connection_attempts;
1166 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +11001167
Damien Miller95def091999-11-25 00:26:21 +11001168 case oCipher:
1169 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +10001170 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001171 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001172 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001173 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +11001174 if (value == -1)
1175 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001176 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +11001177 if (*activep && *intptr == -1)
1178 *intptr = value;
1179 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001180
Damien Miller78928792000-04-12 20:17:38 +10001181 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +10001182 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001183 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001184 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00001185 if (!ciphers_valid(*arg == '+' ? arg + 1 : arg))
Damien Miller30c3d422000-05-09 11:02:59 +10001186 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001187 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001188 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +10001189 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +10001190 break;
1191
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001192 case oMacs:
1193 arg = strdelim(&s);
1194 if (!arg || *arg == '\0')
1195 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00001196 if (!mac_valid(*arg == '+' ? arg + 1 : arg))
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001197 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001198 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001199 if (*activep && options->macs == NULL)
1200 options->macs = xstrdup(arg);
1201 break;
1202
Damien Millerd5f62bf2010-09-24 22:11:14 +10001203 case oKexAlgorithms:
1204 arg = strdelim(&s);
1205 if (!arg || *arg == '\0')
1206 fatal("%.200s line %d: Missing argument.",
1207 filename, linenum);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00001208 if (!kex_names_valid(*arg == '+' ? arg + 1 : arg))
Damien Millerd5f62bf2010-09-24 22:11:14 +10001209 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
1210 filename, linenum, arg ? arg : "<NONE>");
1211 if (*activep && options->kex_algorithms == NULL)
1212 options->kex_algorithms = xstrdup(arg);
1213 break;
1214
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001215 case oHostKeyAlgorithms:
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001216 charptr = &options->hostkeyalgorithms;
1217parse_keytypes:
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001218 arg = strdelim(&s);
1219 if (!arg || *arg == '\0')
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001220 fatal("%.200s line %d: Missing argument.",
1221 filename, linenum);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00001222 if (!sshkey_names_valid2(*arg == '+' ? arg + 1 : arg, 1))
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001223 fatal("%s line %d: Bad key types '%s'.",
1224 filename, linenum, arg ? arg : "<NONE>");
1225 if (*activep && *charptr == NULL)
1226 *charptr = xstrdup(arg);
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001227 break;
1228
Damien Miller78928792000-04-12 20:17:38 +10001229 case oProtocol:
1230 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +10001231 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001232 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +10001233 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +10001234 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +10001235 if (value == SSH_PROTO_UNKNOWN)
1236 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001237 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +10001238 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
1239 *intptr = value;
1240 break;
1241
Damien Miller95def091999-11-25 00:26:21 +11001242 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001243 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +10001244 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001245 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001246 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001247 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001248 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001249 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
1250 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +11001251 break;
1252
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001253 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +11001254 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +11001255 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +10001256 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001257 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001258 fatal("%.200s line %d: Missing port argument.",
1259 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001260
Damien Millera699d952008-11-03 19:27:34 +11001261 if (opcode == oLocalForward ||
1262 opcode == oRemoteForward) {
1263 arg2 = strdelim(&s);
1264 if (arg2 == NULL || *arg2 == '\0')
1265 fatal("%.200s line %d: Missing target argument.",
1266 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001267
Damien Millera699d952008-11-03 19:27:34 +11001268 /* construct a string for parse_forward */
1269 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
1270 } else if (opcode == oDynamicForward) {
1271 strlcpy(fwdarg, arg, sizeof(fwdarg));
1272 }
1273
1274 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +11001275 opcode == oDynamicForward ? 1 : 0,
1276 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001277 fatal("%.200s line %d: Bad forwarding specification.",
1278 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001279
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001280 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +11001281 if (opcode == oLocalForward ||
1282 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001283 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001284 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001285 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +00001286 }
Damien Miller95def091999-11-25 00:26:21 +11001287 break;
1288
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001289 case oClearAllForwardings:
1290 intptr = &options->clear_forwardings;
1291 goto parse_flag;
1292
Damien Miller95def091999-11-25 00:26:21 +11001293 case oHost:
Damien Miller194fd902013-10-15 12:13:05 +11001294 if (cmdline)
1295 fatal("Host directive not supported as a command-line "
1296 "option");
Damien Miller95def091999-11-25 00:26:21 +11001297 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +10001298 arg2 = NULL;
1299 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001300 if ((flags & SSHCONF_NEVERMATCH) != 0)
1301 break;
Damien Millerfe924212011-05-15 08:44:45 +10001302 negated = *arg == '!';
1303 if (negated)
1304 arg++;
Damien Miller37023962000-07-11 17:31:38 +10001305 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +10001306 if (negated) {
1307 debug("%.200s line %d: Skipping Host "
1308 "block because of negated match "
1309 "for %.100s", filename, linenum,
1310 arg);
1311 *activep = 0;
1312 break;
1313 }
1314 if (!*activep)
1315 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +11001316 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +11001317 }
Damien Millerfe924212011-05-15 08:44:45 +10001318 }
1319 if (*activep)
1320 debug("%.200s line %d: Applying options for %.100s",
1321 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +10001322 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +11001323 return 0;
1324
Damien Miller194fd902013-10-15 12:13:05 +11001325 case oMatch:
1326 if (cmdline)
1327 fatal("Host directive not supported as a command-line "
1328 "option");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001329 value = match_cfg_line(options, &s, pw, host, original_host,
1330 flags & SSHCONF_POSTCANON, filename, linenum);
Damien Miller194fd902013-10-15 12:13:05 +11001331 if (value < 0)
1332 fatal("%.200s line %d: Bad Match condition", filename,
1333 linenum);
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001334 *activep = (flags & SSHCONF_NEVERMATCH) ? 0 : value;
Damien Miller194fd902013-10-15 12:13:05 +11001335 break;
1336
Damien Miller95def091999-11-25 00:26:21 +11001337 case oEscapeChar:
1338 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +10001339 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +10001340 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +11001341 fatal("%.200s line %d: Missing argument.", filename, linenum);
djm@openbsd.org08823322015-05-22 04:45:52 +00001342 if (strcmp(arg, "none") == 0)
1343 value = SSH_ESCAPECHAR_NONE;
1344 else if (arg[1] == '\0')
1345 value = (u_char) arg[0];
1346 else if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +00001347 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
1348 value = (u_char) arg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +11001349 else {
1350 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001351 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +11001352 /* NOTREACHED */
1353 value = 0; /* Avoid compiler warning. */
1354 }
1355 if (*activep && *intptr == -1)
1356 *intptr = value;
1357 break;
1358
Damien Miller20a8f972003-05-18 20:50:30 +10001359 case oAddressFamily:
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001360 intptr = &options->address_family;
Damien Millere9fc72e2013-10-15 12:14:12 +11001361 multistate_ptr = multistate_addressfamily;
1362 goto parse_multistate;
Damien Miller20a8f972003-05-18 20:50:30 +10001363
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001364 case oEnableSSHKeysign:
1365 intptr = &options->enable_ssh_keysign;
1366 goto parse_flag;
1367
Damien Millerbd394c32004-03-08 23:12:36 +11001368 case oIdentitiesOnly:
1369 intptr = &options->identities_only;
1370 goto parse_flag;
1371
Damien Miller509b0102003-12-17 16:33:10 +11001372 case oServerAliveInterval:
1373 intptr = &options->server_alive_interval;
1374 goto parse_time;
1375
1376 case oServerAliveCountMax:
1377 intptr = &options->server_alive_count_max;
1378 goto parse_int;
1379
Darren Tucker46bc0752004-05-02 22:11:30 +10001380 case oSendEnv:
1381 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1382 if (strchr(arg, '=') != NULL)
1383 fatal("%s line %d: Invalid environment name.",
1384 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +11001385 if (!*activep)
1386 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001387 if (options->num_send_env >= MAX_SEND_ENV)
1388 fatal("%s line %d: too many send env.",
1389 filename, linenum);
1390 options->send_env[options->num_send_env++] =
1391 xstrdup(arg);
1392 }
1393 break;
1394
Damien Miller0e220db2004-06-15 10:34:08 +10001395 case oControlPath:
1396 charptr = &options->control_path;
1397 goto parse_string;
1398
1399 case oControlMaster:
1400 intptr = &options->control_master;
Damien Millere9fc72e2013-10-15 12:14:12 +11001401 multistate_ptr = multistate_controlmaster;
1402 goto parse_multistate;
Damien Miller0e220db2004-06-15 10:34:08 +10001403
Damien Millere11e1ea2010-08-03 16:04:46 +10001404 case oControlPersist:
1405 /* no/false/yes/true, or a time spec */
1406 intptr = &options->control_persist;
1407 arg = strdelim(&s);
1408 if (!arg || *arg == '\0')
1409 fatal("%.200s line %d: Missing ControlPersist"
1410 " argument.", filename, linenum);
1411 value = 0;
1412 value2 = 0; /* timeout */
1413 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
1414 value = 0;
1415 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
1416 value = 1;
1417 else if ((value2 = convtime(arg)) >= 0)
1418 value = 1;
1419 else
1420 fatal("%.200s line %d: Bad ControlPersist argument.",
1421 filename, linenum);
1422 if (*activep && *intptr == -1) {
1423 *intptr = value;
1424 options->control_persist_timeout = value2;
1425 }
1426 break;
1427
Damien Millere1776152005-03-01 21:47:37 +11001428 case oHashKnownHosts:
1429 intptr = &options->hash_known_hosts;
1430 goto parse_flag;
1431
Damien Millerd27b9472005-12-13 19:29:02 +11001432 case oTunnel:
1433 intptr = &options->tun_open;
Damien Millere9fc72e2013-10-15 12:14:12 +11001434 multistate_ptr = multistate_tunnel;
1435 goto parse_multistate;
Damien Millerd27b9472005-12-13 19:29:02 +11001436
1437 case oTunnelDevice:
1438 arg = strdelim(&s);
1439 if (!arg || *arg == '\0')
1440 fatal("%.200s line %d: Missing argument.", filename, linenum);
1441 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001442 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001443 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1444 if (*activep) {
1445 options->tun_local = value;
1446 options->tun_remote = value2;
1447 }
1448 break;
1449
1450 case oLocalCommand:
1451 charptr = &options->local_command;
1452 goto parse_command;
1453
1454 case oPermitLocalCommand:
1455 intptr = &options->permit_local_command;
1456 goto parse_flag;
1457
Damien Miller10288242008-06-30 00:04:03 +10001458 case oVisualHostKey:
1459 intptr = &options->visual_host_key;
1460 goto parse_flag;
1461
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001462 case oInclude:
1463 if (cmdline)
1464 fatal("Include directive not supported as a "
1465 "command-line option");
1466 value = 0;
1467 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1468 /*
1469 * Ensure all paths are anchored. User configuration
1470 * files may begin with '~/' but system configurations
1471 * must not. If the path is relative, then treat it
1472 * as living in ~/.ssh for user configurations or
1473 * /etc/ssh for system ones.
1474 */
1475 if (*arg == '~' && (flags & SSHCONF_USERCONF) == 0)
1476 fatal("%.200s line %d: bad include path %s.",
1477 filename, linenum, arg);
1478 if (*arg != '/' && *arg != '~') {
1479 xasprintf(&arg2, "%s/%s",
1480 (flags & SSHCONF_USERCONF) ?
1481 "~/" _PATH_SSH_USER_DIR : SSHDIR, arg);
1482 } else
1483 arg2 = xstrdup(arg);
1484 memset(&gl, 0, sizeof(gl));
1485 r = glob(arg2, GLOB_TILDE, NULL, &gl);
1486 if (r == GLOB_NOMATCH) {
1487 debug("%.200s line %d: include %s matched no "
1488 "files",filename, linenum, arg2);
1489 continue;
1490 } else if (r != 0 || gl.gl_pathc < 0)
1491 fatal("%.200s line %d: glob failed for %s.",
1492 filename, linenum, arg2);
1493 free(arg2);
1494 oactive = *activep;
1495 for (i = 0; i < (u_int)gl.gl_pathc; i++) {
1496 debug3("%.200s line %d: Including file %s "
1497 "depth %d%s", filename, linenum,
1498 gl.gl_pathv[i], depth,
1499 oactive ? "" : " (parse only)");
1500 r = read_config_file_depth(gl.gl_pathv[i],
1501 pw, host, original_host, options,
1502 flags | SSHCONF_CHECKPERM |
1503 (oactive ? 0 : SSHCONF_NEVERMATCH),
1504 activep, depth + 1);
djm@openbsd.orgb64077f2017-01-06 09:27:52 +00001505 if (r != 1 && errno != ENOENT) {
djm@openbsd.org5e820e92017-01-06 03:53:58 +00001506 fatal("Can't open user config file "
1507 "%.100s: %.100s", gl.gl_pathv[i],
1508 strerror(errno));
1509 }
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001510 /*
1511 * don't let Match in includes clobber the
1512 * containing file's Match state.
1513 */
1514 *activep = oactive;
1515 if (r != 1)
1516 value = -1;
1517 }
1518 globfree(&gl);
1519 }
1520 if (value != 0)
1521 return value;
1522 break;
1523
Damien Miller0dac6fb2010-11-20 15:19:38 +11001524 case oIPQoS:
1525 arg = strdelim(&s);
1526 if ((value = parse_ipqos(arg)) == -1)
1527 fatal("%s line %d: Bad IPQoS value: %s",
1528 filename, linenum, arg);
1529 arg = strdelim(&s);
1530 if (arg == NULL)
1531 value2 = value;
1532 else if ((value2 = parse_ipqos(arg)) == -1)
1533 fatal("%s line %d: Bad IPQoS value: %s",
1534 filename, linenum, arg);
1535 if (*activep) {
1536 options->ip_qos_interactive = value;
1537 options->ip_qos_bulk = value2;
1538 }
1539 break;
1540
Damien Miller21771e22011-05-15 08:45:50 +10001541 case oRequestTTY:
Damien Miller21771e22011-05-15 08:45:50 +10001542 intptr = &options->request_tty;
Damien Millere9fc72e2013-10-15 12:14:12 +11001543 multistate_ptr = multistate_requesttty;
1544 goto parse_multistate;
Damien Miller21771e22011-05-15 08:45:50 +10001545
Darren Tucker07636982013-05-16 20:30:03 +10001546 case oIgnoreUnknown:
1547 charptr = &options->ignored_unknown;
1548 goto parse_string;
1549
Damien Miller1262b662013-08-21 02:44:24 +10001550 case oProxyUseFdpass:
1551 intptr = &options->proxy_use_fdpass;
1552 goto parse_flag;
1553
Damien Miller0faf7472013-10-17 11:47:23 +11001554 case oCanonicalDomains:
1555 value = options->num_canonical_domains != 0;
1556 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1557 valid_domain(arg, filename, linenum);
1558 if (!*activep || value)
1559 continue;
1560 if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
1561 fatal("%s line %d: too many hostname suffixes.",
1562 filename, linenum);
1563 options->canonical_domains[
1564 options->num_canonical_domains++] = xstrdup(arg);
1565 }
1566 break;
1567
Damien Miller38505592013-10-17 11:48:13 +11001568 case oCanonicalizePermittedCNAMEs:
Damien Miller0faf7472013-10-17 11:47:23 +11001569 value = options->num_permitted_cnames != 0;
1570 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
1571 /* Either '*' for everything or 'list:list' */
1572 if (strcmp(arg, "*") == 0)
1573 arg2 = arg;
1574 else {
1575 lowercase(arg);
1576 if ((arg2 = strchr(arg, ':')) == NULL ||
1577 arg2[1] == '\0') {
1578 fatal("%s line %d: "
1579 "Invalid permitted CNAME \"%s\"",
1580 filename, linenum, arg);
1581 }
1582 *arg2 = '\0';
1583 arg2++;
1584 }
1585 if (!*activep || value)
1586 continue;
1587 if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
1588 fatal("%s line %d: too many permitted CNAMEs.",
1589 filename, linenum);
1590 cname = options->permitted_cnames +
1591 options->num_permitted_cnames++;
1592 cname->source_list = xstrdup(arg);
1593 cname->target_list = xstrdup(arg2);
1594 }
1595 break;
1596
Damien Miller38505592013-10-17 11:48:13 +11001597 case oCanonicalizeHostname:
1598 intptr = &options->canonicalize_hostname;
1599 multistate_ptr = multistate_canonicalizehostname;
Damien Miller0faf7472013-10-17 11:47:23 +11001600 goto parse_multistate;
1601
Damien Miller38505592013-10-17 11:48:13 +11001602 case oCanonicalizeMaxDots:
1603 intptr = &options->canonicalize_max_dots;
Damien Miller0faf7472013-10-17 11:47:23 +11001604 goto parse_int;
1605
Damien Miller38505592013-10-17 11:48:13 +11001606 case oCanonicalizeFallbackLocal:
1607 intptr = &options->canonicalize_fallback_local;
Damien Miller0faf7472013-10-17 11:47:23 +11001608 goto parse_flag;
1609
Damien Miller7acefbb2014-07-18 14:11:24 +10001610 case oStreamLocalBindMask:
1611 arg = strdelim(&s);
1612 if (!arg || *arg == '\0')
1613 fatal("%.200s line %d: Missing StreamLocalBindMask argument.", filename, linenum);
1614 /* Parse mode in octal format */
1615 value = strtol(arg, &endofnumber, 8);
1616 if (arg == endofnumber || value < 0 || value > 0777)
1617 fatal("%.200s line %d: Bad mask.", filename, linenum);
1618 options->fwd_opts.streamlocal_bind_mask = (mode_t)value;
1619 break;
1620
1621 case oStreamLocalBindUnlink:
1622 intptr = &options->fwd_opts.streamlocal_bind_unlink;
1623 goto parse_flag;
1624
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001625 case oRevokedHostKeys:
1626 charptr = &options->revoked_host_keys;
1627 goto parse_string;
1628
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001629 case oFingerprintHash:
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001630 intptr = &options->fingerprint_hash;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001631 arg = strdelim(&s);
1632 if (!arg || *arg == '\0')
1633 fatal("%.200s line %d: Missing argument.",
1634 filename, linenum);
1635 if ((value = ssh_digest_alg_by_name(arg)) == -1)
1636 fatal("%.200s line %d: Invalid hash algorithm \"%s\".",
1637 filename, linenum, arg);
djm@openbsd.orge752c6d2015-01-08 13:44:36 +00001638 if (*activep && *intptr == -1)
1639 *intptr = value;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001640 break;
1641
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001642 case oUpdateHostkeys:
1643 intptr = &options->update_hostkeys;
djm@openbsd.org523463a2015-02-16 22:13:32 +00001644 multistate_ptr = multistate_yesnoask;
1645 goto parse_multistate;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001646
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001647 case oHostbasedKeyTypes:
1648 charptr = &options->hostbased_key_types;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001649 goto parse_keytypes;
1650
1651 case oPubkeyAcceptedKeyTypes:
1652 charptr = &options->pubkey_key_types;
1653 goto parse_keytypes;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001654
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001655 case oAddKeysToAgent:
1656 intptr = &options->add_keys_to_agent;
1657 multistate_ptr = multistate_yesnoaskconfirm;
1658 goto parse_multistate;
1659
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001660 case oIdentityAgent:
1661 charptr = &options->identity_agent;
1662 goto parse_string;
1663
Ben Lindstrom4daea862002-06-09 20:04:02 +00001664 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001665 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001666 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001667 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001668
Damien Millerf9b3feb2003-05-16 11:38:32 +10001669 case oUnsupported:
1670 error("%s line %d: Unsupported option \"%s\"",
1671 filename, linenum, keyword);
1672 return 0;
1673
Damien Miller95def091999-11-25 00:26:21 +11001674 default:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001675 fatal("%s: Unimplemented opcode %d", __func__, opcode);
Damien Miller95def091999-11-25 00:26:21 +11001676 }
1677
1678 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001679 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001680 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001681 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001682 }
Damien Miller95def091999-11-25 00:26:21 +11001683 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001684}
1685
Damien Miller5428f641999-11-25 11:54:57 +11001686/*
1687 * Reads the config file and modifies the options accordingly. Options
1688 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001689 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001690 */
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001691int
Damien Miller194fd902013-10-15 12:13:05 +11001692read_config_file(const char *filename, struct passwd *pw, const char *host,
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001693 const char *original_host, Options *options, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001694{
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001695 int active = 1;
1696
1697 return read_config_file_depth(filename, pw, host, original_host,
1698 options, flags, &active, 0);
1699}
1700
1701#define READCONF_MAX_DEPTH 16
1702static int
1703read_config_file_depth(const char *filename, struct passwd *pw,
1704 const char *host, const char *original_host, Options *options,
1705 int flags, int *activep, int depth)
1706{
Damien Miller95def091999-11-25 00:26:21 +11001707 FILE *f;
1708 char line[1024];
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001709 int linenum;
Damien Miller95def091999-11-25 00:26:21 +11001710 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001711
djm@openbsd.orgdc7990b2016-04-15 00:30:19 +00001712 if (depth < 0 || depth > READCONF_MAX_DEPTH)
1713 fatal("Too many recursive configuration includes");
1714
Damien Miller57a44762004-04-20 20:11:57 +10001715 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001716 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001717
Darren Tuckeraefa3682013-04-05 11:18:35 +11001718 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001719 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001720
Damien Miller33793852004-06-15 10:27:55 +10001721 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001722 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001723 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001724 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001725 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001726 }
1727
Damien Miller95def091999-11-25 00:26:21 +11001728 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001729
Damien Miller5428f641999-11-25 11:54:57 +11001730 /*
1731 * Mark that we are now processing the options. This flag is turned
1732 * on/off by Host specifications.
1733 */
Damien Miller95def091999-11-25 00:26:21 +11001734 linenum = 0;
1735 while (fgets(line, sizeof(line), f)) {
1736 /* Update line number counter. */
1737 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;
1801 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001802 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001803 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001804 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001805 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001806 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001807 options->num_identity_files = 0;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001808 options->num_certificate_files = 0;
Damien Miller95def091999-11-25 00:26:21 +11001809 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001810 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001811 options->proxy_command = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001812 options->jump_user = NULL;
1813 options->jump_host = NULL;
1814 options->jump_port = -1;
1815 options->jump_extra = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001816 options->user = NULL;
1817 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001818 options->num_system_hostfiles = 0;
1819 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001820 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001821 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001822 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001823 options->num_remote_forwards = 0;
Damien Millerfcd93202002-02-05 12:26:34 +11001824 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001825 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001826 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001827 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001828 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001829 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001830 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001831 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001832 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001833 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001834 options->server_alive_interval = -1;
1835 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001836 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001837 options->control_path = NULL;
1838 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001839 options->control_persist = -1;
1840 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001841 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001842 options->tun_open = -1;
1843 options->tun_local = -1;
1844 options->tun_remote = -1;
1845 options->local_command = NULL;
1846 options->permit_local_command = -1;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001847 options->add_keys_to_agent = -1;
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001848 options->identity_agent = NULL;
Damien Miller10288242008-06-30 00:04:03 +10001849 options->visual_host_key = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001850 options->ip_qos_interactive = -1;
1851 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001852 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001853 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001854 options->ignored_unknown = NULL;
Damien Miller0faf7472013-10-17 11:47:23 +11001855 options->num_canonical_domains = 0;
1856 options->num_permitted_cnames = 0;
Damien Miller38505592013-10-17 11:48:13 +11001857 options->canonicalize_max_dots = -1;
1858 options->canonicalize_fallback_local = -1;
1859 options->canonicalize_hostname = -1;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001860 options->revoked_host_keys = NULL;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001861 options->fingerprint_hash = -1;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001862 options->update_hostkeys = -1;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001863 options->hostbased_key_types = NULL;
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001864 options->pubkey_key_types = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865}
1866
Damien Miller5428f641999-11-25 11:54:57 +11001867/*
Damien Miller13f97b22014-02-24 15:57:55 +11001868 * A petite version of fill_default_options() that just fills the options
1869 * needed for hostname canonicalization to proceed.
1870 */
1871void
1872fill_default_options_for_canonicalization(Options *options)
1873{
1874 if (options->canonicalize_max_dots == -1)
1875 options->canonicalize_max_dots = 1;
1876 if (options->canonicalize_fallback_local == -1)
1877 options->canonicalize_fallback_local = 1;
1878 if (options->canonicalize_hostname == -1)
1879 options->canonicalize_hostname = SSH_CANONICALISE_NO;
1880}
1881
1882/*
Damien Miller5428f641999-11-25 11:54:57 +11001883 * Called after processing other sources of option data, this fills those
1884 * options for which no value has been specified with their default values.
1885 */
Damien Miller4af51302000-04-16 11:18:38 +10001886void
Damien Miller95def091999-11-25 00:26:21 +11001887fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001888{
Damien Miller95def091999-11-25 00:26:21 +11001889 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001890 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001891 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001892 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001893 if (options->forward_x11_trusted == -1)
1894 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001895 if (options->forward_x11_timeout == -1)
1896 options->forward_x11_timeout = 1200;
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001897 /*
1898 * stdio forwarding (-W) changes the default for these but we defer
1899 * setting the values so they can be overridden.
1900 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10001901 if (options->exit_on_forward_failure == -1)
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00001902 options->exit_on_forward_failure =
1903 options->stdio_forward_host != NULL ? 1 : 0;
1904 if (options->clear_forwardings == -1)
1905 options->clear_forwardings =
1906 options->stdio_forward_host != NULL ? 1 : 0;
1907 if (options->clear_forwardings == 1)
1908 clear_forwardings(options);
1909
Damien Millerd3a18572000-06-07 19:55:44 +10001910 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001911 options->xauth_location = _PATH_XAUTH;
Damien Miller7acefbb2014-07-18 14:11:24 +10001912 if (options->fwd_opts.gateway_ports == -1)
1913 options->fwd_opts.gateway_ports = 0;
1914 if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)
1915 options->fwd_opts.streamlocal_bind_mask = 0177;
1916 if (options->fwd_opts.streamlocal_bind_unlink == -1)
1917 options->fwd_opts.streamlocal_bind_unlink = 0;
Damien Miller95def091999-11-25 00:26:21 +11001918 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001919 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001920 if (options->rsa_authentication == -1)
1921 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001922 if (options->pubkey_authentication == -1)
1923 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001924 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001925 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001926 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001927 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001928 if (options->gss_deleg_creds == -1)
1929 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001930 if (options->password_authentication == -1)
1931 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001932 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001933 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001934 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001935 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001936 if (options->hostbased_authentication == -1)
1937 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001938 if (options->batch_mode == -1)
1939 options->batch_mode = 0;
1940 if (options->check_host_ip == -1)
1941 options->check_host_ip = 1;
1942 if (options->strict_host_key_checking == -1)
1943 options->strict_host_key_checking = 2; /* 2 is default */
1944 if (options->compression == -1)
1945 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001946 if (options->tcp_keep_alive == -1)
1947 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001948 if (options->compression_level == -1)
1949 options->compression_level = 6;
1950 if (options->port == -1)
1951 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001952 if (options->address_family == -1)
1953 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001954 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001955 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001956 if (options->number_of_password_prompts == -1)
1957 options->number_of_password_prompts = 3;
1958 /* Selected in ssh_login(). */
1959 if (options->cipher == -1)
1960 options->cipher = SSH_CIPHER_NOT_SET;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001961 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001962 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001963 options->protocol = SSH_PROTO_2;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001964 if (options->add_keys_to_agent == -1)
1965 options->add_keys_to_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001966 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001967 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001968 add_identity_file(options, "~/",
1969 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001970 }
1971 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001972 add_identity_file(options, "~/",
1973 _PATH_SSH_CLIENT_ID_RSA, 0);
1974 add_identity_file(options, "~/",
1975 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001976#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001977 add_identity_file(options, "~/",
1978 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001979#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +11001980 add_identity_file(options, "~/",
1981 _PATH_SSH_CLIENT_ID_ED25519, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001982 }
Damien Millereba71ba2000-04-29 23:57:08 +10001983 }
Damien Miller95def091999-11-25 00:26:21 +11001984 if (options->escape_char == -1)
1985 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001986 if (options->num_system_hostfiles == 0) {
1987 options->system_hostfiles[options->num_system_hostfiles++] =
1988 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1989 options->system_hostfiles[options->num_system_hostfiles++] =
1990 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1991 }
1992 if (options->num_user_hostfiles == 0) {
1993 options->user_hostfiles[options->num_user_hostfiles++] =
1994 xstrdup(_PATH_SSH_USER_HOSTFILE);
1995 options->user_hostfiles[options->num_user_hostfiles++] =
1996 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1997 }
Damien Millerfcd93202002-02-05 12:26:34 +11001998 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001999 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00002000 if (options->no_host_authentication_for_localhost == - 1)
2001 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11002002 if (options->identities_only == -1)
2003 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00002004 if (options->enable_ssh_keysign == -1)
2005 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10002006 if (options->rekey_limit == -1)
2007 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002008 if (options->rekey_interval == -1)
2009 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10002010 if (options->verify_host_key_dns == -1)
2011 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11002012 if (options->server_alive_interval == -1)
2013 options->server_alive_interval = 0;
2014 if (options->server_alive_count_max == -1)
2015 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10002016 if (options->control_master == -1)
2017 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10002018 if (options->control_persist == -1) {
2019 options->control_persist = 0;
2020 options->control_persist_timeout = 0;
2021 }
Damien Millere1776152005-03-01 21:47:37 +11002022 if (options->hash_known_hosts == -1)
2023 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11002024 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11002025 options->tun_open = SSH_TUNMODE_NO;
2026 if (options->tun_local == -1)
2027 options->tun_local = SSH_TUNID_ANY;
2028 if (options->tun_remote == -1)
2029 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11002030 if (options->permit_local_command == -1)
2031 options->permit_local_command = 0;
Damien Miller10288242008-06-30 00:04:03 +10002032 if (options->visual_host_key == -1)
2033 options->visual_host_key = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11002034 if (options->ip_qos_interactive == -1)
2035 options->ip_qos_interactive = IPTOS_LOWDELAY;
2036 if (options->ip_qos_bulk == -1)
2037 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10002038 if (options->request_tty == -1)
2039 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10002040 if (options->proxy_use_fdpass == -1)
2041 options->proxy_use_fdpass = 0;
Damien Miller38505592013-10-17 11:48:13 +11002042 if (options->canonicalize_max_dots == -1)
2043 options->canonicalize_max_dots = 1;
2044 if (options->canonicalize_fallback_local == -1)
2045 options->canonicalize_fallback_local = 1;
2046 if (options->canonicalize_hostname == -1)
2047 options->canonicalize_hostname = SSH_CANONICALISE_NO;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002048 if (options->fingerprint_hash == -1)
2049 options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002050 if (options->update_hostkeys == -1)
djm@openbsd.org15ad7502015-02-02 07:41:40 +00002051 options->update_hostkeys = 0;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002052 if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
2053 kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
2054 kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
2055 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2056 &options->hostbased_key_types) != 0 ||
2057 kex_assemble_names(KEX_DEFAULT_PK_ALG,
2058 &options->pubkey_key_types) != 0)
2059 fatal("%s: kex_assemble_names failed", __func__);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002060
Damien Millere9fc72e2013-10-15 12:14:12 +11002061#define CLEAR_ON_NONE(v) \
2062 do { \
Damien Miller13f97b22014-02-24 15:57:55 +11002063 if (option_clear_or_none(v)) { \
Damien Millere9fc72e2013-10-15 12:14:12 +11002064 free(v); \
2065 v = NULL; \
2066 } \
2067 } while(0)
2068 CLEAR_ON_NONE(options->local_command);
2069 CLEAR_ON_NONE(options->proxy_command);
2070 CLEAR_ON_NONE(options->control_path);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002071 CLEAR_ON_NONE(options->revoked_host_keys);
markus@openbsd.org1a75d142016-05-04 14:29:58 +00002072 /* options->identity_agent distinguishes NULL from 'none' */
Damien Miller95def091999-11-25 00:26:21 +11002073 /* options->user will be set in the main program if appropriate */
2074 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00002075 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00002076 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002077}
Damien Millerf91ee4c2005-03-01 21:24:33 +11002078
Damien Miller7acefbb2014-07-18 14:11:24 +10002079struct fwdarg {
2080 char *arg;
2081 int ispath;
2082};
2083
2084/*
2085 * parse_fwd_field
2086 * parses the next field in a port forwarding specification.
2087 * sets fwd to the parsed field and advances p past the colon
2088 * or sets it to NULL at end of string.
2089 * returns 0 on success, else non-zero.
2090 */
2091static int
2092parse_fwd_field(char **p, struct fwdarg *fwd)
2093{
2094 char *ep, *cp = *p;
2095 int ispath = 0;
2096
2097 if (*cp == '\0') {
2098 *p = NULL;
2099 return -1; /* end of string */
2100 }
2101
2102 /*
2103 * A field escaped with square brackets is used literally.
2104 * XXX - allow ']' to be escaped via backslash?
2105 */
2106 if (*cp == '[') {
2107 /* find matching ']' */
2108 for (ep = cp + 1; *ep != ']' && *ep != '\0'; ep++) {
2109 if (*ep == '/')
2110 ispath = 1;
2111 }
2112 /* no matching ']' or not at end of field. */
2113 if (ep[0] != ']' || (ep[1] != ':' && ep[1] != '\0'))
2114 return -1;
2115 /* NUL terminate the field and advance p past the colon */
2116 *ep++ = '\0';
2117 if (*ep != '\0')
2118 *ep++ = '\0';
2119 fwd->arg = cp + 1;
2120 fwd->ispath = ispath;
2121 *p = ep;
2122 return 0;
2123 }
2124
2125 for (cp = *p; *cp != '\0'; cp++) {
2126 switch (*cp) {
2127 case '\\':
2128 memmove(cp, cp + 1, strlen(cp + 1) + 1);
djm@openbsd.org78c2a4f2015-06-26 05:13:20 +00002129 if (*cp == '\0')
2130 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002131 break;
2132 case '/':
2133 ispath = 1;
2134 break;
2135 case ':':
2136 *cp++ = '\0';
2137 goto done;
2138 }
2139 }
2140done:
2141 fwd->arg = *p;
2142 fwd->ispath = ispath;
2143 *p = cp;
2144 return 0;
2145}
2146
Damien Millerf91ee4c2005-03-01 21:24:33 +11002147/*
2148 * parse_forward
2149 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11002150 * dynamicfwd == 0
Damien Miller7acefbb2014-07-18 14:11:24 +10002151 * [listenhost:]listenport|listenpath:connecthost:connectport|connectpath
2152 * listenpath:connectpath
Damien Millera699d952008-11-03 19:27:34 +11002153 * dynamicfwd == 1
2154 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11002155 * returns number of arguments parsed or zero on error
2156 */
2157int
Damien Miller7acefbb2014-07-18 14:11:24 +10002158parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002159{
Damien Miller7acefbb2014-07-18 14:11:24 +10002160 struct fwdarg fwdargs[4];
2161 char *p, *cp;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002162 int i;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002163
Damien Miller7acefbb2014-07-18 14:11:24 +10002164 memset(fwd, 0, sizeof(*fwd));
2165 memset(fwdargs, 0, sizeof(fwdargs));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002166
2167 cp = p = xstrdup(fwdspec);
2168
2169 /* skip leading spaces */
Damien Millerfdb23062013-11-21 13:57:15 +11002170 while (isspace((u_char)*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002171 cp++;
2172
Damien Miller7acefbb2014-07-18 14:11:24 +10002173 for (i = 0; i < 4; ++i) {
2174 if (parse_fwd_field(&cp, &fwdargs[i]) != 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +11002175 break;
Damien Miller7acefbb2014-07-18 14:11:24 +10002176 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002177
Damien Millerf4b39532008-11-03 19:28:21 +11002178 /* Check for trailing garbage */
Damien Miller7acefbb2014-07-18 14:11:24 +10002179 if (cp != NULL && *cp != '\0') {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002180 i = 0; /* failure */
Damien Miller7acefbb2014-07-18 14:11:24 +10002181 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002182
2183 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11002184 case 1:
Damien Miller7acefbb2014-07-18 14:11:24 +10002185 if (fwdargs[0].ispath) {
2186 fwd->listen_path = xstrdup(fwdargs[0].arg);
2187 fwd->listen_port = PORT_STREAMLOCAL;
2188 } else {
2189 fwd->listen_host = NULL;
2190 fwd->listen_port = a2port(fwdargs[0].arg);
2191 }
Damien Millera699d952008-11-03 19:27:34 +11002192 fwd->connect_host = xstrdup("socks");
2193 break;
2194
2195 case 2:
Damien Miller7acefbb2014-07-18 14:11:24 +10002196 if (fwdargs[0].ispath && fwdargs[1].ispath) {
2197 fwd->listen_path = xstrdup(fwdargs[0].arg);
2198 fwd->listen_port = PORT_STREAMLOCAL;
2199 fwd->connect_path = xstrdup(fwdargs[1].arg);
2200 fwd->connect_port = PORT_STREAMLOCAL;
2201 } else if (fwdargs[1].ispath) {
2202 fwd->listen_host = NULL;
2203 fwd->listen_port = a2port(fwdargs[0].arg);
2204 fwd->connect_path = xstrdup(fwdargs[1].arg);
2205 fwd->connect_port = PORT_STREAMLOCAL;
2206 } else {
2207 fwd->listen_host = xstrdup(fwdargs[0].arg);
2208 fwd->listen_port = a2port(fwdargs[1].arg);
2209 fwd->connect_host = xstrdup("socks");
2210 }
Damien Millera699d952008-11-03 19:27:34 +11002211 break;
2212
Damien Millerf91ee4c2005-03-01 21:24:33 +11002213 case 3:
Damien Miller7acefbb2014-07-18 14:11:24 +10002214 if (fwdargs[0].ispath) {
2215 fwd->listen_path = xstrdup(fwdargs[0].arg);
2216 fwd->listen_port = PORT_STREAMLOCAL;
2217 fwd->connect_host = xstrdup(fwdargs[1].arg);
2218 fwd->connect_port = a2port(fwdargs[2].arg);
2219 } else if (fwdargs[2].ispath) {
2220 fwd->listen_host = xstrdup(fwdargs[0].arg);
2221 fwd->listen_port = a2port(fwdargs[1].arg);
2222 fwd->connect_path = xstrdup(fwdargs[2].arg);
2223 fwd->connect_port = PORT_STREAMLOCAL;
2224 } else {
2225 fwd->listen_host = NULL;
2226 fwd->listen_port = a2port(fwdargs[0].arg);
2227 fwd->connect_host = xstrdup(fwdargs[1].arg);
2228 fwd->connect_port = a2port(fwdargs[2].arg);
2229 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11002230 break;
2231
2232 case 4:
Damien Miller7acefbb2014-07-18 14:11:24 +10002233 fwd->listen_host = xstrdup(fwdargs[0].arg);
2234 fwd->listen_port = a2port(fwdargs[1].arg);
2235 fwd->connect_host = xstrdup(fwdargs[2].arg);
2236 fwd->connect_port = a2port(fwdargs[3].arg);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002237 break;
2238 default:
2239 i = 0; /* failure */
2240 }
2241
Darren Tuckera627d422013-06-02 07:31:17 +10002242 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002243
Damien Millera699d952008-11-03 19:27:34 +11002244 if (dynamicfwd) {
2245 if (!(i == 1 || i == 2))
2246 goto fail_free;
2247 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002248 if (!(i == 3 || i == 4)) {
2249 if (fwd->connect_path == NULL &&
2250 fwd->listen_path == NULL)
2251 goto fail_free;
2252 }
2253 if (fwd->connect_port <= 0 && fwd->connect_path == NULL)
Damien Millera699d952008-11-03 19:27:34 +11002254 goto fail_free;
2255 }
2256
Damien Miller7acefbb2014-07-18 14:11:24 +10002257 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) ||
2258 (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11002259 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002260 if (fwd->connect_host != NULL &&
2261 strlen(fwd->connect_host) >= NI_MAXHOST)
2262 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002263 /* XXX - if connecting to a remote socket, max sun len may not match this host */
2264 if (fwd->connect_path != NULL &&
2265 strlen(fwd->connect_path) >= PATH_MAX_SUN)
2266 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11002267 if (fwd->listen_host != NULL &&
2268 strlen(fwd->listen_host) >= NI_MAXHOST)
2269 goto fail_free;
Damien Miller7acefbb2014-07-18 14:11:24 +10002270 if (fwd->listen_path != NULL &&
2271 strlen(fwd->listen_path) >= PATH_MAX_SUN)
2272 goto fail_free;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002273
2274 return (i);
2275
2276 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10002277 free(fwd->connect_host);
2278 fwd->connect_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002279 free(fwd->connect_path);
2280 fwd->connect_path = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +10002281 free(fwd->listen_host);
2282 fwd->listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10002283 free(fwd->listen_path);
2284 fwd->listen_path = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002285 return (0);
2286}
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002287
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002288int
2289parse_jump(const char *s, Options *o, int active)
2290{
2291 char *orig, *sdup, *cp;
2292 char *host = NULL, *user = NULL;
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002293 int ret = -1, port = -1, first;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002294
2295 active &= o->proxy_command == NULL && o->jump_host == NULL;
2296
2297 orig = sdup = xstrdup(s);
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002298 first = active;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002299 do {
2300 if ((cp = strrchr(sdup, ',')) == NULL)
2301 cp = sdup; /* last */
2302 else
2303 *cp++ = '\0';
2304
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002305 if (first) {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002306 /* First argument and configuration is active */
2307 if (parse_user_host_port(cp, &user, &host, &port) != 0)
2308 goto out;
2309 } else {
2310 /* Subsequent argument or inactive configuration */
2311 if (parse_user_host_port(cp, NULL, NULL, NULL) != 0)
2312 goto out;
2313 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002314 first = 0; /* only check syntax for subsequent hosts */
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002315 } while (cp != sdup);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002316 /* success */
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002317 if (active) {
2318 o->jump_user = user;
2319 o->jump_host = host;
2320 o->jump_port = port;
2321 o->proxy_command = xstrdup("none");
2322 user = host = NULL;
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002323 if ((cp = strrchr(s, ',')) != NULL && cp != s) {
2324 o->jump_extra = xstrdup(s);
2325 o->jump_extra[cp - s] = '\0';
2326 }
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002327 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002328 ret = 0;
2329 out:
naddy@openbsd.org324583e2016-07-20 10:45:27 +00002330 free(orig);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002331 free(user);
2332 free(host);
2333 return ret;
2334}
2335
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002336/* XXX the following is a near-vebatim copy from servconf.c; refactor */
2337static const char *
2338fmt_multistate_int(int val, const struct multistate *m)
2339{
2340 u_int i;
2341
2342 for (i = 0; m[i].key != NULL; i++) {
2343 if (m[i].value == val)
2344 return m[i].key;
2345 }
2346 return "UNKNOWN";
2347}
2348
2349static const char *
2350fmt_intarg(OpCodes code, int val)
2351{
2352 if (val == -1)
2353 return "unset";
2354 switch (code) {
2355 case oAddressFamily:
2356 return fmt_multistate_int(val, multistate_addressfamily);
2357 case oVerifyHostKeyDNS:
2358 case oStrictHostKeyChecking:
djm@openbsd.org523463a2015-02-16 22:13:32 +00002359 case oUpdateHostkeys:
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002360 return fmt_multistate_int(val, multistate_yesnoask);
2361 case oControlMaster:
2362 return fmt_multistate_int(val, multistate_controlmaster);
2363 case oTunnel:
2364 return fmt_multistate_int(val, multistate_tunnel);
2365 case oRequestTTY:
2366 return fmt_multistate_int(val, multistate_requesttty);
2367 case oCanonicalizeHostname:
2368 return fmt_multistate_int(val, multistate_canonicalizehostname);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002369 case oFingerprintHash:
2370 return ssh_digest_alg_name(val);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002371 case oProtocol:
2372 switch (val) {
2373 case SSH_PROTO_1:
2374 return "1";
2375 case SSH_PROTO_2:
2376 return "2";
2377 case (SSH_PROTO_1|SSH_PROTO_2):
2378 return "2,1";
2379 default:
2380 return "UNKNOWN";
2381 }
2382 default:
2383 switch (val) {
2384 case 0:
2385 return "no";
2386 case 1:
2387 return "yes";
2388 default:
2389 return "UNKNOWN";
2390 }
2391 }
2392}
2393
2394static const char *
2395lookup_opcode_name(OpCodes code)
2396{
2397 u_int i;
2398
2399 for (i = 0; keywords[i].name != NULL; i++)
2400 if (keywords[i].opcode == code)
2401 return(keywords[i].name);
2402 return "UNKNOWN";
2403}
2404
2405static void
2406dump_cfg_int(OpCodes code, int val)
2407{
2408 printf("%s %d\n", lookup_opcode_name(code), val);
2409}
2410
2411static void
2412dump_cfg_fmtint(OpCodes code, int val)
2413{
2414 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
2415}
2416
2417static void
2418dump_cfg_string(OpCodes code, const char *val)
2419{
2420 if (val == NULL)
2421 return;
2422 printf("%s %s\n", lookup_opcode_name(code), val);
2423}
2424
2425static void
2426dump_cfg_strarray(OpCodes code, u_int count, char **vals)
2427{
2428 u_int i;
2429
2430 for (i = 0; i < count; i++)
2431 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
2432}
2433
2434static void
2435dump_cfg_strarray_oneline(OpCodes code, u_int count, char **vals)
2436{
2437 u_int i;
2438
2439 printf("%s", lookup_opcode_name(code));
2440 for (i = 0; i < count; i++)
2441 printf(" %s", vals[i]);
2442 printf("\n");
2443}
2444
2445static void
2446dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds)
2447{
2448 const struct Forward *fwd;
2449 u_int i;
2450
2451 /* oDynamicForward */
2452 for (i = 0; i < count; i++) {
2453 fwd = &fwds[i];
2454 if (code == oDynamicForward &&
2455 strcmp(fwd->connect_host, "socks") != 0)
2456 continue;
2457 if (code == oLocalForward &&
2458 strcmp(fwd->connect_host, "socks") == 0)
2459 continue;
2460 printf("%s", lookup_opcode_name(code));
2461 if (fwd->listen_port == PORT_STREAMLOCAL)
2462 printf(" %s", fwd->listen_path);
2463 else if (fwd->listen_host == NULL)
2464 printf(" %d", fwd->listen_port);
2465 else {
2466 printf(" [%s]:%d",
2467 fwd->listen_host, fwd->listen_port);
2468 }
2469 if (code != oDynamicForward) {
2470 if (fwd->connect_port == PORT_STREAMLOCAL)
2471 printf(" %s", fwd->connect_path);
2472 else if (fwd->connect_host == NULL)
2473 printf(" %d", fwd->connect_port);
2474 else {
2475 printf(" [%s]:%d",
2476 fwd->connect_host, fwd->connect_port);
2477 }
2478 }
2479 printf("\n");
2480 }
2481}
2482
2483void
2484dump_client_config(Options *o, const char *host)
2485{
2486 int i;
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002487 char buf[8];
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002488
djm@openbsd.org60a92472015-08-21 23:53:08 +00002489 /* This is normally prepared in ssh_kex2 */
2490 if (kex_assemble_names(KEX_DEFAULT_PK_ALG, &o->hostkeyalgorithms) != 0)
2491 fatal("%s: kex_assemble_names failed", __func__);
2492
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002493 /* Most interesting options first: user, host, port */
2494 dump_cfg_string(oUser, o->user);
2495 dump_cfg_string(oHostName, host);
2496 dump_cfg_int(oPort, o->port);
2497
2498 /* Flag options */
2499 dump_cfg_fmtint(oAddressFamily, o->address_family);
2500 dump_cfg_fmtint(oBatchMode, o->batch_mode);
2501 dump_cfg_fmtint(oCanonicalizeFallbackLocal, o->canonicalize_fallback_local);
2502 dump_cfg_fmtint(oCanonicalizeHostname, o->canonicalize_hostname);
2503 dump_cfg_fmtint(oChallengeResponseAuthentication, o->challenge_response_authentication);
2504 dump_cfg_fmtint(oCheckHostIP, o->check_host_ip);
2505 dump_cfg_fmtint(oCompression, o->compression);
2506 dump_cfg_fmtint(oControlMaster, o->control_master);
2507 dump_cfg_fmtint(oEnableSSHKeysign, o->enable_ssh_keysign);
dtucker@openbsd.org0cb2f4c2016-06-03 04:09:38 +00002508 dump_cfg_fmtint(oClearAllForwardings, o->clear_forwardings);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002509 dump_cfg_fmtint(oExitOnForwardFailure, o->exit_on_forward_failure);
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002510 dump_cfg_fmtint(oFingerprintHash, o->fingerprint_hash);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002511 dump_cfg_fmtint(oForwardAgent, o->forward_agent);
2512 dump_cfg_fmtint(oForwardX11, o->forward_x11);
2513 dump_cfg_fmtint(oForwardX11Trusted, o->forward_x11_trusted);
2514 dump_cfg_fmtint(oGatewayPorts, o->fwd_opts.gateway_ports);
2515#ifdef GSSAPI
2516 dump_cfg_fmtint(oGssAuthentication, o->gss_authentication);
2517 dump_cfg_fmtint(oGssDelegateCreds, o->gss_deleg_creds);
2518#endif /* GSSAPI */
2519 dump_cfg_fmtint(oHashKnownHosts, o->hash_known_hosts);
2520 dump_cfg_fmtint(oHostbasedAuthentication, o->hostbased_authentication);
2521 dump_cfg_fmtint(oIdentitiesOnly, o->identities_only);
2522 dump_cfg_fmtint(oKbdInteractiveAuthentication, o->kbd_interactive_authentication);
2523 dump_cfg_fmtint(oNoHostAuthenticationForLocalhost, o->no_host_authentication_for_localhost);
2524 dump_cfg_fmtint(oPasswordAuthentication, o->password_authentication);
2525 dump_cfg_fmtint(oPermitLocalCommand, o->permit_local_command);
2526 dump_cfg_fmtint(oProtocol, o->protocol);
2527 dump_cfg_fmtint(oProxyUseFdpass, o->proxy_use_fdpass);
2528 dump_cfg_fmtint(oPubkeyAuthentication, o->pubkey_authentication);
2529 dump_cfg_fmtint(oRequestTTY, o->request_tty);
2530 dump_cfg_fmtint(oRhostsRSAAuthentication, o->rhosts_rsa_authentication);
2531 dump_cfg_fmtint(oRSAAuthentication, o->rsa_authentication);
2532 dump_cfg_fmtint(oStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
2533 dump_cfg_fmtint(oStrictHostKeyChecking, o->strict_host_key_checking);
2534 dump_cfg_fmtint(oTCPKeepAlive, o->tcp_keep_alive);
2535 dump_cfg_fmtint(oTunnel, o->tun_open);
2536 dump_cfg_fmtint(oUsePrivilegedPort, o->use_privileged_port);
2537 dump_cfg_fmtint(oVerifyHostKeyDNS, o->verify_host_key_dns);
2538 dump_cfg_fmtint(oVisualHostKey, o->visual_host_key);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002539 dump_cfg_fmtint(oUpdateHostkeys, o->update_hostkeys);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002540
2541 /* Integer options */
2542 dump_cfg_int(oCanonicalizeMaxDots, o->canonicalize_max_dots);
2543 dump_cfg_int(oCompressionLevel, o->compression_level);
2544 dump_cfg_int(oConnectionAttempts, o->connection_attempts);
2545 dump_cfg_int(oForwardX11Timeout, o->forward_x11_timeout);
2546 dump_cfg_int(oNumberOfPasswordPrompts, o->number_of_password_prompts);
2547 dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);
2548 dump_cfg_int(oServerAliveInterval, o->server_alive_interval);
2549
2550 /* String options */
2551 dump_cfg_string(oBindAddress, o->bind_address);
2552 dump_cfg_string(oCiphers, o->ciphers ? o->ciphers : KEX_CLIENT_ENCRYPT);
2553 dump_cfg_string(oControlPath, o->control_path);
djm@openbsd.org60a92472015-08-21 23:53:08 +00002554 dump_cfg_string(oHostKeyAlgorithms, o->hostkeyalgorithms);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002555 dump_cfg_string(oHostKeyAlias, o->host_key_alias);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002556 dump_cfg_string(oHostbasedKeyTypes, o->hostbased_key_types);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00002557 dump_cfg_string(oIdentityAgent, o->identity_agent);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002558 dump_cfg_string(oKbdInteractiveDevices, o->kbd_interactive_devices);
2559 dump_cfg_string(oKexAlgorithms, o->kex_algorithms ? o->kex_algorithms : KEX_CLIENT_KEX);
2560 dump_cfg_string(oLocalCommand, o->local_command);
2561 dump_cfg_string(oLogLevel, log_level_name(o->log_level));
2562 dump_cfg_string(oMacs, o->macs ? o->macs : KEX_CLIENT_MAC);
2563 dump_cfg_string(oPKCS11Provider, o->pkcs11_provider);
2564 dump_cfg_string(oPreferredAuthentications, o->preferred_authentications);
djm@openbsd.org0c46bbe2015-10-07 15:59:12 +00002565 dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types);
djm@openbsd.org5e39a492014-12-04 02:24:32 +00002566 dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002567 dump_cfg_string(oXAuthLocation, o->xauth_location);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002568
djm@openbsd.org46347ed2015-01-30 11:43:14 +00002569 /* Forwards */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002570 dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards);
2571 dump_cfg_forwards(oLocalForward, o->num_local_forwards, o->local_forwards);
2572 dump_cfg_forwards(oRemoteForward, o->num_remote_forwards, o->remote_forwards);
2573
2574 /* String array options */
2575 dump_cfg_strarray(oIdentityFile, o->num_identity_files, o->identity_files);
2576 dump_cfg_strarray_oneline(oCanonicalDomains, o->num_canonical_domains, o->canonical_domains);
2577 dump_cfg_strarray_oneline(oGlobalKnownHostsFile, o->num_system_hostfiles, o->system_hostfiles);
2578 dump_cfg_strarray_oneline(oUserKnownHostsFile, o->num_user_hostfiles, o->user_hostfiles);
2579 dump_cfg_strarray(oSendEnv, o->num_send_env, o->send_env);
2580
2581 /* Special cases */
2582
2583 /* oConnectTimeout */
2584 if (o->connection_timeout == -1)
2585 printf("connecttimeout none\n");
2586 else
2587 dump_cfg_int(oConnectTimeout, o->connection_timeout);
2588
2589 /* oTunnelDevice */
2590 printf("tunneldevice");
2591 if (o->tun_local == SSH_TUNID_ANY)
2592 printf(" any");
2593 else
2594 printf(" %d", o->tun_local);
2595 if (o->tun_remote == SSH_TUNID_ANY)
2596 printf(":any");
2597 else
2598 printf(":%d", o->tun_remote);
2599 printf("\n");
2600
2601 /* oCanonicalizePermittedCNAMEs */
2602 if ( o->num_permitted_cnames > 0) {
2603 printf("canonicalizePermittedcnames");
2604 for (i = 0; i < o->num_permitted_cnames; i++) {
2605 printf(" %s:%s", o->permitted_cnames[i].source_list,
2606 o->permitted_cnames[i].target_list);
2607 }
2608 printf("\n");
2609 }
2610
2611 /* oCipher */
2612 if (o->cipher != SSH_CIPHER_NOT_SET)
2613 printf("Cipher %s\n", cipher_name(o->cipher));
2614
2615 /* oControlPersist */
2616 if (o->control_persist == 0 || o->control_persist_timeout == 0)
2617 dump_cfg_fmtint(oControlPersist, o->control_persist);
2618 else
2619 dump_cfg_int(oControlPersist, o->control_persist_timeout);
2620
2621 /* oEscapeChar */
2622 if (o->escape_char == SSH_ESCAPECHAR_NONE)
2623 printf("escapechar none\n");
2624 else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002625 vis(buf, o->escape_char, VIS_WHITE, 0);
2626 printf("escapechar %s\n", buf);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002627 }
2628
2629 /* oIPQoS */
2630 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
2631 printf("%s\n", iptos2str(o->ip_qos_bulk));
2632
2633 /* oRekeyLimit */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +00002634 printf("rekeylimit %llu %d\n",
2635 (unsigned long long)o->rekey_limit, o->rekey_interval);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002636
2637 /* oStreamLocalBindMask */
2638 printf("streamlocalbindmask 0%o\n",
2639 o->fwd_opts.streamlocal_bind_mask);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002640
2641 /* oProxyCommand / oProxyJump */
2642 if (o->jump_host == NULL)
2643 dump_cfg_string(oProxyCommand, o->proxy_command);
2644 else {
2645 /* Check for numeric addresses */
2646 i = strchr(o->jump_host, ':') != NULL ||
2647 strspn(o->jump_host, "1234567890.") == strlen(o->jump_host);
2648 snprintf(buf, sizeof(buf), "%d", o->jump_port);
2649 printf("proxyjump %s%s%s%s%s%s%s%s%s\n",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002650 /* optional additional jump spec */
2651 o->jump_extra == NULL ? "" : o->jump_extra,
2652 o->jump_extra == NULL ? "" : ",",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002653 /* optional user */
2654 o->jump_user == NULL ? "" : o->jump_user,
2655 o->jump_user == NULL ? "" : "@",
2656 /* opening [ if hostname is numeric */
2657 i ? "[" : "",
2658 /* mandatory hostname */
2659 o->jump_host,
2660 /* closing ] if hostname is numeric */
2661 i ? "]" : "",
2662 /* optional port number */
2663 o->jump_port <= 0 ? "" : ":",
djm@openbsd.org286f5a72016-07-22 03:35:11 +00002664 o->jump_port <= 0 ? "" : buf);
djm@openbsd.orged877ef2016-07-15 00:24:30 +00002665 }
djm@openbsd.org957fbce2014-10-08 22:20:25 +00002666}