blob: c3dc71e66c9d9a560382ecb5660d19d74c7f675d [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for reading the configuration files.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerf91ee4c2005-03-01 21:24:33 +110015RCSID("$OpenBSD: readconf.c,v 1.135 2005/03/01 10:09:52 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "ssh.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100019#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "cipher.h"
21#include "pathnames.h"
22#include "log.h"
23#include "readconf.h"
24#include "match.h"
25#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000026#include "kex.h"
27#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028
29/* Format of the configuration file:
30
31 # Configuration data is parsed as follows:
32 # 1. command line options
33 # 2. user-specific file
34 # 3. system-wide file
35 # Any configuration value is only changed the first time it is set.
36 # Thus, host-specific definitions should be at the beginning of the
37 # configuration file, and defaults at the end.
38
39 # Host-specific declarations. These may override anything above. A single
40 # host may match multiple declarations; these are processed in the order
41 # that they are given in.
42
43 Host *.ngs.fi ngs.fi
Ben Lindstrom4daea862002-06-09 20:04:02 +000044 User foo
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
46 Host fake.com
47 HostName another.host.name.real.org
48 User blaah
49 Port 34289
50 ForwardX11 no
51 ForwardAgent no
52
53 Host books.com
54 RemoteForward 9999 shadows.cs.hut.fi:9999
55 Cipher 3des
56
57 Host fascist.blob.com
58 Port 23123
59 User tylonen
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060 PasswordAuthentication no
61
62 Host puukko.hut.fi
63 User t35124p
64 ProxyCommand ssh-proxy %h %p
65
66 Host *.fr
Ben Lindstrom4daea862002-06-09 20:04:02 +000067 PublicKeyAuthentication no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
69 Host *.su
70 Cipher none
71 PasswordAuthentication no
72
73 # Defaults for various options
74 Host *
75 ForwardAgent no
Damien Miller0bc1bd82000-11-13 22:57:25 +110076 ForwardX11 no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077 PasswordAuthentication yes
78 RSAAuthentication yes
79 RhostsRSAAuthentication yes
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080 StrictHostKeyChecking yes
Damien Miller12c150e2003-12-17 16:31:10 +110081 TcpKeepAlive no
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082 IdentityFile ~/.ssh/identity
83 Port 22
84 EscapeChar ~
85
86*/
87
88/* Keyword tokens. */
89
Damien Miller95def091999-11-25 00:26:21 +110090typedef enum {
91 oBadOption,
Darren Tucker0a118da2003-10-15 15:54:32 +100092 oForwardAgent, oForwardX11, oForwardX11Trusted, oGatewayPorts,
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000093 oPasswordAuthentication, oRSAAuthentication,
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000094 oChallengeResponseAuthentication, oXAuthLocation,
Damien Miller95def091999-11-25 00:26:21 +110095 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
96 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
97 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
98 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
Damien Miller12c150e2003-12-17 16:31:10 +110099 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000100 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100101 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000102 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000103 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000104 oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
Ben Lindstrom4daea862002-06-09 20:04:02 +0000105 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
Damien Millerb78d5eb2003-05-16 11:39:04 +1000106 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
Darren Tucker0efd1552003-08-26 11:49:55 +1000107 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
Damien Millerbd394c32004-03-08 23:12:36 +1100108 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
Damien Miller0e220db2004-06-15 10:34:08 +1000109 oSendEnv, oControlPath, oControlMaster,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000110 oDeprecated, oUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111} OpCodes;
112
113/* Textual representations of the tokens. */
114
Damien Miller95def091999-11-25 00:26:21 +1100115static struct {
116 const char *name;
117 OpCodes opcode;
118} keywords[] = {
119 { "forwardagent", oForwardAgent },
120 { "forwardx11", oForwardX11 },
Darren Tucker0a118da2003-10-15 15:54:32 +1000121 { "forwardx11trusted", oForwardX11Trusted },
Damien Millerd3a18572000-06-07 19:55:44 +1000122 { "xauthlocation", oXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100123 { "gatewayports", oGatewayPorts },
124 { "useprivilegedport", oUsePrivilegedPort },
Darren Tuckerec960f22003-08-13 20:37:05 +1000125 { "rhostsauthentication", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100126 { "passwordauthentication", oPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100127 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
128 { "kbdinteractivedevices", oKbdInteractiveDevices },
Damien Miller95def091999-11-25 00:26:21 +1100129 { "rsaauthentication", oRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 { "pubkeyauthentication", oPubkeyAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000131 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000132 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
Ben Lindstromd69dab32001-04-12 23:36:05 +0000133 { "hostbasedauthentication", oHostbasedAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000134 { "challengeresponseauthentication", oChallengeResponseAuthentication },
135 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
136 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000137 { "kerberosauthentication", oUnsupported },
138 { "kerberostgtpassing", oUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000139 { "afstokenpassing", oUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000140#if defined(GSSAPI)
141 { "gssapiauthentication", oGssAuthentication },
Darren Tucker0efd1552003-08-26 11:49:55 +1000142 { "gssapidelegatecredentials", oGssDelegateCreds },
143#else
144 { "gssapiauthentication", oUnsupported },
145 { "gssapidelegatecredentials", oUnsupported },
146#endif
Ben Lindstrom4daea862002-06-09 20:04:02 +0000147 { "fallbacktorsh", oDeprecated },
148 { "usersh", oDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100149 { "identityfile", oIdentityFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100150 { "identityfile2", oIdentityFile }, /* alias */
Damien Millerbd394c32004-03-08 23:12:36 +1100151 { "identitiesonly", oIdentitiesOnly },
Damien Miller95def091999-11-25 00:26:21 +1100152 { "hostname", oHostName },
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000153 { "hostkeyalias", oHostKeyAlias },
Damien Miller95def091999-11-25 00:26:21 +1100154 { "proxycommand", oProxyCommand },
155 { "port", oPort },
156 { "cipher", oCipher },
Damien Miller78928792000-04-12 20:17:38 +1000157 { "ciphers", oCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000158 { "macs", oMacs },
Damien Miller78928792000-04-12 20:17:38 +1000159 { "protocol", oProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100160 { "remoteforward", oRemoteForward },
161 { "localforward", oLocalForward },
162 { "user", oUser },
163 { "host", oHost },
164 { "escapechar", oEscapeChar },
Damien Miller95def091999-11-25 00:26:21 +1100165 { "globalknownhostsfile", oGlobalKnownHostsFile },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000166 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
Damien Millereba71ba2000-04-29 23:57:08 +1000167 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000168 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100169 { "connectionattempts", oConnectionAttempts },
170 { "batchmode", oBatchMode },
171 { "checkhostip", oCheckHostIP },
172 { "stricthostkeychecking", oStrictHostKeyChecking },
173 { "compression", oCompression },
174 { "compressionlevel", oCompressionLevel },
Damien Miller12c150e2003-12-17 16:31:10 +1100175 { "tcpkeepalive", oTCPKeepAlive },
176 { "keepalive", oTCPKeepAlive }, /* obsolete */
Damien Miller95def091999-11-25 00:26:21 +1100177 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
Damien Miller95def091999-11-25 00:26:21 +1100178 { "loglevel", oLogLevel },
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000179 { "dynamicforward", oDynamicForward },
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000180 { "preferredauthentications", oPreferredAuthentications },
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000181 { "hostkeyalgorithms", oHostKeyAlgorithms },
Ben Lindstrome0f88042001-04-30 13:06:24 +0000182 { "bindaddress", oBindAddress },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000183#ifdef SMARTCARD
Ben Lindstromae996bf2001-08-06 21:27:53 +0000184 { "smartcarddevice", oSmartcardDevice },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000185#else
186 { "smartcarddevice", oUnsupported },
187#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100188 { "clearallforwardings", oClearAllForwardings },
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000189 { "enablesshkeysign", oEnableSSHKeysign },
Damien Miller37876e92003-05-15 10:19:46 +1000190 { "verifyhostkeydns", oVerifyHostKeyDNS },
Damien Miller9f0f5c62001-12-21 14:45:46 +1100191 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
Damien Millera5539d22003-04-09 20:50:06 +1000192 { "rekeylimit", oRekeyLimit },
Damien Millerb78d5eb2003-05-16 11:39:04 +1000193 { "connecttimeout", oConnectTimeout },
Damien Miller20a8f972003-05-18 20:50:30 +1000194 { "addressfamily", oAddressFamily },
Damien Miller509b0102003-12-17 16:33:10 +1100195 { "serveraliveinterval", oServerAliveInterval },
196 { "serveralivecountmax", oServerAliveCountMax },
Darren Tucker46bc0752004-05-02 22:11:30 +1000197 { "sendenv", oSendEnv },
Damien Miller0e220db2004-06-15 10:34:08 +1000198 { "controlpath", oControlPath },
199 { "controlmaster", oControlMaster },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000200 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100201};
202
Damien Miller5428f641999-11-25 11:54:57 +1100203/*
204 * Adds a local TCP/IP port forward to options. Never returns if there is an
205 * error.
206 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Damien Miller4af51302000-04-16 11:18:38 +1000208void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100209add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210{
Damien Miller95def091999-11-25 00:26:21 +1100211 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000212#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100213 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100214 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000215 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100216#endif
Damien Miller95def091999-11-25 00:26:21 +1100217 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
218 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
219 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100220
221 fwd->listen_host = (newfwd->listen_host == NULL) ?
222 NULL : xstrdup(newfwd->listen_host);
223 fwd->listen_port = newfwd->listen_port;
224 fwd->connect_host = xstrdup(newfwd->connect_host);
225 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226}
227
Damien Miller5428f641999-11-25 11:54:57 +1100228/*
229 * Adds a remote TCP/IP port forward to options. Never returns if there is
230 * an error.
231 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232
Damien Miller4af51302000-04-16 11:18:38 +1000233void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100234add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235{
Damien Miller95def091999-11-25 00:26:21 +1100236 Forward *fwd;
237 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
238 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100239 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100240 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100241
242 fwd->listen_host = (newfwd->listen_host == NULL) ?
243 NULL : xstrdup(newfwd->listen_host);
244 fwd->listen_port = newfwd->listen_port;
245 fwd->connect_host = xstrdup(newfwd->connect_host);
246 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247}
248
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000249static void
250clear_forwardings(Options *options)
251{
252 int i;
253
Damien Millerf91ee4c2005-03-01 21:24:33 +1100254 for (i = 0; i < options->num_local_forwards; i++) {
255 xfree(options->local_forwards[i].listen_host);
256 xfree(options->local_forwards[i].connect_host);
257 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000258 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100259 for (i = 0; i < options->num_remote_forwards; i++) {
260 xfree(options->remote_forwards[i].listen_host);
261 xfree(options->remote_forwards[i].connect_host);
262 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000263 options->num_remote_forwards = 0;
264}
265
Damien Miller5428f641999-11-25 11:54:57 +1100266/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000267 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100268 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller4af51302000-04-16 11:18:38 +1000270static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100271parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000273 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100276 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100277 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000279 error("%s: line %d: Bad configuration option: %s",
280 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100281 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282}
283
Damien Miller5428f641999-11-25 11:54:57 +1100284/*
285 * Processes a single option line as used in the configuration files. This
286 * only sets those values that have not already been set.
287 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100288#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289
Damien Miller2ccf6611999-11-15 15:25:10 +1100290int
291process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100292 char *line, const char *filename, int linenum,
293 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294{
Damien Millerf91ee4c2005-03-01 21:24:33 +1100295 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2, fwdarg[256];
Damien Milleraae6c611999-12-06 11:47:28 +1100296 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100297 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100298 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Millerc652cac2003-05-14 13:40:54 +1000300 /* Strip trailing whitespace */
301 for(len = strlen(line) - 1; len > 0; len--) {
302 if (strchr(WHITESPACE, line[len]) == NULL)
303 break;
304 line[len] = '\0';
305 }
306
Damien Millerbe484b52000-07-15 14:14:16 +1000307 s = line;
308 /* Get the keyword. (Each line is supposed to begin with a keyword). */
309 keyword = strdelim(&s);
310 /* Ignore leading whitespace. */
311 if (*keyword == '\0')
312 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000313 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100314 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Miller37023962000-07-11 17:31:38 +1000316 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317
Damien Miller95def091999-11-25 00:26:21 +1100318 switch (opcode) {
319 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100320 /* don't panic, but count bad options */
321 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100322 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000323 case oConnectTimeout:
324 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100325parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000326 arg = strdelim(&s);
327 if (!arg || *arg == '\0')
328 fatal("%s line %d: missing time value.",
329 filename, linenum);
330 if ((value = convtime(arg)) == -1)
331 fatal("%s line %d: invalid time value.",
332 filename, linenum);
333 if (*intptr == -1)
334 *intptr = value;
335 break;
336
Damien Miller95def091999-11-25 00:26:21 +1100337 case oForwardAgent:
338 intptr = &options->forward_agent;
339parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000340 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000341 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100342 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
343 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000344 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100345 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000346 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100347 value = 0;
348 else
349 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
350 if (*activep && *intptr == -1)
351 *intptr = value;
352 break;
353
354 case oForwardX11:
355 intptr = &options->forward_x11;
356 goto parse_flag;
357
Darren Tucker0a118da2003-10-15 15:54:32 +1000358 case oForwardX11Trusted:
359 intptr = &options->forward_x11_trusted;
360 goto parse_flag;
361
Damien Miller95def091999-11-25 00:26:21 +1100362 case oGatewayPorts:
363 intptr = &options->gateway_ports;
364 goto parse_flag;
365
366 case oUsePrivilegedPort:
367 intptr = &options->use_privileged_port;
368 goto parse_flag;
369
Damien Miller95def091999-11-25 00:26:21 +1100370 case oPasswordAuthentication:
371 intptr = &options->password_authentication;
372 goto parse_flag;
373
Damien Miller874d77b2000-10-14 16:23:11 +1100374 case oKbdInteractiveAuthentication:
375 intptr = &options->kbd_interactive_authentication;
376 goto parse_flag;
377
378 case oKbdInteractiveDevices:
379 charptr = &options->kbd_interactive_devices;
380 goto parse_string;
381
Damien Miller0bc1bd82000-11-13 22:57:25 +1100382 case oPubkeyAuthentication:
383 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000384 goto parse_flag;
385
Damien Miller95def091999-11-25 00:26:21 +1100386 case oRSAAuthentication:
387 intptr = &options->rsa_authentication;
388 goto parse_flag;
389
390 case oRhostsRSAAuthentication:
391 intptr = &options->rhosts_rsa_authentication;
392 goto parse_flag;
393
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000394 case oHostbasedAuthentication:
395 intptr = &options->hostbased_authentication;
396 goto parse_flag;
397
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000398 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000399 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100400 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000401
Darren Tucker0efd1552003-08-26 11:49:55 +1000402 case oGssAuthentication:
403 intptr = &options->gss_authentication;
404 goto parse_flag;
405
406 case oGssDelegateCreds:
407 intptr = &options->gss_deleg_creds;
408 goto parse_flag;
409
Damien Miller95def091999-11-25 00:26:21 +1100410 case oBatchMode:
411 intptr = &options->batch_mode;
412 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413
Damien Miller95def091999-11-25 00:26:21 +1100414 case oCheckHostIP:
415 intptr = &options->check_host_ip;
416 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417
Damien Miller37876e92003-05-15 10:19:46 +1000418 case oVerifyHostKeyDNS:
419 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100420 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000421
Damien Miller95def091999-11-25 00:26:21 +1100422 case oStrictHostKeyChecking:
423 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100424parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000425 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000426 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000427 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100428 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100429 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000430 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100431 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000432 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100433 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000434 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100435 value = 2;
436 else
437 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
438 if (*activep && *intptr == -1)
439 *intptr = value;
440 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Damien Miller95def091999-11-25 00:26:21 +1100442 case oCompression:
443 intptr = &options->compression;
444 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445
Damien Miller12c150e2003-12-17 16:31:10 +1100446 case oTCPKeepAlive:
447 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100448 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000449
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000450 case oNoHostAuthenticationForLocalhost:
451 intptr = &options->no_host_authentication_for_localhost;
452 goto parse_flag;
453
Damien Miller95def091999-11-25 00:26:21 +1100454 case oNumberOfPasswordPrompts:
455 intptr = &options->number_of_password_prompts;
456 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457
Damien Miller95def091999-11-25 00:26:21 +1100458 case oCompressionLevel:
459 intptr = &options->compression_level;
460 goto parse_int;
461
Damien Millera5539d22003-04-09 20:50:06 +1000462 case oRekeyLimit:
463 intptr = &options->rekey_limit;
464 arg = strdelim(&s);
465 if (!arg || *arg == '\0')
466 fatal("%.200s line %d: Missing argument.", filename, linenum);
467 if (arg[0] < '0' || arg[0] > '9')
468 fatal("%.200s line %d: Bad number.", filename, linenum);
469 value = strtol(arg, &endofnumber, 10);
470 if (arg == endofnumber)
471 fatal("%.200s line %d: Bad number.", filename, linenum);
472 switch (toupper(*endofnumber)) {
473 case 'K':
474 value *= 1<<10;
475 break;
476 case 'M':
477 value *= 1<<20;
478 break;
479 case 'G':
480 value *= 1<<30;
481 break;
482 }
483 if (*activep && *intptr == -1)
484 *intptr = value;
485 break;
486
Damien Miller95def091999-11-25 00:26:21 +1100487 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000488 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000489 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100490 fatal("%.200s line %d: Missing argument.", filename, linenum);
491 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100492 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000493 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100494 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100495 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100496 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000497 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000498 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100499 }
500 break;
501
Damien Millerd3a18572000-06-07 19:55:44 +1000502 case oXAuthLocation:
503 charptr=&options->xauth_location;
504 goto parse_string;
505
Damien Miller95def091999-11-25 00:26:21 +1100506 case oUser:
507 charptr = &options->user;
508parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000509 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000510 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100511 fatal("%.200s line %d: Missing argument.", filename, linenum);
512 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000513 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100514 break;
515
516 case oGlobalKnownHostsFile:
517 charptr = &options->system_hostfile;
518 goto parse_string;
519
520 case oUserKnownHostsFile:
521 charptr = &options->user_hostfile;
522 goto parse_string;
523
Damien Millereba71ba2000-04-29 23:57:08 +1000524 case oGlobalKnownHostsFile2:
525 charptr = &options->system_hostfile2;
526 goto parse_string;
527
528 case oUserKnownHostsFile2:
529 charptr = &options->user_hostfile2;
530 goto parse_string;
531
Damien Miller95def091999-11-25 00:26:21 +1100532 case oHostName:
533 charptr = &options->hostname;
534 goto parse_string;
535
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000536 case oHostKeyAlias:
537 charptr = &options->host_key_alias;
538 goto parse_string;
539
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000540 case oPreferredAuthentications:
541 charptr = &options->preferred_authentications;
542 goto parse_string;
543
Ben Lindstrome0f88042001-04-30 13:06:24 +0000544 case oBindAddress:
545 charptr = &options->bind_address;
546 goto parse_string;
547
Ben Lindstromae996bf2001-08-06 21:27:53 +0000548 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000549 charptr = &options->smartcard_device;
550 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000551
Damien Miller95def091999-11-25 00:26:21 +1100552 case oProxyCommand:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000553 if (s == NULL)
554 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100555 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100556 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100557 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100558 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100559 return 0;
560
561 case oPort:
562 intptr = &options->port;
563parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000564 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000565 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100566 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000567 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100568 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100569
570 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000571 value = strtol(arg, &endofnumber, 0);
572 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100573 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100574 if (*activep && *intptr == -1)
575 *intptr = value;
576 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller95def091999-11-25 00:26:21 +1100578 case oConnectionAttempts:
579 intptr = &options->connection_attempts;
580 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100581
Damien Miller95def091999-11-25 00:26:21 +1100582 case oCipher:
583 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000584 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000585 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000586 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000587 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100588 if (value == -1)
589 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100590 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100591 if (*activep && *intptr == -1)
592 *intptr = value;
593 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Damien Miller78928792000-04-12 20:17:38 +1000595 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000596 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000597 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000598 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000599 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000600 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100601 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000602 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000603 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000604 break;
605
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000606 case oMacs:
607 arg = strdelim(&s);
608 if (!arg || *arg == '\0')
609 fatal("%.200s line %d: Missing argument.", filename, linenum);
610 if (!mac_valid(arg))
611 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100612 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000613 if (*activep && options->macs == NULL)
614 options->macs = xstrdup(arg);
615 break;
616
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000617 case oHostKeyAlgorithms:
618 arg = strdelim(&s);
619 if (!arg || *arg == '\0')
620 fatal("%.200s line %d: Missing argument.", filename, linenum);
621 if (!key_names_valid2(arg))
622 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100623 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000624 if (*activep && options->hostkeyalgorithms == NULL)
625 options->hostkeyalgorithms = xstrdup(arg);
626 break;
627
Damien Miller78928792000-04-12 20:17:38 +1000628 case oProtocol:
629 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000630 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000631 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000632 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000633 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000634 if (value == SSH_PROTO_UNKNOWN)
635 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100636 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000637 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
638 *intptr = value;
639 break;
640
Damien Miller95def091999-11-25 00:26:21 +1100641 case oLogLevel:
642 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000643 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000644 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100645 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000646 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100647 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100648 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100649 *intptr = (LogLevel) value;
650 break;
651
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000652 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100653 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000654 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100655 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000656 fatal("%.200s line %d: Missing port argument.",
657 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100658 arg2 = strdelim(&s);
659 if (arg2 == NULL || *arg2 == '\0')
660 fatal("%.200s line %d: Missing target argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000661 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100662
663 /* construct a string for parse_forward */
664 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
665
666 if (parse_forward(&fwd, fwdarg) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000667 fatal("%.200s line %d: Bad forwarding specification.",
668 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100669
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000670 if (*activep) {
671 if (opcode == oLocalForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100672 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000673 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100674 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000675 }
Damien Miller95def091999-11-25 00:26:21 +1100676 break;
677
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000678 case oDynamicForward:
679 arg = strdelim(&s);
680 if (!arg || *arg == '\0')
681 fatal("%.200s line %d: Missing port argument.",
682 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100683 memset(&fwd, '\0', sizeof(fwd));
684 fwd.connect_host = "socks";
685 fwd.listen_host = hpdelim(&arg);
686 if (fwd.listen_host == NULL ||
687 strlen(fwd.listen_host) >= NI_MAXHOST)
688 fatal("%.200s line %d: Bad forwarding specification.",
689 filename, linenum);
690 if (arg) {
691 fwd.listen_port = a2port(arg);
692 fwd.listen_host = cleanhostname(fwd.listen_host);
693 } else {
694 fwd.listen_port = a2port(fwd.listen_host);
695 fwd.listen_host = "";
696 }
697 if (fwd.listen_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000698 fatal("%.200s line %d: Badly formatted port number.",
699 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000700 if (*activep)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100701 add_local_forward(options, &fwd);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000702 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000703
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000704 case oClearAllForwardings:
705 intptr = &options->clear_forwardings;
706 goto parse_flag;
707
Damien Miller95def091999-11-25 00:26:21 +1100708 case oHost:
709 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000710 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000711 if (match_pattern(host, arg)) {
712 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100713 *activep = 1;
714 break;
715 }
Damien Millerbe484b52000-07-15 14:14:16 +1000716 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100717 return 0;
718
719 case oEscapeChar:
720 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000721 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000722 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100723 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000724 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000725 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
726 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000727 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000728 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000729 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000730 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100731 else {
732 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100733 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100734 /* NOTREACHED */
735 value = 0; /* Avoid compiler warning. */
736 }
737 if (*activep && *intptr == -1)
738 *intptr = value;
739 break;
740
Damien Miller20a8f972003-05-18 20:50:30 +1000741 case oAddressFamily:
742 arg = strdelim(&s);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000743 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000744 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000745 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000746 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000747 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000748 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000749 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000750 else
751 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000752 if (*activep && *intptr == -1)
753 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000754 break;
755
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000756 case oEnableSSHKeysign:
757 intptr = &options->enable_ssh_keysign;
758 goto parse_flag;
759
Damien Millerbd394c32004-03-08 23:12:36 +1100760 case oIdentitiesOnly:
761 intptr = &options->identities_only;
762 goto parse_flag;
763
Damien Miller509b0102003-12-17 16:33:10 +1100764 case oServerAliveInterval:
765 intptr = &options->server_alive_interval;
766 goto parse_time;
767
768 case oServerAliveCountMax:
769 intptr = &options->server_alive_count_max;
770 goto parse_int;
771
Darren Tucker46bc0752004-05-02 22:11:30 +1000772 case oSendEnv:
773 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
774 if (strchr(arg, '=') != NULL)
775 fatal("%s line %d: Invalid environment name.",
776 filename, linenum);
777 if (options->num_send_env >= MAX_SEND_ENV)
778 fatal("%s line %d: too many send env.",
779 filename, linenum);
780 options->send_env[options->num_send_env++] =
781 xstrdup(arg);
782 }
783 break;
784
Damien Miller0e220db2004-06-15 10:34:08 +1000785 case oControlPath:
786 charptr = &options->control_path;
787 goto parse_string;
788
789 case oControlMaster:
790 intptr = &options->control_master;
Damien Miller23f07702004-06-18 01:19:03 +1000791 goto parse_yesnoask;
Damien Miller0e220db2004-06-15 10:34:08 +1000792
Ben Lindstrom4daea862002-06-09 20:04:02 +0000793 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000794 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000795 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000796 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000797
Damien Millerf9b3feb2003-05-16 11:38:32 +1000798 case oUnsupported:
799 error("%s line %d: Unsupported option \"%s\"",
800 filename, linenum, keyword);
801 return 0;
802
Damien Miller95def091999-11-25 00:26:21 +1100803 default:
804 fatal("process_config_line: Unimplemented opcode %d", opcode);
805 }
806
807 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000808 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000809 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100810 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000811 }
Damien Miller95def091999-11-25 00:26:21 +1100812 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000813}
814
815
Damien Miller5428f641999-11-25 11:54:57 +1100816/*
817 * Reads the config file and modifies the options accordingly. Options
818 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000819 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100820 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000821
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000822int
Darren Tuckerfc959702004-07-17 16:12:08 +1000823read_config_file(const char *filename, const char *host, Options *options,
Damien Miller57a44762004-04-20 20:11:57 +1000824 int checkperm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000825{
Damien Miller95def091999-11-25 00:26:21 +1100826 FILE *f;
827 char line[1024];
828 int active, linenum;
829 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Damien Miller95def091999-11-25 00:26:21 +1100831 /* Open the file. */
Damien Miller57a44762004-04-20 20:11:57 +1000832 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000833 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834
Damien Miller57a44762004-04-20 20:11:57 +1000835 if (checkperm) {
836 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +1000837
Damien Miller33793852004-06-15 10:27:55 +1000838 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +1000839 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +1000840 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +1000841 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +1000842 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +1000843 }
844
Damien Miller95def091999-11-25 00:26:21 +1100845 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846
Damien Miller5428f641999-11-25 11:54:57 +1100847 /*
848 * Mark that we are now processing the options. This flag is turned
849 * on/off by Host specifications.
850 */
Damien Miller95def091999-11-25 00:26:21 +1100851 active = 1;
852 linenum = 0;
853 while (fgets(line, sizeof(line), f)) {
854 /* Update line number counter. */
855 linenum++;
856 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
857 bad_options++;
858 }
859 fclose(f);
860 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000861 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100862 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000863 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864}
865
Damien Miller5428f641999-11-25 11:54:57 +1100866/*
867 * Initializes options to special values that indicate that they have not yet
868 * been set. Read_config_file will only set options with this value. Options
869 * are processed in the following order: command line, user config file,
870 * system config file. Last, fill_default_options is called.
871 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000872
Damien Miller4af51302000-04-16 11:18:38 +1000873void
Damien Miller95def091999-11-25 00:26:21 +1100874initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000875{
Damien Miller95def091999-11-25 00:26:21 +1100876 memset(options, 'X', sizeof(*options));
877 options->forward_agent = -1;
878 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +1000879 options->forward_x11_trusted = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000880 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100881 options->gateway_ports = -1;
882 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +1100883 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100884 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000885 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000886 options->gss_authentication = -1;
887 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100888 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100889 options->kbd_interactive_authentication = -1;
890 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100891 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000892 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100893 options->batch_mode = -1;
894 options->check_host_ip = -1;
895 options->strict_host_key_checking = -1;
896 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +1100897 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +1100898 options->compression_level = -1;
899 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000900 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +1100901 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000902 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +1100903 options->number_of_password_prompts = -1;
904 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000905 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000906 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000907 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000908 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100909 options->num_identity_files = 0;
910 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000911 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100912 options->proxy_command = NULL;
913 options->user = NULL;
914 options->escape_char = -1;
915 options->system_hostfile = NULL;
916 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000917 options->system_hostfile2 = NULL;
918 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100919 options->num_local_forwards = 0;
920 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000921 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100922 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000923 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000924 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000925 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000926 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000927 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +1100928 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000929 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000930 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +1100931 options->server_alive_interval = -1;
932 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +1000933 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000934 options->control_path = NULL;
935 options->control_master = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000936}
937
Damien Miller5428f641999-11-25 11:54:57 +1100938/*
939 * Called after processing other sources of option data, this fills those
940 * options for which no value has been specified with their default values.
941 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000942
Damien Miller4af51302000-04-16 11:18:38 +1000943void
Damien Miller95def091999-11-25 00:26:21 +1100944fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000946 int len;
947
Damien Miller95def091999-11-25 00:26:21 +1100948 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000949 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100950 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100951 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +1000952 if (options->forward_x11_trusted == -1)
953 options->forward_x11_trusted = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000954 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000955 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100956 if (options->gateway_ports == -1)
957 options->gateway_ports = 0;
958 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000959 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100960 if (options->rsa_authentication == -1)
961 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100962 if (options->pubkey_authentication == -1)
963 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000964 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000965 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000966 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +1000967 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000968 if (options->gss_deleg_creds == -1)
969 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100970 if (options->password_authentication == -1)
971 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100972 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000973 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100974 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000975 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000976 if (options->hostbased_authentication == -1)
977 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100978 if (options->batch_mode == -1)
979 options->batch_mode = 0;
980 if (options->check_host_ip == -1)
981 options->check_host_ip = 1;
982 if (options->strict_host_key_checking == -1)
983 options->strict_host_key_checking = 2; /* 2 is default */
984 if (options->compression == -1)
985 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +1100986 if (options->tcp_keep_alive == -1)
987 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +1100988 if (options->compression_level == -1)
989 options->compression_level = 6;
990 if (options->port == -1)
991 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000992 if (options->address_family == -1)
993 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +1100994 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000995 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100996 if (options->number_of_password_prompts == -1)
997 options->number_of_password_prompts = 3;
998 /* Selected in ssh_login(). */
999 if (options->cipher == -1)
1000 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001001 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001002 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001003 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001004 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +00001005 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001006 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001007 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001008 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001009 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001010 xmalloc(len);
1011 snprintf(options->identity_files[options->num_identity_files++],
1012 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001013 }
1014 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +00001015 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
1016 options->identity_files[options->num_identity_files] =
1017 xmalloc(len);
1018 snprintf(options->identity_files[options->num_identity_files++],
1019 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
1020
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001021 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001022 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001023 xmalloc(len);
1024 snprintf(options->identity_files[options->num_identity_files++],
1025 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001026 }
Damien Millereba71ba2000-04-29 23:57:08 +10001027 }
Damien Miller95def091999-11-25 00:26:21 +11001028 if (options->escape_char == -1)
1029 options->escape_char = '~';
1030 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001031 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +11001032 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001033 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +10001034 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001035 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +10001036 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001037 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +11001038 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001039 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001040 if (options->clear_forwardings == 1)
1041 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001042 if (options->no_host_authentication_for_localhost == - 1)
1043 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001044 if (options->identities_only == -1)
1045 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001046 if (options->enable_ssh_keysign == -1)
1047 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001048 if (options->rekey_limit == -1)
1049 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001050 if (options->verify_host_key_dns == -1)
1051 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001052 if (options->server_alive_interval == -1)
1053 options->server_alive_interval = 0;
1054 if (options->server_alive_count_max == -1)
1055 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001056 if (options->control_master == -1)
1057 options->control_master = 0;
Damien Miller95def091999-11-25 00:26:21 +11001058 /* options->proxy_command should not be set by default */
1059 /* options->user will be set in the main program if appropriate */
1060 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001061 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001062 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001063}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001064
1065/*
1066 * parse_forward
1067 * parses a string containing a port forwarding specification of the form:
1068 * [listenhost:]listenport:connecthost:connectport
1069 * returns number of arguments parsed or zero on error
1070 */
1071int
1072parse_forward(Forward *fwd, const char *fwdspec)
1073{
1074 int i;
1075 char *p, *cp, *fwdarg[4];
1076
1077 memset(fwd, '\0', sizeof(*fwd));
1078
1079 cp = p = xstrdup(fwdspec);
1080
1081 /* skip leading spaces */
1082 while (*cp && isspace(*cp))
1083 cp++;
1084
1085 for (i = 0; i < 4; ++i)
1086 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1087 break;
1088
1089 /* Check for trailing garbage in 4-arg case*/
1090 if (cp != NULL)
1091 i = 0; /* failure */
1092
1093 switch (i) {
1094 case 3:
1095 fwd->listen_host = NULL;
1096 fwd->listen_port = a2port(fwdarg[0]);
1097 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1098 fwd->connect_port = a2port(fwdarg[2]);
1099 break;
1100
1101 case 4:
1102 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1103 fwd->listen_port = a2port(fwdarg[1]);
1104 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1105 fwd->connect_port = a2port(fwdarg[3]);
1106 break;
1107 default:
1108 i = 0; /* failure */
1109 }
1110
1111 xfree(p);
1112
1113 if (fwd->listen_port == 0 && fwd->connect_port == 0)
1114 goto fail_free;
1115
1116 if (fwd->connect_host != NULL &&
1117 strlen(fwd->connect_host) >= NI_MAXHOST)
1118 goto fail_free;
1119
1120 return (i);
1121
1122 fail_free:
1123 if (fwd->connect_host != NULL)
1124 xfree(fwd->connect_host);
1125 if (fwd->listen_host != NULL)
1126 xfree(fwd->listen_host);
1127 return (0);
1128}