blob: 8ace1bbd454233996e96d48ca4aff7677e329d9c [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"
Darren Tucker47eede72005-03-14 23:08:12 +110015RCSID("$OpenBSD: readconf.c,v 1.139 2005/03/10 22:01:05 deraadt 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 Millere1776152005-03-01 21:47:37 +1100109 oSendEnv, oControlPath, oControlMaster, oHashKnownHosts,
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 },
Damien Millere1776152005-03-01 21:47:37 +1100200 { "hashknownhosts", oHashKnownHosts },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000201 { NULL, oBadOption }
Damien Miller5ce662a1999-11-11 17:57:39 +1100202};
203
Damien Miller5428f641999-11-25 11:54:57 +1100204/*
205 * Adds a local TCP/IP port forward to options. Never returns if there is an
206 * error.
207 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Damien Miller4af51302000-04-16 11:18:38 +1000209void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100210add_local_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211{
Damien Miller95def091999-11-25 00:26:21 +1100212 Forward *fwd;
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000213#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Miller95def091999-11-25 00:26:21 +1100214 extern uid_t original_real_uid;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100215 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000216 fatal("Privileged ports can only be forwarded by root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100217#endif
Damien Miller95def091999-11-25 00:26:21 +1100218 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
219 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
220 fwd = &options->local_forwards[options->num_local_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100221
222 fwd->listen_host = (newfwd->listen_host == NULL) ?
223 NULL : xstrdup(newfwd->listen_host);
224 fwd->listen_port = newfwd->listen_port;
225 fwd->connect_host = xstrdup(newfwd->connect_host);
226 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Miller5428f641999-11-25 11:54:57 +1100229/*
230 * Adds a remote TCP/IP port forward to options. Never returns if there is
231 * an error.
232 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller4af51302000-04-16 11:18:38 +1000234void
Damien Millerf91ee4c2005-03-01 21:24:33 +1100235add_remote_forward(Options *options, const Forward *newfwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Damien Miller95def091999-11-25 00:26:21 +1100237 Forward *fwd;
238 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
239 fatal("Too many remote forwards (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100240 SSH_MAX_FORWARDS_PER_DIRECTION);
Damien Miller95def091999-11-25 00:26:21 +1100241 fwd = &options->remote_forwards[options->num_remote_forwards++];
Damien Millerf91ee4c2005-03-01 21:24:33 +1100242
243 fwd->listen_host = (newfwd->listen_host == NULL) ?
244 NULL : xstrdup(newfwd->listen_host);
245 fwd->listen_port = newfwd->listen_port;
246 fwd->connect_host = xstrdup(newfwd->connect_host);
247 fwd->connect_port = newfwd->connect_port;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248}
249
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000250static void
251clear_forwardings(Options *options)
252{
253 int i;
254
Damien Millerf91ee4c2005-03-01 21:24:33 +1100255 for (i = 0; i < options->num_local_forwards; i++) {
Darren Tucker1d55ca72005-03-14 22:58:40 +1100256 if (options->local_forwards[i].listen_host != NULL)
257 xfree(options->local_forwards[i].listen_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100258 xfree(options->local_forwards[i].connect_host);
259 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000260 options->num_local_forwards = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100261 for (i = 0; i < options->num_remote_forwards; i++) {
Darren Tucker1d55ca72005-03-14 22:58:40 +1100262 if (options->remote_forwards[i].listen_host != NULL)
263 xfree(options->remote_forwards[i].listen_host);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100264 xfree(options->remote_forwards[i].connect_host);
265 }
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000266 options->num_remote_forwards = 0;
267}
268
Damien Miller5428f641999-11-25 11:54:57 +1100269/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000270 * Returns the number of the token pointed to by cp or oBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100271 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller4af51302000-04-16 11:18:38 +1000273static OpCodes
Damien Miller95def091999-11-25 00:26:21 +1100274parse_token(const char *cp, const char *filename, int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000276 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller95def091999-11-25 00:26:21 +1100278 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100279 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100280 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000282 error("%s: line %d: Bad configuration option: %s",
283 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100284 return oBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285}
286
Damien Miller5428f641999-11-25 11:54:57 +1100287/*
288 * Processes a single option line as used in the configuration files. This
289 * only sets those values that have not already been set.
290 */
Damien Miller61f08ac2003-02-24 11:56:27 +1100291#define WHITESPACE " \t\r\n"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller2ccf6611999-11-15 15:25:10 +1100293int
294process_config_line(Options *options, const char *host,
Damien Miller95def091999-11-25 00:26:21 +1100295 char *line, const char *filename, int linenum,
296 int *activep)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297{
Damien Millerf91ee4c2005-03-01 21:24:33 +1100298 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2, fwdarg[256];
Damien Milleraae6c611999-12-06 11:47:28 +1100299 int opcode, *intptr, value;
Damien Miller61f08ac2003-02-24 11:56:27 +1100300 size_t len;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100301 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Millerc652cac2003-05-14 13:40:54 +1000303 /* Strip trailing whitespace */
Darren Tucker47eede72005-03-14 23:08:12 +1100304 for (len = strlen(line) - 1; len > 0; len--) {
Damien Millerc652cac2003-05-14 13:40:54 +1000305 if (strchr(WHITESPACE, line[len]) == NULL)
306 break;
307 line[len] = '\0';
308 }
309
Damien Millerbe484b52000-07-15 14:14:16 +1000310 s = line;
311 /* Get the keyword. (Each line is supposed to begin with a keyword). */
312 keyword = strdelim(&s);
313 /* Ignore leading whitespace. */
314 if (*keyword == '\0')
315 keyword = strdelim(&s);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000316 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
Damien Miller95def091999-11-25 00:26:21 +1100317 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller37023962000-07-11 17:31:38 +1000319 opcode = parse_token(keyword, filename, linenum);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320
Damien Miller95def091999-11-25 00:26:21 +1100321 switch (opcode) {
322 case oBadOption:
Damien Miller5428f641999-11-25 11:54:57 +1100323 /* don't panic, but count bad options */
324 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100325 /* NOTREACHED */
Damien Millerb78d5eb2003-05-16 11:39:04 +1000326 case oConnectTimeout:
327 intptr = &options->connection_timeout;
Damien Miller509b0102003-12-17 16:33:10 +1100328parse_time:
Damien Millerb78d5eb2003-05-16 11:39:04 +1000329 arg = strdelim(&s);
330 if (!arg || *arg == '\0')
331 fatal("%s line %d: missing time value.",
332 filename, linenum);
333 if ((value = convtime(arg)) == -1)
334 fatal("%s line %d: invalid time value.",
335 filename, linenum);
336 if (*intptr == -1)
337 *intptr = value;
338 break;
339
Damien Miller95def091999-11-25 00:26:21 +1100340 case oForwardAgent:
341 intptr = &options->forward_agent;
342parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000343 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000344 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100345 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
346 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000347 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100348 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000349 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100350 value = 0;
351 else
352 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
353 if (*activep && *intptr == -1)
354 *intptr = value;
355 break;
356
357 case oForwardX11:
358 intptr = &options->forward_x11;
359 goto parse_flag;
360
Darren Tucker0a118da2003-10-15 15:54:32 +1000361 case oForwardX11Trusted:
362 intptr = &options->forward_x11_trusted;
363 goto parse_flag;
364
Damien Miller95def091999-11-25 00:26:21 +1100365 case oGatewayPorts:
366 intptr = &options->gateway_ports;
367 goto parse_flag;
368
369 case oUsePrivilegedPort:
370 intptr = &options->use_privileged_port;
371 goto parse_flag;
372
Damien Miller95def091999-11-25 00:26:21 +1100373 case oPasswordAuthentication:
374 intptr = &options->password_authentication;
375 goto parse_flag;
376
Damien Miller874d77b2000-10-14 16:23:11 +1100377 case oKbdInteractiveAuthentication:
378 intptr = &options->kbd_interactive_authentication;
379 goto parse_flag;
380
381 case oKbdInteractiveDevices:
382 charptr = &options->kbd_interactive_devices;
383 goto parse_string;
384
Damien Miller0bc1bd82000-11-13 22:57:25 +1100385 case oPubkeyAuthentication:
386 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000387 goto parse_flag;
388
Damien Miller95def091999-11-25 00:26:21 +1100389 case oRSAAuthentication:
390 intptr = &options->rsa_authentication;
391 goto parse_flag;
392
393 case oRhostsRSAAuthentication:
394 intptr = &options->rhosts_rsa_authentication;
395 goto parse_flag;
396
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000397 case oHostbasedAuthentication:
398 intptr = &options->hostbased_authentication;
399 goto parse_flag;
400
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000401 case oChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000402 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100403 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000404
Darren Tucker0efd1552003-08-26 11:49:55 +1000405 case oGssAuthentication:
406 intptr = &options->gss_authentication;
407 goto parse_flag;
408
409 case oGssDelegateCreds:
410 intptr = &options->gss_deleg_creds;
411 goto parse_flag;
412
Damien Miller95def091999-11-25 00:26:21 +1100413 case oBatchMode:
414 intptr = &options->batch_mode;
415 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller95def091999-11-25 00:26:21 +1100417 case oCheckHostIP:
418 intptr = &options->check_host_ip;
419 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420
Damien Miller37876e92003-05-15 10:19:46 +1000421 case oVerifyHostKeyDNS:
422 intptr = &options->verify_host_key_dns;
Damien Miller150b5572003-11-17 21:19:29 +1100423 goto parse_yesnoask;
Damien Miller37876e92003-05-15 10:19:46 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 case oStrictHostKeyChecking:
426 intptr = &options->strict_host_key_checking;
Damien Miller150b5572003-11-17 21:19:29 +1100427parse_yesnoask:
Damien Millerbe484b52000-07-15 14:14:16 +1000428 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000429 if (!arg || *arg == '\0')
Ben Lindstrom5ed8acd2001-01-29 08:00:54 +0000430 fatal("%.200s line %d: Missing yes/no/ask argument.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100431 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100432 value = 0; /* To avoid compiler warning... */
Damien Miller37023962000-07-11 17:31:38 +1000433 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100434 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000435 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100436 value = 0;
Damien Miller37023962000-07-11 17:31:38 +1000437 else if (strcmp(arg, "ask") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100438 value = 2;
439 else
440 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
441 if (*activep && *intptr == -1)
442 *intptr = value;
443 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444
Damien Miller95def091999-11-25 00:26:21 +1100445 case oCompression:
446 intptr = &options->compression;
447 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448
Damien Miller12c150e2003-12-17 16:31:10 +1100449 case oTCPKeepAlive:
450 intptr = &options->tcp_keep_alive;
Damien Miller95def091999-11-25 00:26:21 +1100451 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000453 case oNoHostAuthenticationForLocalhost:
454 intptr = &options->no_host_authentication_for_localhost;
455 goto parse_flag;
456
Damien Miller95def091999-11-25 00:26:21 +1100457 case oNumberOfPasswordPrompts:
458 intptr = &options->number_of_password_prompts;
459 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460
Damien Miller95def091999-11-25 00:26:21 +1100461 case oCompressionLevel:
462 intptr = &options->compression_level;
463 goto parse_int;
464
Damien Millera5539d22003-04-09 20:50:06 +1000465 case oRekeyLimit:
466 intptr = &options->rekey_limit;
467 arg = strdelim(&s);
468 if (!arg || *arg == '\0')
469 fatal("%.200s line %d: Missing argument.", filename, linenum);
470 if (arg[0] < '0' || arg[0] > '9')
471 fatal("%.200s line %d: Bad number.", filename, linenum);
472 value = strtol(arg, &endofnumber, 10);
473 if (arg == endofnumber)
474 fatal("%.200s line %d: Bad number.", filename, linenum);
475 switch (toupper(*endofnumber)) {
476 case 'K':
477 value *= 1<<10;
478 break;
479 case 'M':
480 value *= 1<<20;
481 break;
482 case 'G':
483 value *= 1<<30;
484 break;
485 }
486 if (*activep && *intptr == -1)
487 *intptr = value;
488 break;
489
Damien Miller95def091999-11-25 00:26:21 +1100490 case oIdentityFile:
Damien Millerbe484b52000-07-15 14:14:16 +1000491 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000492 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100493 fatal("%.200s line %d: Missing argument.", filename, linenum);
494 if (*activep) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100495 intptr = &options->num_identity_files;
Damien Millereba71ba2000-04-29 23:57:08 +1000496 if (*intptr >= SSH_MAX_IDENTITY_FILES)
Damien Miller95def091999-11-25 00:26:21 +1100497 fatal("%.200s line %d: Too many identity files specified (max %d).",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100498 filename, linenum, SSH_MAX_IDENTITY_FILES);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100499 charptr = &options->identity_files[*intptr];
Damien Miller37023962000-07-11 17:31:38 +1000500 *charptr = xstrdup(arg);
Damien Millereba71ba2000-04-29 23:57:08 +1000501 *intptr = *intptr + 1;
Damien Miller95def091999-11-25 00:26:21 +1100502 }
503 break;
504
Damien Millerd3a18572000-06-07 19:55:44 +1000505 case oXAuthLocation:
506 charptr=&options->xauth_location;
507 goto parse_string;
508
Damien Miller95def091999-11-25 00:26:21 +1100509 case oUser:
510 charptr = &options->user;
511parse_string:
Damien Millerbe484b52000-07-15 14:14:16 +1000512 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000513 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100514 fatal("%.200s line %d: Missing argument.", filename, linenum);
515 if (*activep && *charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000516 *charptr = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100517 break;
518
519 case oGlobalKnownHostsFile:
520 charptr = &options->system_hostfile;
521 goto parse_string;
522
523 case oUserKnownHostsFile:
524 charptr = &options->user_hostfile;
525 goto parse_string;
526
Damien Millereba71ba2000-04-29 23:57:08 +1000527 case oGlobalKnownHostsFile2:
528 charptr = &options->system_hostfile2;
529 goto parse_string;
530
531 case oUserKnownHostsFile2:
532 charptr = &options->user_hostfile2;
533 goto parse_string;
534
Damien Miller95def091999-11-25 00:26:21 +1100535 case oHostName:
536 charptr = &options->hostname;
537 goto parse_string;
538
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000539 case oHostKeyAlias:
540 charptr = &options->host_key_alias;
541 goto parse_string;
542
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000543 case oPreferredAuthentications:
544 charptr = &options->preferred_authentications;
545 goto parse_string;
546
Ben Lindstrome0f88042001-04-30 13:06:24 +0000547 case oBindAddress:
548 charptr = &options->bind_address;
549 goto parse_string;
550
Ben Lindstromae996bf2001-08-06 21:27:53 +0000551 case oSmartcardDevice:
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000552 charptr = &options->smartcard_device;
553 goto parse_string;
Ben Lindstromae996bf2001-08-06 21:27:53 +0000554
Damien Miller95def091999-11-25 00:26:21 +1100555 case oProxyCommand:
Darren Tuckera99c1b72003-06-28 12:40:12 +1000556 if (s == NULL)
557 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100558 charptr = &options->proxy_command;
Damien Miller61f08ac2003-02-24 11:56:27 +1100559 len = strspn(s, WHITESPACE "=");
Damien Miller95def091999-11-25 00:26:21 +1100560 if (*activep && *charptr == NULL)
Damien Miller61f08ac2003-02-24 11:56:27 +1100561 *charptr = xstrdup(s + len);
Damien Miller95def091999-11-25 00:26:21 +1100562 return 0;
563
564 case oPort:
565 intptr = &options->port;
566parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000567 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000568 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100569 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000570 if (arg[0] < '0' || arg[0] > '9')
Damien Miller95def091999-11-25 00:26:21 +1100571 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller5428f641999-11-25 11:54:57 +1100572
573 /* Octal, decimal, or hex format? */
Damien Miller37023962000-07-11 17:31:38 +1000574 value = strtol(arg, &endofnumber, 0);
575 if (arg == endofnumber)
Damien Miller5428f641999-11-25 11:54:57 +1100576 fatal("%.200s line %d: Bad number.", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100577 if (*activep && *intptr == -1)
578 *intptr = value;
579 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Damien Miller95def091999-11-25 00:26:21 +1100581 case oConnectionAttempts:
582 intptr = &options->connection_attempts;
583 goto parse_int;
Damien Miller5ce662a1999-11-11 17:57:39 +1100584
Damien Miller95def091999-11-25 00:26:21 +1100585 case oCipher:
586 intptr = &options->cipher;
Damien Millerbe484b52000-07-15 14:14:16 +1000587 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000588 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000589 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000590 value = cipher_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100591 if (value == -1)
592 fatal("%.200s line %d: Bad cipher '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100593 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100594 if (*activep && *intptr == -1)
595 *intptr = value;
596 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller78928792000-04-12 20:17:38 +1000598 case oCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000599 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000600 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000601 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000602 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000603 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100604 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000605 if (*activep && options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000606 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000607 break;
608
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000609 case oMacs:
610 arg = strdelim(&s);
611 if (!arg || *arg == '\0')
612 fatal("%.200s line %d: Missing argument.", filename, linenum);
613 if (!mac_valid(arg))
614 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100615 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000616 if (*activep && options->macs == NULL)
617 options->macs = xstrdup(arg);
618 break;
619
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000620 case oHostKeyAlgorithms:
621 arg = strdelim(&s);
622 if (!arg || *arg == '\0')
623 fatal("%.200s line %d: Missing argument.", filename, linenum);
624 if (!key_names_valid2(arg))
625 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100626 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000627 if (*activep && options->hostkeyalgorithms == NULL)
628 options->hostkeyalgorithms = xstrdup(arg);
629 break;
630
Damien Miller78928792000-04-12 20:17:38 +1000631 case oProtocol:
632 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000633 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000634 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000635 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000636 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000637 if (value == SSH_PROTO_UNKNOWN)
638 fatal("%.200s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100639 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000640 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
641 *intptr = value;
642 break;
643
Damien Miller95def091999-11-25 00:26:21 +1100644 case oLogLevel:
645 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000646 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000647 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100648 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000649 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100650 filename, linenum, arg ? arg : "<NONE>");
Damien Millerfcd93202002-02-05 12:26:34 +1100651 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100652 *intptr = (LogLevel) value;
653 break;
654
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000655 case oLocalForward:
Damien Miller95def091999-11-25 00:26:21 +1100656 case oRemoteForward:
Damien Millerbe484b52000-07-15 14:14:16 +1000657 arg = strdelim(&s);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100658 if (arg == NULL || *arg == '\0')
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000659 fatal("%.200s line %d: Missing port argument.",
660 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100661 arg2 = strdelim(&s);
662 if (arg2 == NULL || *arg2 == '\0')
663 fatal("%.200s line %d: Missing target argument.",
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000664 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100665
666 /* construct a string for parse_forward */
667 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
668
669 if (parse_forward(&fwd, fwdarg) == 0)
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000670 fatal("%.200s line %d: Bad forwarding specification.",
671 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100672
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000673 if (*activep) {
674 if (opcode == oLocalForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100675 add_local_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000676 else if (opcode == oRemoteForward)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100677 add_remote_forward(options, &fwd);
Ben Lindstrom62c25a42001-09-12 18:01:59 +0000678 }
Damien Miller95def091999-11-25 00:26:21 +1100679 break;
680
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000681 case oDynamicForward:
682 arg = strdelim(&s);
683 if (!arg || *arg == '\0')
684 fatal("%.200s line %d: Missing port argument.",
685 filename, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100686 memset(&fwd, '\0', sizeof(fwd));
687 fwd.connect_host = "socks";
688 fwd.listen_host = hpdelim(&arg);
689 if (fwd.listen_host == NULL ||
690 strlen(fwd.listen_host) >= NI_MAXHOST)
691 fatal("%.200s line %d: Bad forwarding specification.",
692 filename, linenum);
693 if (arg) {
694 fwd.listen_port = a2port(arg);
695 fwd.listen_host = cleanhostname(fwd.listen_host);
696 } else {
697 fwd.listen_port = a2port(fwd.listen_host);
698 fwd.listen_host = "";
699 }
700 if (fwd.listen_port == 0)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000701 fatal("%.200s line %d: Badly formatted port number.",
702 filename, linenum);
Ben Lindstrom525a0932001-09-12 17:35:27 +0000703 if (*activep)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100704 add_local_forward(options, &fwd);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000705 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000706
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000707 case oClearAllForwardings:
708 intptr = &options->clear_forwardings;
709 goto parse_flag;
710
Damien Miller95def091999-11-25 00:26:21 +1100711 case oHost:
712 *activep = 0;
Damien Millerbe484b52000-07-15 14:14:16 +1000713 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
Damien Miller37023962000-07-11 17:31:38 +1000714 if (match_pattern(host, arg)) {
715 debug("Applying options for %.100s", arg);
Damien Miller95def091999-11-25 00:26:21 +1100716 *activep = 1;
717 break;
718 }
Damien Millerbe484b52000-07-15 14:14:16 +1000719 /* Avoid garbage check below, as strdelim is done. */
Damien Miller95def091999-11-25 00:26:21 +1100720 return 0;
721
722 case oEscapeChar:
723 intptr = &options->escape_char;
Damien Millerbe484b52000-07-15 14:14:16 +1000724 arg = strdelim(&s);
Damien Miller37023962000-07-11 17:31:38 +1000725 if (!arg || *arg == '\0')
Damien Miller95def091999-11-25 00:26:21 +1100726 fatal("%.200s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000727 if (arg[0] == '^' && arg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000728 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
729 value = (u_char) arg[1] & 31;
Damien Miller37023962000-07-11 17:31:38 +1000730 else if (strlen(arg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000731 value = (u_char) arg[0];
Damien Miller37023962000-07-11 17:31:38 +1000732 else if (strcmp(arg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000733 value = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100734 else {
735 fatal("%.200s line %d: Bad escape character.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100736 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100737 /* NOTREACHED */
738 value = 0; /* Avoid compiler warning. */
739 }
740 if (*activep && *intptr == -1)
741 *intptr = value;
742 break;
743
Damien Miller20a8f972003-05-18 20:50:30 +1000744 case oAddressFamily:
745 arg = strdelim(&s);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000746 intptr = &options->address_family;
Damien Miller20a8f972003-05-18 20:50:30 +1000747 if (strcasecmp(arg, "inet") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000748 value = AF_INET;
Damien Miller20a8f972003-05-18 20:50:30 +1000749 else if (strcasecmp(arg, "inet6") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000750 value = AF_INET6;
Damien Miller20a8f972003-05-18 20:50:30 +1000751 else if (strcasecmp(arg, "any") == 0)
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000752 value = AF_UNSPEC;
Damien Miller20a8f972003-05-18 20:50:30 +1000753 else
754 fatal("Unsupported AddressFamily \"%s\"", arg);
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000755 if (*activep && *intptr == -1)
756 *intptr = value;
Damien Miller20a8f972003-05-18 20:50:30 +1000757 break;
758
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000759 case oEnableSSHKeysign:
760 intptr = &options->enable_ssh_keysign;
761 goto parse_flag;
762
Damien Millerbd394c32004-03-08 23:12:36 +1100763 case oIdentitiesOnly:
764 intptr = &options->identities_only;
765 goto parse_flag;
766
Damien Miller509b0102003-12-17 16:33:10 +1100767 case oServerAliveInterval:
768 intptr = &options->server_alive_interval;
769 goto parse_time;
770
771 case oServerAliveCountMax:
772 intptr = &options->server_alive_count_max;
773 goto parse_int;
774
Darren Tucker46bc0752004-05-02 22:11:30 +1000775 case oSendEnv:
776 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
777 if (strchr(arg, '=') != NULL)
778 fatal("%s line %d: Invalid environment name.",
779 filename, linenum);
Damien Millerf8e7acc2005-03-05 11:22:50 +1100780 if (!*activep)
781 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +1000782 if (options->num_send_env >= MAX_SEND_ENV)
783 fatal("%s line %d: too many send env.",
784 filename, linenum);
785 options->send_env[options->num_send_env++] =
786 xstrdup(arg);
787 }
788 break;
789
Damien Miller0e220db2004-06-15 10:34:08 +1000790 case oControlPath:
791 charptr = &options->control_path;
792 goto parse_string;
793
794 case oControlMaster:
795 intptr = &options->control_master;
Damien Miller23f07702004-06-18 01:19:03 +1000796 goto parse_yesnoask;
Damien Miller0e220db2004-06-15 10:34:08 +1000797
Damien Millere1776152005-03-01 21:47:37 +1100798 case oHashKnownHosts:
799 intptr = &options->hash_known_hosts;
800 goto parse_flag;
801
Ben Lindstrom4daea862002-06-09 20:04:02 +0000802 case oDeprecated:
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000803 debug("%s line %d: Deprecated option \"%s\"",
Ben Lindstrom4daea862002-06-09 20:04:02 +0000804 filename, linenum, keyword);
Ben Lindstrom2e17b082002-06-09 20:13:27 +0000805 return 0;
Ben Lindstrom4daea862002-06-09 20:04:02 +0000806
Damien Millerf9b3feb2003-05-16 11:38:32 +1000807 case oUnsupported:
808 error("%s line %d: Unsupported option \"%s\"",
809 filename, linenum, keyword);
810 return 0;
811
Damien Miller95def091999-11-25 00:26:21 +1100812 default:
813 fatal("process_config_line: Unimplemented opcode %d", opcode);
814 }
815
816 /* Check that there is no garbage at end of line. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000817 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000818 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100819 filename, linenum, arg);
Damien Miller37023962000-07-11 17:31:38 +1000820 }
Damien Miller95def091999-11-25 00:26:21 +1100821 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000822}
823
824
Damien Miller5428f641999-11-25 11:54:57 +1100825/*
826 * Reads the config file and modifies the options accordingly. Options
827 * should already be initialized before this call. This never returns if
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000828 * there is an error. If the file does not exist, this returns 0.
Damien Miller5428f641999-11-25 11:54:57 +1100829 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000831int
Darren Tuckerfc959702004-07-17 16:12:08 +1000832read_config_file(const char *filename, const char *host, Options *options,
Damien Miller57a44762004-04-20 20:11:57 +1000833 int checkperm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834{
Damien Miller95def091999-11-25 00:26:21 +1100835 FILE *f;
836 char line[1024];
837 int active, linenum;
838 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839
Damien Miller95def091999-11-25 00:26:21 +1100840 /* Open the file. */
Damien Miller57a44762004-04-20 20:11:57 +1000841 if ((f = fopen(filename, "r")) == NULL)
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000842 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000843
Damien Miller57a44762004-04-20 20:11:57 +1000844 if (checkperm) {
845 struct stat sb;
Darren Tuckerfc959702004-07-17 16:12:08 +1000846
Damien Miller33793852004-06-15 10:27:55 +1000847 if (fstat(fileno(f), &sb) == -1)
Damien Miller57a44762004-04-20 20:11:57 +1000848 fatal("fstat %s: %s", filename, strerror(errno));
Damien Miller57a44762004-04-20 20:11:57 +1000849 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
Damien Miller33793852004-06-15 10:27:55 +1000850 (sb.st_mode & 022) != 0))
Damien Miller57a44762004-04-20 20:11:57 +1000851 fatal("Bad owner or permissions on %s", filename);
Damien Miller57a44762004-04-20 20:11:57 +1000852 }
853
Damien Miller95def091999-11-25 00:26:21 +1100854 debug("Reading configuration data %.200s", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000855
Damien Miller5428f641999-11-25 11:54:57 +1100856 /*
857 * Mark that we are now processing the options. This flag is turned
858 * on/off by Host specifications.
859 */
Damien Miller95def091999-11-25 00:26:21 +1100860 active = 1;
861 linenum = 0;
862 while (fgets(line, sizeof(line), f)) {
863 /* Update line number counter. */
864 linenum++;
865 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
866 bad_options++;
867 }
868 fclose(f);
869 if (bad_options > 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000870 fatal("%s: terminating, %d bad configuration options",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100871 filename, bad_options);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000872 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000873}
874
Damien Miller5428f641999-11-25 11:54:57 +1100875/*
876 * Initializes options to special values that indicate that they have not yet
877 * been set. Read_config_file will only set options with this value. Options
878 * are processed in the following order: command line, user config file,
879 * system config file. Last, fill_default_options is called.
880 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000881
Damien Miller4af51302000-04-16 11:18:38 +1000882void
Damien Miller95def091999-11-25 00:26:21 +1100883initialize_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000884{
Damien Miller95def091999-11-25 00:26:21 +1100885 memset(options, 'X', sizeof(*options));
886 options->forward_agent = -1;
887 options->forward_x11 = -1;
Darren Tucker0a118da2003-10-15 15:54:32 +1000888 options->forward_x11_trusted = -1;
Damien Millerd3a18572000-06-07 19:55:44 +1000889 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100890 options->gateway_ports = -1;
891 options->use_privileged_port = -1;
Damien Miller95def091999-11-25 00:26:21 +1100892 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100893 options->pubkey_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000894 options->challenge_response_authentication = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000895 options->gss_authentication = -1;
896 options->gss_deleg_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100897 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100898 options->kbd_interactive_authentication = -1;
899 options->kbd_interactive_devices = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100900 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000901 options->hostbased_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100902 options->batch_mode = -1;
903 options->check_host_ip = -1;
904 options->strict_host_key_checking = -1;
905 options->compression = -1;
Damien Miller12c150e2003-12-17 16:31:10 +1100906 options->tcp_keep_alive = -1;
Damien Miller95def091999-11-25 00:26:21 +1100907 options->compression_level = -1;
908 options->port = -1;
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000909 options->address_family = -1;
Damien Miller95def091999-11-25 00:26:21 +1100910 options->connection_attempts = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000911 options->connection_timeout = -1;
Damien Miller95def091999-11-25 00:26:21 +1100912 options->number_of_password_prompts = -1;
913 options->cipher = -1;
Damien Miller78928792000-04-12 20:17:38 +1000914 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000915 options->macs = NULL;
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000916 options->hostkeyalgorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000917 options->protocol = SSH_PROTO_UNKNOWN;
Damien Miller95def091999-11-25 00:26:21 +1100918 options->num_identity_files = 0;
919 options->hostname = NULL;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000920 options->host_key_alias = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100921 options->proxy_command = NULL;
922 options->user = NULL;
923 options->escape_char = -1;
924 options->system_hostfile = NULL;
925 options->user_hostfile = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000926 options->system_hostfile2 = NULL;
927 options->user_hostfile2 = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100928 options->num_local_forwards = 0;
929 options->num_remote_forwards = 0;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000930 options->clear_forwardings = -1;
Damien Millerfcd93202002-02-05 12:26:34 +1100931 options->log_level = SYSLOG_LEVEL_NOT_SET;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000932 options->preferred_authentications = NULL;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000933 options->bind_address = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000934 options->smartcard_device = NULL;
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000935 options->enable_ssh_keysign = - 1;
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000936 options->no_host_authentication_for_localhost = - 1;
Damien Millerbd394c32004-03-08 23:12:36 +1100937 options->identities_only = - 1;
Damien Millera5539d22003-04-09 20:50:06 +1000938 options->rekey_limit = - 1;
Damien Miller37876e92003-05-15 10:19:46 +1000939 options->verify_host_key_dns = -1;
Damien Miller509b0102003-12-17 16:33:10 +1100940 options->server_alive_interval = -1;
941 options->server_alive_count_max = -1;
Darren Tucker46bc0752004-05-02 22:11:30 +1000942 options->num_send_env = 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000943 options->control_path = NULL;
944 options->control_master = -1;
Damien Millere1776152005-03-01 21:47:37 +1100945 options->hash_known_hosts = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000946}
947
Damien Miller5428f641999-11-25 11:54:57 +1100948/*
949 * Called after processing other sources of option data, this fills those
950 * options for which no value has been specified with their default values.
951 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller4af51302000-04-16 11:18:38 +1000953void
Damien Miller95def091999-11-25 00:26:21 +1100954fill_default_options(Options * options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955{
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +0000956 int len;
957
Damien Miller95def091999-11-25 00:26:21 +1100958 if (options->forward_agent == -1)
Damien Millerb1715dc2000-05-30 13:44:51 +1000959 options->forward_agent = 0;
Damien Miller95def091999-11-25 00:26:21 +1100960 if (options->forward_x11 == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100961 options->forward_x11 = 0;
Darren Tucker0a118da2003-10-15 15:54:32 +1000962 if (options->forward_x11_trusted == -1)
963 options->forward_x11_trusted = 0;
Damien Millerd3a18572000-06-07 19:55:44 +1000964 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000965 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100966 if (options->gateway_ports == -1)
967 options->gateway_ports = 0;
968 if (options->use_privileged_port == -1)
Ben Lindstromcebc8582001-03-08 03:39:10 +0000969 options->use_privileged_port = 0;
Damien Miller95def091999-11-25 00:26:21 +1100970 if (options->rsa_authentication == -1)
971 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100972 if (options->pubkey_authentication == -1)
973 options->pubkey_authentication = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000974 if (options->challenge_response_authentication == -1)
Ben Lindstrom0076d752001-08-06 20:53:26 +0000975 options->challenge_response_authentication = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000976 if (options->gss_authentication == -1)
Darren Tuckera044f472003-10-15 15:52:03 +1000977 options->gss_authentication = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000978 if (options->gss_deleg_creds == -1)
979 options->gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100980 if (options->password_authentication == -1)
981 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100982 if (options->kbd_interactive_authentication == -1)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000983 options->kbd_interactive_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100984 if (options->rhosts_rsa_authentication == -1)
Ben Lindstrom2bf82762002-06-11 15:53:05 +0000985 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000986 if (options->hostbased_authentication == -1)
987 options->hostbased_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100988 if (options->batch_mode == -1)
989 options->batch_mode = 0;
990 if (options->check_host_ip == -1)
991 options->check_host_ip = 1;
992 if (options->strict_host_key_checking == -1)
993 options->strict_host_key_checking = 2; /* 2 is default */
994 if (options->compression == -1)
995 options->compression = 0;
Damien Miller12c150e2003-12-17 16:31:10 +1100996 if (options->tcp_keep_alive == -1)
997 options->tcp_keep_alive = 1;
Damien Miller95def091999-11-25 00:26:21 +1100998 if (options->compression_level == -1)
999 options->compression_level = 6;
1000 if (options->port == -1)
1001 options->port = 0; /* Filled in ssh_connect. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001002 if (options->address_family == -1)
1003 options->address_family = AF_UNSPEC;
Damien Miller95def091999-11-25 00:26:21 +11001004 if (options->connection_attempts == -1)
Ben Lindstromf9cedb92001-08-06 21:07:11 +00001005 options->connection_attempts = 1;
Damien Miller95def091999-11-25 00:26:21 +11001006 if (options->number_of_password_prompts == -1)
1007 options->number_of_password_prompts = 3;
1008 /* Selected in ssh_login(). */
1009 if (options->cipher == -1)
1010 options->cipher = SSH_CIPHER_NOT_SET;
Damien Miller30c3d422000-05-09 11:02:59 +10001011 /* options->ciphers, default set in myproposals.h */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001012 /* options->macs, default set in myproposals.h */
Ben Lindstrom982dbbc2001-04-17 18:11:36 +00001013 /* options->hostkeyalgorithms, default set in myproposals.h */
Damien Miller78928792000-04-12 20:17:38 +10001014 if (options->protocol == SSH_PROTO_UNKNOWN)
Ben Lindstrom6b776432001-03-22 01:24:04 +00001015 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Miller95def091999-11-25 00:26:21 +11001016 if (options->num_identity_files == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001017 if (options->protocol & SSH_PROTO_1) {
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001018 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001019 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001020 xmalloc(len);
1021 snprintf(options->identity_files[options->num_identity_files++],
1022 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001023 }
1024 if (options->protocol & SSH_PROTO_2) {
Ben Lindstromb00d4fb2001-03-05 06:03:03 +00001025 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
1026 options->identity_files[options->num_identity_files] =
1027 xmalloc(len);
1028 snprintf(options->identity_files[options->num_identity_files++],
1029 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
1030
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001031 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001032 options->identity_files[options->num_identity_files] =
Ben Lindstrom4f7a64a2001-02-10 22:50:09 +00001033 xmalloc(len);
1034 snprintf(options->identity_files[options->num_identity_files++],
1035 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001036 }
Damien Millereba71ba2000-04-29 23:57:08 +10001037 }
Damien Miller95def091999-11-25 00:26:21 +11001038 if (options->escape_char == -1)
1039 options->escape_char = '~';
1040 if (options->system_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001041 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
Damien Miller95def091999-11-25 00:26:21 +11001042 if (options->user_hostfile == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001043 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
Damien Millereba71ba2000-04-29 23:57:08 +10001044 if (options->system_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001045 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
Damien Millereba71ba2000-04-29 23:57:08 +10001046 if (options->user_hostfile2 == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001047 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
Damien Millerfcd93202002-02-05 12:26:34 +11001048 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001049 options->log_level = SYSLOG_LEVEL_INFO;
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +00001050 if (options->clear_forwardings == 1)
1051 clear_forwardings(options);
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +00001052 if (options->no_host_authentication_for_localhost == - 1)
1053 options->no_host_authentication_for_localhost = 0;
Damien Millerbd394c32004-03-08 23:12:36 +11001054 if (options->identities_only == -1)
1055 options->identities_only = 0;
Ben Lindstromb6df73b2002-11-09 15:52:31 +00001056 if (options->enable_ssh_keysign == -1)
1057 options->enable_ssh_keysign = 0;
Damien Millera5539d22003-04-09 20:50:06 +10001058 if (options->rekey_limit == -1)
1059 options->rekey_limit = 0;
Damien Miller37876e92003-05-15 10:19:46 +10001060 if (options->verify_host_key_dns == -1)
1061 options->verify_host_key_dns = 0;
Damien Miller509b0102003-12-17 16:33:10 +11001062 if (options->server_alive_interval == -1)
1063 options->server_alive_interval = 0;
1064 if (options->server_alive_count_max == -1)
1065 options->server_alive_count_max = 3;
Damien Miller0e220db2004-06-15 10:34:08 +10001066 if (options->control_master == -1)
1067 options->control_master = 0;
Damien Millere1776152005-03-01 21:47:37 +11001068 if (options->hash_known_hosts == -1)
1069 options->hash_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +11001070 /* options->proxy_command should not be set by default */
1071 /* options->user will be set in the main program if appropriate */
1072 /* options->hostname will be set in the main program if appropriate */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001073 /* options->host_key_alias should not be set by default */
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001074 /* options->preferred_authentications will be set in ssh */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001075}
Damien Millerf91ee4c2005-03-01 21:24:33 +11001076
1077/*
1078 * parse_forward
1079 * parses a string containing a port forwarding specification of the form:
1080 * [listenhost:]listenport:connecthost:connectport
1081 * returns number of arguments parsed or zero on error
1082 */
1083int
1084parse_forward(Forward *fwd, const char *fwdspec)
1085{
1086 int i;
1087 char *p, *cp, *fwdarg[4];
1088
1089 memset(fwd, '\0', sizeof(*fwd));
1090
1091 cp = p = xstrdup(fwdspec);
1092
1093 /* skip leading spaces */
1094 while (*cp && isspace(*cp))
1095 cp++;
1096
1097 for (i = 0; i < 4; ++i)
1098 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1099 break;
1100
1101 /* Check for trailing garbage in 4-arg case*/
1102 if (cp != NULL)
1103 i = 0; /* failure */
1104
1105 switch (i) {
1106 case 3:
1107 fwd->listen_host = NULL;
1108 fwd->listen_port = a2port(fwdarg[0]);
1109 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1110 fwd->connect_port = a2port(fwdarg[2]);
1111 break;
1112
1113 case 4:
1114 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1115 fwd->listen_port = a2port(fwdarg[1]);
1116 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1117 fwd->connect_port = a2port(fwdarg[3]);
1118 break;
1119 default:
1120 i = 0; /* failure */
1121 }
1122
1123 xfree(p);
1124
1125 if (fwd->listen_port == 0 && fwd->connect_port == 0)
1126 goto fail_free;
1127
1128 if (fwd->connect_host != NULL &&
1129 strlen(fwd->connect_host) >= NI_MAXHOST)
1130 goto fail_free;
1131
1132 return (i);
1133
1134 fail_free:
1135 if (fwd->connect_host != NULL)
1136 xfree(fwd->connect_host);
1137 if (fwd->listen_host != NULL)
1138 xfree(fwd->listen_host);
1139 return (0);
1140}