blob: 7450081cd667bb51a8ade593701564e7aa8deb84 [file] [log] [blame]
Damien Miller1262b662013-08-21 02:44:24 +10001/* $OpenBSD: readconf.c,v 1.205 2013/08/20 00:11:37 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>
20
21#include <netinet/in.h>
Damien Miller0dac6fb2010-11-20 15:19:38 +110022#include <netinet/in_systm.h>
23#include <netinet/ip.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
Damien Millerc7b06362006-03-15 11:53:45 +110025#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100026#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100027#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100028#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100029#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100030#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100032#include <unistd.h>
Darren Tuckere194ba42013-05-16 20:47:31 +100033#ifdef HAVE_UTIL_H
Darren Tuckerb7ee8522013-05-16 20:33:10 +100034#include <util.h>
Darren Tuckere194ba42013-05-16 20:47:31 +100035#endif
Damien Millerc7b06362006-03-15 11:53:45 +110036
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "ssh.h"
Damien Miller78928792000-04-12 20:17:38 +100039#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "cipher.h"
41#include "pathnames.h"
42#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "key.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "readconf.h"
45#include "match.h"
46#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100047#include "buffer.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000048#include "kex.h"
49#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
51/* Format of the configuration file:
52
53 # Configuration data is parsed as follows:
54 # 1. command line options
55 # 2. user-specific file
56 # 3. system-wide file
57 # Any configuration value is only changed the first time it is set.
58 # Thus, host-specific definitions should be at the beginning of the
59 # configuration file, and defaults at the end.
60
61 # Host-specific declarations. These may override anything above. A single
62 # host may match multiple declarations; these are processed in the order
63 # that they are given in.
64
65 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000066 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
68 Host fake.com
69 HostName another.host.name.real.org
70 User blaah
71 Port 34289
72 ForwardX11 no
73 ForwardAgent no
74
75 Host books.com
76 RemoteForward 9999 shadows.cs.hut.fi:9999
77 Cipher 3des
78
79 Host fascist.blob.com
80 Port 23123
81 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082 PasswordAuthentication no
83
84 Host puukko.hut.fi
85 User t35124p
86 ProxyCommand ssh-proxy %h %p
87
88 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000089 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
91 Host *.su
92 Cipher none
93 PasswordAuthentication no
94
Damien Millerd27b9472005-12-13 19:29:02 +110095 Host vpn.fake.com
96 Tunnel yes
97 TunnelDevice 3
98
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099 # Defaults for various options
100 Host *
101 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +1100102 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103 PasswordAuthentication yes
104 RSAAuthentication yes
105 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +1100107 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108 IdentityFile ~/.ssh/identity
109 Port 22
110 EscapeChar ~
111
112*/
113
114/* Keyword tokens. */
115
Damien Miller95def091999-11-25 00:26:21 +1100116typedef enum {
117 oBadOption,
Damien Miller1ab6a512010-06-26 10:02:24 +1000118 oForwardAgent, oForwardX11, oForwardX11Trusted, oForwardX11Timeout,
119 oGatewayPorts, oExitOnForwardFailure,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000120 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000121 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +1100122 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
123 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
124 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
125 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +1100126 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000127 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100128 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000129 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000130 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Damien Miller7ea845e2010-02-12 09:21:02 +1100131 oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000132 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000133 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000134 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100135 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Millere11e1ea2010-08-03 16:04:46 +1000136 oSendEnv, oControlPath, oControlMaster, oControlPersist,
137 oHashKnownHosts,
Damien Millerd27b9472005-12-13 19:29:02 +1100138 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100139 oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication,
Damien Miller1262b662013-08-21 02:44:24 +1000140 oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
Darren Tucker07636982013-05-16 20:30:03 +1000141 oIgnoredUnknownOption, oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142} OpCodes;
143
144/* Textual representations of the tokens. */
145
Damien Miller95def091999-11-25 00:26:21 +1100146static struct {
147 const char *name;
148 OpCodes opcode;
149} keywords[] = {
150 { "forwardagent", oForwardAgent },
151 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000152 { "forwardx11trusted", oForwardX11Trusted },
Damien Miller1ab6a512010-06-26 10:02:24 +1000153 { "forwardx11timeout", oForwardX11Timeout },
Darren Tuckere7d4b192006-07-12 22:17:10 +1000154 { "exitonforwardfailure", oExitOnForwardFailure },
Damien Millerd3a18572000-06-07 19:55:44 +1000155 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100156 { "gatewayports", oGatewayPorts },
157 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000158 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100159 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100160 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
161 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100162 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100163 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000164 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000165 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000166 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000167 { "challengeresponseauthentication", oChallengeResponseAuthentication },
168 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
169 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000170 { "kerberosauthentication", oUnsupported },
171 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000172 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000173#if defined(GSSAPI)
174 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000175 { "gssapidelegatecredentials", oGssDelegateCreds },
176#else
177 { "gssapiauthentication", oUnsupported },
178 { "gssapidelegatecredentials", oUnsupported },
179#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000180 { "fallbacktorsh", oDeprecated },
181 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100182 { "identityfile", oIdentityFile },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100183 { "identityfile2", oIdentityFile }, /* obsolete */
Damien Millerbd394c32004-03-08 23:12:36 +1100184 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100185 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000186 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100187 { "proxycommand", oProxyCommand },
188 { "port", oPort },
189 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000190 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000191 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000192 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100193 { "remoteforward", oRemoteForward },
194 { "localforward", oLocalForward },
195 { "user", oUser },
196 { "host", oHost },
197 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100198 { "globalknownhostsfile", oGlobalKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000199 { "globalknownhostsfile2", oDeprecated },
Damien Miller5bc6aae2009-01-28 16:27:31 +1100200 { "userknownhostsfile", oUserKnownHostsFile },
Damien Miller295ee632011-05-29 21:42:31 +1000201 { "userknownhostsfile2", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100202 { "connectionattempts", oConnectionAttempts },
203 { "batchmode", oBatchMode },
204 { "checkhostip", oCheckHostIP },
205 { "stricthostkeychecking", oStrictHostKeyChecking },
206 { "compression", oCompression },
207 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100208 { "tcpkeepalive", oTCPKeepAlive },
209 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100210 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100211 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000212 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000213 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000214 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000215 { "bindaddress", oBindAddress },
Damien Miller7ea845e2010-02-12 09:21:02 +1100216#ifdef ENABLE_PKCS11
217 { "smartcarddevice", oPKCS11Provider },
218 { "pkcs11provider", oPKCS11Provider },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000219#else
220 { "smartcarddevice", oUnsupported },
Damien Miller7ea845e2010-02-12 09:21:02 +1100221 { "pkcs11provider", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000222#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100223 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000224 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000225 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100226 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000227 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000228 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000229 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100230 { "serveraliveinterval", oServerAliveInterval },
231 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000232 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000233 { "controlpath", oControlPath },
234 { "controlmaster", oControlMaster },
Damien Millere11e1ea2010-08-03 16:04:46 +1000235 { "controlpersist", oControlPersist },
Damien Millere1776152005-03-01 21:47:37 +1100236 { "hashknownhosts", oHashKnownHosts },
Damien Millerd27b9472005-12-13 19:29:02 +1100237 { "tunnel", oTunnel },
238 { "tunneldevice", oTunnelDevice },
239 { "localcommand", oLocalCommand },
240 { "permitlocalcommand", oPermitLocalCommand },
Damien Miller10288242008-06-30 00:04:03 +1000241 { "visualhostkey", oVisualHostKey },
Darren Tucker71e4d542009-07-06 07:12:27 +1000242 { "useroaming", oUseRoaming },
Damien Miller01ed2272008-11-05 16:20:46 +1100243#ifdef JPAKE
244 { "zeroknowledgepasswordauthentication",
245 oZeroKnowledgePasswordAuthentication },
246#else
247 { "zeroknowledgepasswordauthentication", oUnsupported },
248#endif
Damien Millerd5f62bf2010-09-24 22:11:14 +1000249 { "kexalgorithms", oKexAlgorithms },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100250 { "ipqos", oIPQoS },
Damien Miller21771e22011-05-15 08:45:50 +1000251 { "requesttty", oRequestTTY },
Damien Miller1262b662013-08-21 02:44:24 +1000252 { "proxyusefdpass", oProxyUseFdpass },
Darren Tucker07636982013-05-16 20:30:03 +1000253 { "ignoreunknown", oIgnoreUnknown },
Damien Miller01ed2272008-11-05 16:20:46 +1100254
Ben Lindstrom65366a82001-12-06 16:32:47 +0000255 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100256};
257
Damien Miller5428f641999-11-25 11:54:57 +1100258/*
259 * Adds a local TCP/IP port forward to options. Never returns if there is an
260 * error.
261 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller4af51302000-04-16 11:18:38 +1000263void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100264add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265{
Damien Miller95def091999-11-25 00:26:21 +1100266 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000267#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100268 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100269 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000270 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100271#endif
Damien Miller232cfb12010-06-26 09:50:30 +1000272 options->local_forwards = xrealloc(options->local_forwards,
273 options->num_local_forwards + 1,
274 sizeof(*options->local_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100275 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100276
Damien Miller1a0442f2008-11-05 16:30:06 +1100277 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100278 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100279 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100280 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281}
282
Damien Miller5428f641999-11-25 11:54:57 +1100283/*
284 * Adds a remote TCP/IP port forward to options. Never returns if there is
285 * an error.
286 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287
Damien Miller4af51302000-04-16 11:18:38 +1000288void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100289add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290{
Damien Miller95def091999-11-25 00:26:21 +1100291 Forward *fwd;
Damien Miller232cfb12010-06-26 09:50:30 +1000292
293 options->remote_forwards = xrealloc(options->remote_forwards,
294 options->num_remote_forwards + 1,
295 sizeof(*options->remote_forwards));
Damien Miller95def091999-11-25 00:26:21 +1100296 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100297
Damien Miller1a0442f2008-11-05 16:30:06 +1100298 fwd->listen_host = newfwd->listen_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100299 fwd->listen_port = newfwd->listen_port;
Damien Miller1a0442f2008-11-05 16:30:06 +1100300 fwd->connect_host = newfwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100301 fwd->connect_port = newfwd->connect_port;
Darren Tucker68afb8c2011-10-02 18:59:03 +1100302 fwd->handle = newfwd->handle;
Damien Miller388f6fc2010-05-21 14:57:35 +1000303 fwd->allocated_port = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304}
305
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000306static void
307clear_forwardings(Options *options)
308{
309 int i;
310
Damien Millerf91ee4c2005-03-01 21:24:33 +1100311 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000312 free(options->local_forwards[i].listen_host);
313 free(options->local_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100314 }
Damien Miller232cfb12010-06-26 09:50:30 +1000315 if (options->num_local_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000316 free(options->local_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000317 options->local_forwards = NULL;
318 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000319 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100320 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000321 free(options->remote_forwards[i].listen_host);
322 free(options->remote_forwards[i].connect_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100323 }
Damien Miller232cfb12010-06-26 09:50:30 +1000324 if (options->num_remote_forwards > 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000325 free(options->remote_forwards);
Damien Miller232cfb12010-06-26 09:50:30 +1000326 options->remote_forwards = NULL;
327 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000328 options->num_remote_forwards = 0;
Damien Miller7b58e802005-12-13 19:33:19 +1100329 options->tun_open = SSH_TUNMODE_NO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000330}
331
Darren Tucker19104782013-04-05 11:13:08 +1100332void
333add_identity_file(Options *options, const char *dir, const char *filename,
334 int userprovided)
335{
336 char *path;
337
338 if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
339 fatal("Too many identity files specified (max %d)",
340 SSH_MAX_IDENTITY_FILES);
341
342 if (dir == NULL) /* no dir, filename is absolute */
343 path = xstrdup(filename);
344 else
345 (void)xasprintf(&path, "%.100s%.100s", dir, filename);
346
347 options->identity_file_userprovided[options->num_identity_files] =
348 userprovided;
349 options->identity_files[options->num_identity_files++] = path;
350}
351
Damien Miller5428f641999-11-25 11:54:57 +1100352/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000353 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100354 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355
Damien Miller4af51302000-04-16 11:18:38 +1000356static OpCodes
Darren Tucker07636982013-05-16 20:30:03 +1000357parse_token(const char *cp, const char *filename, int linenum,
358 const char *ignored_unknown)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359{
Darren Tucker07636982013-05-16 20:30:03 +1000360 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 for (i = 0; keywords[i].name; i++)
Darren Tucker07636982013-05-16 20:30:03 +1000363 if (strcmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100364 return keywords[i].opcode;
Darren Tucker07636982013-05-16 20:30:03 +1000365 if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,
366 strlen(ignored_unknown), 1) == 1)
367 return oIgnoredUnknownOption;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000368 error("%s: line %d: Bad configuration option: %s",
369 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100370 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371}
372
Damien Miller5428f641999-11-25 11:54:57 +1100373/*
374 * Processes a single option line as used in the configuration files. This
375 * only sets those values that have not already been set.
376 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100377#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378
Damien Miller2ccf6611999-11-15 15:25:10 +1100379int
380process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100381 char *line, const char *filename, int linenum,
Darren Tuckeraefa3682013-04-05 11:18:35 +1100382 int *activep, int userconfig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383{
Damien Miller295ee632011-05-29 21:42:31 +1000384 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
385 char **cpptr, fwdarg[256];
Darren Tucker07636982013-05-16 20:30:03 +1000386 u_int i, *uintptr, max_entries = 0;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000387 int negated, opcode, *intptr, value, value2;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100388 LogLevel *log_level_ptr;
Darren Tucker9113d0c2013-05-16 20:48:14 +1000389 long long val64;
Damien Miller61f08ac2003-02-24 11:56:27 +1100390 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100391 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Damien Millerc652cac2003-05-14 13:40:54 +1000393 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100394 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000395 if (strchr(WHITESPACE, line[len]) == NULL)
396 break;
397 line[len] = '\0';
398 }
399
Damien Millerbe484b52000-07-15 14:14:16 +1000400 s = line;
401 /* Get the keyword. (Each line is supposed to begin with a keyword). */
Damien Miller928b2362006-03-26 13:53:32 +1100402 if ((keyword = strdelim(&s)) == NULL)
403 return 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000404 /* Ignore leading whitespace. */
405 if (*keyword == '\0')
406 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000407 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100408 return 0;
Darren Tucker07636982013-05-16 20:30:03 +1000409 /* Match lowercase keyword */
410 for (i = 0; i < strlen(keyword); i++)
411 keyword[i] = tolower(keyword[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000412
Darren Tucker07636982013-05-16 20:30:03 +1000413 opcode = parse_token(keyword, filename, linenum,
414 options->ignored_unknown);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415
Damien Miller95def091999-11-25 00:26:21 +1100416 switch (opcode) {
417 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100418 /* don't panic, but count bad options */
419 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100420 /* NOTREACHED */
Darren Tucker07636982013-05-16 20:30:03 +1000421 case oIgnoredUnknownOption:
422 debug("%s line %d: Ignored unknown option \"%s\"",
423 filename, linenum, keyword);
424 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000425 case oConnectTimeout:
426 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100427parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000428 arg = strdelim(&s);
429 if (!arg || *arg == '\0')
430 fatal("%s line %d: missing time value.",
431 filename, linenum);
432 if ((value = convtime(arg)) == -1)
433 fatal("%s line %d: invalid time value.",
434 filename, linenum);
Darren Tuckera52c5b62007-02-19 22:09:45 +1100435 if (*activep && *intptr == -1)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000436 *intptr = value;
437 break;
438
Damien Miller95def091999-11-25 00:26:21 +1100439 case oForwardAgent:
440 intptr = &options->forward_agent;
441parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000442 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000443 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100444 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
445 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000446 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100447 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000448 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100449 value = 0;
450 else
451 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
452 if (*activep && *intptr == -1)
453 *intptr = value;
454 break;
455
456 case oForwardX11:
457 intptr = &options->forward_x11;
458 goto parse_flag;
459
Darren Tucker0a118da2003-10-15 15:54:32 +1000460 case oForwardX11Trusted:
461 intptr = &options->forward_x11_trusted;
462 goto parse_flag;
Damien Miller1ab6a512010-06-26 10:02:24 +1000463
464 case oForwardX11Timeout:
465 intptr = &options->forward_x11_timeout;
466 goto parse_time;
Darren Tucker0a118da2003-10-15 15:54:32 +1000467
Damien Miller95def091999-11-25 00:26:21 +1100468 case oGatewayPorts:
469 intptr = &options->gateway_ports;
470 goto parse_flag;
471
Darren Tuckere7d4b192006-07-12 22:17:10 +1000472 case oExitOnForwardFailure:
473 intptr = &options->exit_on_forward_failure;
474 goto parse_flag;
475
Damien Miller95def091999-11-25 00:26:21 +1100476 case oUsePrivilegedPort:
477 intptr = &options->use_privileged_port;
478 goto parse_flag;
479
Damien Miller95def091999-11-25 00:26:21 +1100480 case oPasswordAuthentication:
481 intptr = &options->password_authentication;
482 goto parse_flag;
483
Damien Miller01ed2272008-11-05 16:20:46 +1100484 case oZeroKnowledgePasswordAuthentication:
485 intptr = &options->zero_knowledge_password_authentication;
486 goto parse_flag;
487
Damien Miller874d77b2000-10-14 16:23:11 +1100488 case oKbdInteractiveAuthentication:
489 intptr = &options->kbd_interactive_authentication;
490 goto parse_flag;
491
492 case oKbdInteractiveDevices:
493 charptr = &options->kbd_interactive_devices;
494 goto parse_string;
495
Damien Miller0bc1bd82000-11-13 22:57:25 +1100496 case oPubkeyAuthentication:
497 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000498 goto parse_flag;
499
Damien Miller95def091999-11-25 00:26:21 +1100500 case oRSAAuthentication:
501 intptr = &options->rsa_authentication;
502 goto parse_flag;
503
504 case oRhostsRSAAuthentication:
505 intptr = &options->rhosts_rsa_authentication;
506 goto parse_flag;
507
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000508 case oHostbasedAuthentication:
509 intptr = &options->hostbased_authentication;
510 goto parse_flag;
511
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000512 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000513 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100514 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000515
Darren Tucker0efd1552003-08-26 11:49:55 +1000516 case oGssAuthentication:
517 intptr = &options->gss_authentication;
518 goto parse_flag;
519
520 case oGssDelegateCreds:
521 intptr = &options->gss_deleg_creds;
522 goto parse_flag;
523
Damien Miller95def091999-11-25 00:26:21 +1100524 case oBatchMode:
525 intptr = &options->batch_mode;
526 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Miller95def091999-11-25 00:26:21 +1100528 case oCheckHostIP:
529 intptr = &options->check_host_ip;
Damien Miller10288242008-06-30 00:04:03 +1000530 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531
Damien Miller37876e92003-05-15 10:19:46 +1000532 case oVerifyHostKeyDNS:
533 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100534 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000535
Damien Miller95def091999-11-25 00:26:21 +1100536 case oStrictHostKeyChecking:
537 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100538parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000539 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000540 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000541 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100542 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100543 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000544 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100545 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000546 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100547 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000548 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100549 value = 2;
550 else
551 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
552 if (*activep && *intptr == -1)
553 *intptr = value;
554 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 case oCompression:
557 intptr = &options->compression;
558 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller12c150e2003-12-17 16:31:10 +1100560 case oTCPKeepAlive:
561 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100562 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000564 case oNoHostAuthenticationForLocalhost:
565 intptr = &options->no_host_authentication_for_localhost;
566 goto parse_flag;
567
Damien Miller95def091999-11-25 00:26:21 +1100568 case oNumberOfPasswordPrompts:
569 intptr = &options->number_of_password_prompts;
570 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 case oCompressionLevel:
573 intptr = &options->compression_level;
574 goto parse_int;
575
Damien Millera5539d22003-04-09 20:50:06 +1000576 case oRekeyLimit:
Damien Millera5539d22003-04-09 20:50:06 +1000577 arg = strdelim(&s);
578 if (!arg || *arg == '\0')
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000579 fatal("%.200s line %d: Missing argument.", filename,
580 linenum);
581 if (strcmp(arg, "default") == 0) {
582 val64 = 0;
583 } else {
Darren Tuckerb7ee8522013-05-16 20:33:10 +1000584 if (scan_scaled(arg, &val64) == -1)
585 fatal("%.200s line %d: Bad number '%s': %s",
586 filename, linenum, arg, strerror(errno));
587 /* check for too-large or too-small limits */
588 if (val64 > UINT_MAX)
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000589 fatal("%.200s line %d: RekeyLimit too large",
590 filename, linenum);
591 if (val64 != 0 && val64 < 16)
592 fatal("%.200s line %d: RekeyLimit too small",
593 filename, linenum);
Damien Millera5539d22003-04-09 20:50:06 +1000594 }
Damien Miller3dff1762008-02-10 22:25:52 +1100595 if (*activep && options->rekey_limit == -1)
596 options->rekey_limit = (u_int32_t)val64;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000597 if (s != NULL) { /* optional rekey interval present */
598 if (strcmp(s, "none") == 0) {
599 (void)strdelim(&s); /* discard */
600 break;
601 }
602 intptr = &options->rekey_interval;
603 goto parse_time;
604 }
Damien Millera5539d22003-04-09 20:50:06 +1000605 break;
606
Damien Miller95def091999-11-25 00:26:21 +1100607 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000608 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000609 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100610 fatal("%.200s line %d: Missing argument.", filename, linenum);
611 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100612 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000613 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100614 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100615 filename, linenum, SSH_MAX_IDENTITY_FILES);
Darren Tuckeraefa3682013-04-05 11:18:35 +1100616 add_identity_file(options, NULL, arg, userconfig);
Damien Miller95def091999-11-25 00:26:21 +1100617 }
618 break;
619
Damien Millerd3a18572000-06-07 19:55:44 +1000620 case oXAuthLocation:
621 charptr=&options->xauth_location;
622 goto parse_string;
623
Damien Miller95def091999-11-25 00:26:21 +1100624 case oUser:
625 charptr = &options->user;
626parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000627 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000628 if (!arg || *arg == '\0')
Damien Miller295ee632011-05-29 21:42:31 +1000629 fatal("%.200s line %d: Missing argument.",
630 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100631 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000632 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100633 break;
634
635 case oGlobalKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000636 cpptr = (char **)&options->system_hostfiles;
637 uintptr = &options->num_system_hostfiles;
638 max_entries = SSH_MAX_HOSTS_FILES;
639parse_char_array:
640 if (*activep && *uintptr == 0) {
641 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
642 if ((*uintptr) >= max_entries)
643 fatal("%s line %d: "
644 "too many authorized keys files.",
645 filename, linenum);
646 cpptr[(*uintptr)++] = xstrdup(arg);
647 }
648 }
649 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100650
651 case oUserKnownHostsFile:
Damien Miller295ee632011-05-29 21:42:31 +1000652 cpptr = (char **)&options->user_hostfiles;
653 uintptr = &options->num_user_hostfiles;
654 max_entries = SSH_MAX_HOSTS_FILES;
655 goto parse_char_array;
Damien Millereba71ba2000-04-29 23:57:08 +1000656
Damien Miller95def091999-11-25 00:26:21 +1100657 case oHostName:
658 charptr = &options->hostname;
659 goto parse_string;
660
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000661 case oHostKeyAlias:
662 charptr = &options->host_key_alias;
663 goto parse_string;
664
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000665 case oPreferredAuthentications:
666 charptr = &options->preferred_authentications;
667 goto parse_string;
668
Ben Lindstrome0f88042001-04-30 13:06:24 +0000669 case oBindAddress:
670 charptr = &options->bind_address;
671 goto parse_string;
672
Damien Miller7ea845e2010-02-12 09:21:02 +1100673 case oPKCS11Provider:
674 charptr = &options->pkcs11_provider;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000675 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000676
Damien Miller95def091999-11-25 00:26:21 +1100677 case oProxyCommand:
Damien Millerd27b9472005-12-13 19:29:02 +1100678 charptr = &options->proxy_command;
679parse_command:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000680 if (s == NULL)
681 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller61f08ac2003-02-24 11:56:27 +1100682 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100683 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100684 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100685 return 0;
686
687 case oPort:
688 intptr = &options->port;
689parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000690 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000691 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100692 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000693 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100694 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100695
696 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000697 value = strtol(arg, &endofnumber, 0);
698 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100699 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100700 if (*activep && *intptr == -1)
701 *intptr = value;
702 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000703
Damien Miller95def091999-11-25 00:26:21 +1100704 case oConnectionAttempts:
705 intptr = &options->connection_attempts;
706 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100707
Damien Miller95def091999-11-25 00:26:21 +1100708 case oCipher:
709 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000710 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000711 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000712 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000713 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100714 if (value == -1)
715 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100716 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100717 if (*activep && *intptr == -1)
718 *intptr = value;
719 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller78928792000-04-12 20:17:38 +1000721 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000722 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000723 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000724 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000725 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000726 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100727 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000728 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000729 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000730 break;
731
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000732 case oMacs:
733 arg = strdelim(&s);
734 if (!arg || *arg == '\0')
735 fatal("%.200s line %d: Missing argument.", filename, linenum);
736 if (!mac_valid(arg))
737 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100738 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000739 if (*activep && options->macs == NULL)
740 options->macs = xstrdup(arg);
741 break;
742
Damien Millerd5f62bf2010-09-24 22:11:14 +1000743 case oKexAlgorithms:
744 arg = strdelim(&s);
745 if (!arg || *arg == '\0')
746 fatal("%.200s line %d: Missing argument.",
747 filename, linenum);
748 if (!kex_names_valid(arg))
749 fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
750 filename, linenum, arg ? arg : "<NONE>");
751 if (*activep && options->kex_algorithms == NULL)
752 options->kex_algorithms = xstrdup(arg);
753 break;
754
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000755 case oHostKeyAlgorithms:
756 arg = strdelim(&s);
757 if (!arg || *arg == '\0')
758 fatal("%.200s line %d: Missing argument.", filename, linenum);
759 if (!key_names_valid2(arg))
760 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100761 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000762 if (*activep && options->hostkeyalgorithms == NULL)
763 options->hostkeyalgorithms = xstrdup(arg);
764 break;
765
Damien Miller78928792000-04-12 20:17:38 +1000766 case oProtocol:
767 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000768 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000769 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000770 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000771 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000772 if (value == SSH_PROTO_UNKNOWN)
773 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100774 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000775 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
776 *intptr = value;
777 break;
778
Damien Miller95def091999-11-25 00:26:21 +1100779 case oLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100780 log_level_ptr = &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000781 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000782 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100783 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000784 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100785 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100786 if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
787 *log_level_ptr = (LogLevel) value;
Damien Miller95def091999-11-25 00:26:21 +1100788 break;
789
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000790 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100791 case oRemoteForward:
Damien Millera699d952008-11-03 19:27:34 +1100792 case oDynamicForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000793 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100794 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000795 fatal("%.200s line %d: Missing port argument.",
796 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100797
Damien Millera699d952008-11-03 19:27:34 +1100798 if (opcode == oLocalForward ||
799 opcode == oRemoteForward) {
800 arg2 = strdelim(&s);
801 if (arg2 == NULL || *arg2 == '\0')
802 fatal("%.200s line %d: Missing target argument.",
803 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100804
Damien Millera699d952008-11-03 19:27:34 +1100805 /* construct a string for parse_forward */
806 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
807 } else if (opcode == oDynamicForward) {
808 strlcpy(fwdarg, arg, sizeof(fwdarg));
809 }
810
811 if (parse_forward(&fwd, fwdarg,
Damien Miller4bf648f2009-02-14 16:28:21 +1100812 opcode == oDynamicForward ? 1 : 0,
813 opcode == oRemoteForward ? 1 : 0) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000814 fatal("%.200s line %d: Bad forwarding specification.",
815 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100816
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000817 if (*activep) {
Damien Millera699d952008-11-03 19:27:34 +1100818 if (opcode == oLocalForward ||
819 opcode == oDynamicForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100820 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000821 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100822 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000823 }
Damien Miller95def091999-11-25 00:26:21 +1100824 break;
825
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000826 case oClearAllForwardings:
827 intptr = &options->clear_forwardings;
828 goto parse_flag;
829
Damien Miller95def091999-11-25 00:26:21 +1100830 case oHost:
831 *activep = 0;
Damien Millerfe924212011-05-15 08:44:45 +1000832 arg2 = NULL;
833 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
834 negated = *arg == '!';
835 if (negated)
836 arg++;
Damien Miller37023962000-07-11 17:31:38 +1000837 if (match_pattern(host, arg)) {
Damien Millerfe924212011-05-15 08:44:45 +1000838 if (negated) {
839 debug("%.200s line %d: Skipping Host "
840 "block because of negated match "
841 "for %.100s", filename, linenum,
842 arg);
843 *activep = 0;
844 break;
845 }
846 if (!*activep)
847 arg2 = arg; /* logged below */
Damien Miller95def091999-11-25 00:26:21 +1100848 *activep = 1;
Damien Miller95def091999-11-25 00:26:21 +1100849 }
Damien Millerfe924212011-05-15 08:44:45 +1000850 }
851 if (*activep)
852 debug("%.200s line %d: Applying options for %.100s",
853 filename, linenum, arg2);
Damien Millerbe484b52000-07-15 14:14:16 +1000854 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100855 return 0;
856
857 case oEscapeChar:
858 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000859 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000860 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100861 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000862 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000863 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
864 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000865 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000866 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000867 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000868 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100869 else {
870 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100871 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100872 /* NOTREACHED */
873 value = 0; /* Avoid compiler warning. */
874 }
875 if (*activep && *intptr == -1)
876 *intptr = value;
877 break;
878
Damien Miller20a8f972003-05-18 20:50:30 +1000879 case oAddressFamily:
880 arg = strdelim(&s);
Damien Miller17b23d82005-05-26 12:11:56 +1000881 if (!arg || *arg == '\0')
882 fatal("%s line %d: missing address family.",
883 filename, linenum);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000884 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000885 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000886 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000887 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000888 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000889 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000890 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000891 else
892 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000893 if (*activep && *intptr == -1)
894 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000895 break;
896
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000897 case oEnableSSHKeysign:
898 intptr = &options->enable_ssh_keysign;
899 goto parse_flag;
900
Damien Millerbd394c32004-03-08 23:12:36 +1100901 case oIdentitiesOnly:
902 intptr = &options->identities_only;
903 goto parse_flag;
904
Damien Miller509b0102003-12-17 16:33:10 +1100905 case oServerAliveInterval:
906 intptr = &options->server_alive_interval;
907 goto parse_time;
908
909 case oServerAliveCountMax:
910 intptr = &options->server_alive_count_max;
911 goto parse_int;
912
Darren Tucker46bc0752004-05-02 22:11:30 +1000913 case oSendEnv:
914 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
915 if (strchr(arg, '=') != NULL)
916 fatal("%s line %d: Invalid environment name.",
917 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +1100918 if (!*activep)
919 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +1000920 if (options->num_send_env >= MAX_SEND_ENV)
921 fatal("%s line %d: too many send env.",
922 filename, linenum);
923 options->send_env[options->num_send_env++] =
924 xstrdup(arg);
925 }
926 break;
927
Damien Miller0e220db2004-06-15 10:34:08 +1000928 case oControlPath:
929 charptr = &options->control_path;
930 goto parse_string;
931
932 case oControlMaster:
933 intptr = &options->control_master;
Damien Millerd14b1e72005-06-16 13:19:41 +1000934 arg = strdelim(&s);
935 if (!arg || *arg == '\0')
936 fatal("%.200s line %d: Missing ControlMaster argument.",
937 filename, linenum);
938 value = 0; /* To avoid compiler warning... */
939 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
940 value = SSHCTL_MASTER_YES;
941 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
942 value = SSHCTL_MASTER_NO;
943 else if (strcmp(arg, "auto") == 0)
944 value = SSHCTL_MASTER_AUTO;
945 else if (strcmp(arg, "ask") == 0)
946 value = SSHCTL_MASTER_ASK;
947 else if (strcmp(arg, "autoask") == 0)
948 value = SSHCTL_MASTER_AUTO_ASK;
949 else
950 fatal("%.200s line %d: Bad ControlMaster argument.",
951 filename, linenum);
952 if (*activep && *intptr == -1)
953 *intptr = value;
954 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000955
Damien Millere11e1ea2010-08-03 16:04:46 +1000956 case oControlPersist:
957 /* no/false/yes/true, or a time spec */
958 intptr = &options->control_persist;
959 arg = strdelim(&s);
960 if (!arg || *arg == '\0')
961 fatal("%.200s line %d: Missing ControlPersist"
962 " argument.", filename, linenum);
963 value = 0;
964 value2 = 0; /* timeout */
965 if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
966 value = 0;
967 else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
968 value = 1;
969 else if ((value2 = convtime(arg)) >= 0)
970 value = 1;
971 else
972 fatal("%.200s line %d: Bad ControlPersist argument.",
973 filename, linenum);
974 if (*activep && *intptr == -1) {
975 *intptr = value;
976 options->control_persist_timeout = value2;
977 }
978 break;
979
Damien Millere1776152005-03-01 21:47:37 +1100980 case oHashKnownHosts:
981 intptr = &options->hash_known_hosts;
982 goto parse_flag;
983
Damien Millerd27b9472005-12-13 19:29:02 +1100984 case oTunnel:
985 intptr = &options->tun_open;
Damien Miller7b58e802005-12-13 19:33:19 +1100986 arg = strdelim(&s);
987 if (!arg || *arg == '\0')
988 fatal("%s line %d: Missing yes/point-to-point/"
989 "ethernet/no argument.", filename, linenum);
990 value = 0; /* silence compiler */
991 if (strcasecmp(arg, "ethernet") == 0)
992 value = SSH_TUNMODE_ETHERNET;
993 else if (strcasecmp(arg, "point-to-point") == 0)
994 value = SSH_TUNMODE_POINTOPOINT;
995 else if (strcasecmp(arg, "yes") == 0)
996 value = SSH_TUNMODE_DEFAULT;
997 else if (strcasecmp(arg, "no") == 0)
998 value = SSH_TUNMODE_NO;
999 else
1000 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1001 "no argument: %s", filename, linenum, arg);
1002 if (*activep)
1003 *intptr = value;
1004 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001005
1006 case oTunnelDevice:
1007 arg = strdelim(&s);
1008 if (!arg || *arg == '\0')
1009 fatal("%.200s line %d: Missing argument.", filename, linenum);
1010 value = a2tun(arg, &value2);
Damien Miller7b58e802005-12-13 19:33:19 +11001011 if (value == SSH_TUNID_ERR)
Damien Millerd27b9472005-12-13 19:29:02 +11001012 fatal("%.200s line %d: Bad tun device.", filename, linenum);
1013 if (*activep) {
1014 options->tun_local = value;
1015 options->tun_remote = value2;
1016 }
1017 break;
1018
1019 case oLocalCommand:
1020 charptr = &options->local_command;
1021 goto parse_command;
1022
1023 case oPermitLocalCommand:
1024 intptr = &options->permit_local_command;
1025 goto parse_flag;
1026
Damien Miller10288242008-06-30 00:04:03 +10001027 case oVisualHostKey:
1028 intptr = &options->visual_host_key;
1029 goto parse_flag;
1030
Damien Miller0dac6fb2010-11-20 15:19:38 +11001031 case oIPQoS:
1032 arg = strdelim(&s);
1033 if ((value = parse_ipqos(arg)) == -1)
1034 fatal("%s line %d: Bad IPQoS value: %s",
1035 filename, linenum, arg);
1036 arg = strdelim(&s);
1037 if (arg == NULL)
1038 value2 = value;
1039 else if ((value2 = parse_ipqos(arg)) == -1)
1040 fatal("%s line %d: Bad IPQoS value: %s",
1041 filename, linenum, arg);
1042 if (*activep) {
1043 options->ip_qos_interactive = value;
1044 options->ip_qos_bulk = value2;
1045 }
1046 break;
1047
Darren Tucker71e4d542009-07-06 07:12:27 +10001048 case oUseRoaming:
1049 intptr = &options->use_roaming;
1050 goto parse_flag;
1051
Damien Miller21771e22011-05-15 08:45:50 +10001052 case oRequestTTY:
1053 arg = strdelim(&s);
1054 if (!arg || *arg == '\0')
1055 fatal("%s line %d: missing argument.",
1056 filename, linenum);
1057 intptr = &options->request_tty;
1058 if (strcasecmp(arg, "yes") == 0)
1059 value = REQUEST_TTY_YES;
1060 else if (strcasecmp(arg, "no") == 0)
1061 value = REQUEST_TTY_NO;
1062 else if (strcasecmp(arg, "force") == 0)
1063 value = REQUEST_TTY_FORCE;
1064 else if (strcasecmp(arg, "auto") == 0)
1065 value = REQUEST_TTY_AUTO;
1066 else
1067 fatal("Unsupported RequestTTY \"%s\"", arg);
1068 if (*activep && *intptr == -1)
1069 *intptr = value;
1070 break;
1071
Darren Tucker07636982013-05-16 20:30:03 +10001072 case oIgnoreUnknown:
1073 charptr = &options->ignored_unknown;
1074 goto parse_string;
1075
Damien Miller1262b662013-08-21 02:44:24 +10001076 case oProxyUseFdpass:
1077 intptr = &options->proxy_use_fdpass;
1078 goto parse_flag;
1079
Ben Lindstrom4daea862002-06-09 20:04:02 +00001080 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001081 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +00001082 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +00001083 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +00001084
Damien Millerf9b3feb2003-05-16 11:38:32 +10001085 case oUnsupported:
1086 error("%s line %d: Unsupported option \"%s\"",
1087 filename, linenum, keyword);
1088 return 0;
1089
Damien Miller95def091999-11-25 00:26:21 +11001090 default:
1091 fatal("process_config_line: Unimplemented opcode %d", opcode);
1092 }
1093
1094 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001095 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +10001096 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller0dc1bef2005-07-17 17:22:45 +10001097 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +10001098 }
Damien Miller95def091999-11-25 00:26:21 +11001099 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001100}
1101
1102
Damien Miller5428f641999-11-25 11:54:57 +11001103/*
1104 * Reads the config file and modifies the options accordingly. Options
1105 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001106 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +11001107 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001108
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001109int
Darren Tuckerfc959702004-07-17 16:12:08 +10001110read_config_file(const char *filename, const char *host, Options *options,
Darren Tuckeraefa3682013-04-05 11:18:35 +11001111 int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112{
Damien Miller95def091999-11-25 00:26:21 +11001113 FILE *f;
1114 char line[1024];
1115 int active, linenum;
1116 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117
Damien Miller57a44762004-04-20 20:11:57 +10001118 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001119 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001120
Darren Tuckeraefa3682013-04-05 11:18:35 +11001121 if (flags & SSHCONF_CHECKPERM) {
Damien Miller57a44762004-04-20 20:11:57 +10001122 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +10001123
Damien Miller33793852004-06-15 10:27:55 +10001124 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +10001125 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +10001126 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +10001127 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +10001128 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +10001129 }
1130
Damien Miller95def091999-11-25 00:26:21 +11001131 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Damien Miller5428f641999-11-25 11:54:57 +11001133 /*
1134 * Mark that we are now processing the options. This flag is turned
1135 * on/off by Host specifications.
1136 */
Damien Miller95def091999-11-25 00:26:21 +11001137 active = 1;
1138 linenum = 0;
1139 while (fgets(line, sizeof(line), f)) {
1140 /* Update line number counter. */
1141 linenum++;
Darren Tuckeraefa3682013-04-05 11:18:35 +11001142 if (process_config_line(options, host, line, filename, linenum,
1143 &active, flags & SSHCONF_USERCONF) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001144 bad_options++;
1145 }
1146 fclose(f);
1147 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +00001148 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001149 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +00001150 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001151}
1152
Damien Miller5428f641999-11-25 11:54:57 +11001153/*
1154 * Initializes options to special values that indicate that they have not yet
1155 * been set. Read_config_file will only set options with this value. Options
1156 * are processed in the following order: command line, user config file,
1157 * system config file. Last, fill_default_options is called.
1158 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001159
Damien Miller4af51302000-04-16 11:18:38 +10001160void
Damien Miller95def091999-11-25 00:26:21 +11001161initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001162{
Damien Miller95def091999-11-25 00:26:21 +11001163 memset(options, 'X', sizeof(*options));
1164 options->forward_agent = -1;
1165 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +10001166 options->forward_x11_trusted = -1;
Damien Miller1ab6a512010-06-26 10:02:24 +10001167 options->forward_x11_timeout = -1;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001168 options->exit_on_forward_failure = -1;
Damien Millerd3a18572000-06-07 19:55:44 +10001169 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001170 options->gateway_ports = -1;
1171 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +11001172 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001173 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001174 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001175 options->gss_authentication = -1;
1176 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +11001177 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001178 options->kbd_interactive_authentication = -1;
1179 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001180 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001181 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +11001182 options->batch_mode = -1;
1183 options->check_host_ip = -1;
1184 options->strict_host_key_checking = -1;
1185 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +11001186 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +11001187 options->compression_level = -1;
1188 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001189 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +11001190 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +10001191 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +11001192 options->number_of_password_prompts = -1;
1193 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +10001194 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001195 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +10001196 options->kex_algorithms = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001197 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +10001198 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +11001199 options->num_identity_files = 0;
1200 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001201 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001202 options->proxy_command = NULL;
1203 options->user = NULL;
1204 options->escape_char = -1;
Damien Miller295ee632011-05-29 21:42:31 +10001205 options->num_system_hostfiles = 0;
1206 options->num_user_hostfiles = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001207 options->local_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001208 options->num_local_forwards = 0;
Damien Miller232cfb12010-06-26 09:50:30 +10001209 options->remote_forwards = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001210 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001211 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +11001212 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001213 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001214 options->bind_address = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11001215 options->pkcs11_provider = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001216 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001217 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +11001218 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +10001219 options->rekey_limit = - 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001220 options->rekey_interval = -1;
Damien Miller37876e92003-05-15 10:19:46 +10001221 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +11001222 options->server_alive_interval = -1;
1223 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +10001224 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +10001225 options->control_path = NULL;
1226 options->control_master = -1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001227 options->control_persist = -1;
1228 options->control_persist_timeout = 0;
Damien Millere1776152005-03-01 21:47:37 +11001229 options->hash_known_hosts = -1;
Damien Millerd27b9472005-12-13 19:29:02 +11001230 options->tun_open = -1;
1231 options->tun_local = -1;
1232 options->tun_remote = -1;
1233 options->local_command = NULL;
1234 options->permit_local_command = -1;
Darren Tucker71e4d542009-07-06 07:12:27 +10001235 options->use_roaming = -1;
Damien Miller10288242008-06-30 00:04:03 +10001236 options->visual_host_key = -1;
Damien Miller01ed2272008-11-05 16:20:46 +11001237 options->zero_knowledge_password_authentication = -1;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001238 options->ip_qos_interactive = -1;
1239 options->ip_qos_bulk = -1;
Damien Miller21771e22011-05-15 08:45:50 +10001240 options->request_tty = -1;
Damien Miller1262b662013-08-21 02:44:24 +10001241 options->proxy_use_fdpass = -1;
Darren Tucker07636982013-05-16 20:30:03 +10001242 options->ignored_unknown = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001243}
1244
Damien Miller5428f641999-11-25 11:54:57 +11001245/*
1246 * Called after processing other sources of option data, this fills those
1247 * options for which no value has been specified with their default values.
1248 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001249
Damien Miller4af51302000-04-16 11:18:38 +10001250void
Damien Miller95def091999-11-25 00:26:21 +11001251fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001252{
Damien Miller95def091999-11-25 00:26:21 +11001253 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +10001254 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +11001255 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +11001256 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +10001257 if (options->forward_x11_trusted == -1)
1258 options->forward_x11_trusted = 0;
Damien Miller1ab6a512010-06-26 10:02:24 +10001259 if (options->forward_x11_timeout == -1)
1260 options->forward_x11_timeout = 1200;
Darren Tuckere7d4b192006-07-12 22:17:10 +10001261 if (options->exit_on_forward_failure == -1)
1262 options->exit_on_forward_failure = 0;
Damien Millerd3a18572000-06-07 19:55:44 +10001263 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +00001264 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +11001265 if (options->gateway_ports == -1)
1266 options->gateway_ports = 0;
1267 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +00001268 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +11001269 if (options->rsa_authentication == -1)
1270 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001271 if (options->pubkey_authentication == -1)
1272 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001273 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +00001274 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +10001275 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +10001276 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +10001277 if (options->gss_deleg_creds == -1)
1278 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +11001279 if (options->password_authentication == -1)
1280 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +11001281 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001282 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +11001283 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +00001284 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001285 if (options->hostbased_authentication == -1)
1286 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001287 if (options->batch_mode == -1)
1288 options->batch_mode = 0;
1289 if (options->check_host_ip == -1)
1290 options->check_host_ip = 1;
1291 if (options->strict_host_key_checking == -1)
1292 options->strict_host_key_checking = 2; /* 2 is default */
1293 if (options->compression == -1)
1294 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +11001295 if (options->tcp_keep_alive == -1)
1296 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +11001297 if (options->compression_level == -1)
1298 options->compression_level = 6;
1299 if (options->port == -1)
1300 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001301 if (options->address_family == -1)
1302 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001303 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001304 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001305 if (options->number_of_password_prompts == -1)
1306 options->number_of_password_prompts = 3;
1307 /* Selected in ssh_login(). */
1308 if (options->cipher == -1)
1309 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001310 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001311 /* options->macs, default set in myproposals.h */
Damien Millerd5f62bf2010-09-24 22:11:14 +10001312 /* options->kex_algorithms, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001313 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001314 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +11001315 options->protocol = SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001316 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001317 if (options->protocol & SSH_PROTO_1) {
Darren Tucker19104782013-04-05 11:13:08 +11001318 add_identity_file(options, "~/",
1319 _PATH_SSH_CLIENT_IDENTITY, 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001320 }
1321 if (options->protocol & SSH_PROTO_2) {
Darren Tucker19104782013-04-05 11:13:08 +11001322 add_identity_file(options, "~/",
1323 _PATH_SSH_CLIENT_ID_RSA, 0);
1324 add_identity_file(options, "~/",
1325 _PATH_SSH_CLIENT_ID_DSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001326#ifdef OPENSSL_HAS_ECC
Darren Tucker19104782013-04-05 11:13:08 +11001327 add_identity_file(options, "~/",
1328 _PATH_SSH_CLIENT_ID_ECDSA, 0);
Damien Miller6af914a2010-09-10 11:39:26 +10001329#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001330 }
Damien Millereba71ba2000-04-29 23:57:08 +10001331 }
Damien Miller95def091999-11-25 00:26:21 +11001332 if (options->escape_char == -1)
1333 options->escape_char = '~';
Damien Miller295ee632011-05-29 21:42:31 +10001334 if (options->num_system_hostfiles == 0) {
1335 options->system_hostfiles[options->num_system_hostfiles++] =
1336 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
1337 options->system_hostfiles[options->num_system_hostfiles++] =
1338 xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
1339 }
1340 if (options->num_user_hostfiles == 0) {
1341 options->user_hostfiles[options->num_user_hostfiles++] =
1342 xstrdup(_PATH_SSH_USER_HOSTFILE);
1343 options->user_hostfiles[options->num_user_hostfiles++] =
1344 xstrdup(_PATH_SSH_USER_HOSTFILE2);
1345 }
Damien Millerfcd93202002-02-05 12:26:34 +11001346 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001347 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001348 if (options->clear_forwardings == 1)
1349 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001350 if (options->no_host_authentication_for_localhost == - 1)
1351 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001352 if (options->identities_only == -1)
1353 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001354 if (options->enable_ssh_keysign == -1)
1355 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001356 if (options->rekey_limit == -1)
1357 options->rekey_limit = 0;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001358 if (options->rekey_interval == -1)
1359 options->rekey_interval = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001360 if (options->verify_host_key_dns == -1)
1361 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001362 if (options->server_alive_interval == -1)
1363 options->server_alive_interval = 0;
1364 if (options->server_alive_count_max == -1)
1365 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001366 if (options->control_master == -1)
1367 options->control_master = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001368 if (options->control_persist == -1) {
1369 options->control_persist = 0;
1370 options->control_persist_timeout = 0;
1371 }
Damien Millere1776152005-03-01 21:47:37 +11001372 if (options->hash_known_hosts == -1)
1373 options->hash_known_hosts = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001374 if (options->tun_open == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001375 options->tun_open = SSH_TUNMODE_NO;
1376 if (options->tun_local == -1)
1377 options->tun_local = SSH_TUNID_ANY;
1378 if (options->tun_remote == -1)
1379 options->tun_remote = SSH_TUNID_ANY;
Damien Millerd27b9472005-12-13 19:29:02 +11001380 if (options->permit_local_command == -1)
1381 options->permit_local_command = 0;
Darren Tucker71e4d542009-07-06 07:12:27 +10001382 if (options->use_roaming == -1)
1383 options->use_roaming = 1;
Damien Miller10288242008-06-30 00:04:03 +10001384 if (options->visual_host_key == -1)
1385 options->visual_host_key = 0;
Damien Miller01ed2272008-11-05 16:20:46 +11001386 if (options->zero_knowledge_password_authentication == -1)
1387 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +11001388 if (options->ip_qos_interactive == -1)
1389 options->ip_qos_interactive = IPTOS_LOWDELAY;
1390 if (options->ip_qos_bulk == -1)
1391 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller21771e22011-05-15 08:45:50 +10001392 if (options->request_tty == -1)
1393 options->request_tty = REQUEST_TTY_AUTO;
Damien Miller1262b662013-08-21 02:44:24 +10001394 if (options->proxy_use_fdpass == -1)
1395 options->proxy_use_fdpass = 0;
Damien Millerd27b9472005-12-13 19:29:02 +11001396 /* options->local_command should not be set by default */
Damien Miller95def091999-11-25 00:26:21 +11001397 /* options->proxy_command should not be set by default */
1398 /* options->user will be set in the main program if appropriate */
1399 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001400 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001401 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001403
1404/*
1405 * parse_forward
1406 * parses a string containing a port forwarding specification of the form:
Damien Millera699d952008-11-03 19:27:34 +11001407 * dynamicfwd == 0
Damien Millerf91ee4c2005-03-01 21:24:33 +11001408 * [listenhost:]listenport:connecthost:connectport
Damien Millera699d952008-11-03 19:27:34 +11001409 * dynamicfwd == 1
1410 * [listenhost:]listenport
Damien Millerf91ee4c2005-03-01 21:24:33 +11001411 * returns number of arguments parsed or zero on error
1412 */
1413int
Damien Miller4bf648f2009-02-14 16:28:21 +11001414parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001415{
1416 int i;
1417 char *p, *cp, *fwdarg[4];
1418
1419 memset(fwd, '\0', sizeof(*fwd));
1420
1421 cp = p = xstrdup(fwdspec);
1422
1423 /* skip leading spaces */
Darren Tucker03b1cdb2007-03-21 20:46:03 +11001424 while (isspace(*cp))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001425 cp++;
1426
1427 for (i = 0; i < 4; ++i)
1428 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1429 break;
1430
Damien Millerf4b39532008-11-03 19:28:21 +11001431 /* Check for trailing garbage */
Damien Millerf91ee4c2005-03-01 21:24:33 +11001432 if (cp != NULL)
1433 i = 0; /* failure */
1434
1435 switch (i) {
Damien Millera699d952008-11-03 19:27:34 +11001436 case 1:
1437 fwd->listen_host = NULL;
1438 fwd->listen_port = a2port(fwdarg[0]);
1439 fwd->connect_host = xstrdup("socks");
1440 break;
1441
1442 case 2:
1443 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1444 fwd->listen_port = a2port(fwdarg[1]);
1445 fwd->connect_host = xstrdup("socks");
1446 break;
1447
Damien Millerf91ee4c2005-03-01 21:24:33 +11001448 case 3:
1449 fwd->listen_host = NULL;
1450 fwd->listen_port = a2port(fwdarg[0]);
1451 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1452 fwd->connect_port = a2port(fwdarg[2]);
1453 break;
1454
1455 case 4:
1456 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1457 fwd->listen_port = a2port(fwdarg[1]);
1458 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1459 fwd->connect_port = a2port(fwdarg[3]);
1460 break;
1461 default:
1462 i = 0; /* failure */
1463 }
1464
Darren Tuckera627d422013-06-02 07:31:17 +10001465 free(p);
Damien Millerf91ee4c2005-03-01 21:24:33 +11001466
Damien Millera699d952008-11-03 19:27:34 +11001467 if (dynamicfwd) {
1468 if (!(i == 1 || i == 2))
1469 goto fail_free;
1470 } else {
1471 if (!(i == 3 || i == 4))
1472 goto fail_free;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001473 if (fwd->connect_port <= 0)
Damien Millera699d952008-11-03 19:27:34 +11001474 goto fail_free;
1475 }
1476
Damien Miller4bf648f2009-02-14 16:28:21 +11001477 if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +11001478 goto fail_free;
1479
1480 if (fwd->connect_host != NULL &&
1481 strlen(fwd->connect_host) >= NI_MAXHOST)
1482 goto fail_free;
Damien Miller4bf648f2009-02-14 16:28:21 +11001483 if (fwd->listen_host != NULL &&
1484 strlen(fwd->listen_host) >= NI_MAXHOST)
1485 goto fail_free;
1486
Damien Millerf91ee4c2005-03-01 21:24:33 +11001487
1488 return (i);
1489
1490 fail_free:
Darren Tuckera627d422013-06-02 07:31:17 +10001491 free(fwd->connect_host);
1492 fwd->connect_host = NULL;
1493 free(fwd->listen_host);
1494 fwd->listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +11001495 return (0);
1496}