2013-10-23 13:29:40 +08:00
|
|
|
/* $OpenBSD: readconf.c,v 1.210 2013/10/20 06:19:27 djm Exp $ */
|
1999-10-27 11:42:43 +08:00
|
|
|
/*
|
1999-11-24 21:26:21 +08:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Functions for reading the configuration files.
|
2000-04-16 09:18:38 +08:00
|
|
|
*
|
2000-09-16 10:29:08 +08:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 21:26:21 +08:00
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 08:45:54 +08:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2006-07-10 18:35:38 +08:00
|
|
|
#include <sys/socket.h>
|
2013-10-15 09:13:05 +08:00
|
|
|
#include <sys/wait.h>
|
2006-07-10 18:35:38 +08:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
2010-11-20 12:19:38 +08:00
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2006-03-15 08:53:45 +08:00
|
|
|
#include <ctype.h>
|
2006-07-12 20:22:46 +08:00
|
|
|
#include <errno.h>
|
2013-10-15 09:13:05 +08:00
|
|
|
#include <fcntl.h>
|
2006-07-24 12:51:00 +08:00
|
|
|
#include <netdb.h>
|
2013-10-15 09:13:05 +08:00
|
|
|
#include <paths.h>
|
|
|
|
#include <pwd.h>
|
2006-08-05 10:39:39 +08:00
|
|
|
#include <signal.h>
|
2006-09-01 13:38:36 +08:00
|
|
|
#include <stdarg.h>
|
2006-08-05 09:37:59 +08:00
|
|
|
#include <stdio.h>
|
2006-07-24 12:13:33 +08:00
|
|
|
#include <string.h>
|
2006-07-24 12:01:23 +08:00
|
|
|
#include <unistd.h>
|
2013-05-16 18:47:31 +08:00
|
|
|
#ifdef HAVE_UTIL_H
|
2013-05-16 18:33:10 +08:00
|
|
|
#include <util.h>
|
2013-05-16 18:47:31 +08:00
|
|
|
#endif
|
2006-03-15 08:53:45 +08:00
|
|
|
|
1999-10-27 11:42:43 +08:00
|
|
|
#include "xmalloc.h"
|
2006-08-05 10:39:39 +08:00
|
|
|
#include "ssh.h"
|
2000-04-12 18:17:38 +08:00
|
|
|
#include "compat.h"
|
2001-01-22 13:34:40 +08:00
|
|
|
#include "cipher.h"
|
|
|
|
#include "pathnames.h"
|
|
|
|
#include "log.h"
|
2006-08-05 10:39:39 +08:00
|
|
|
#include "key.h"
|
2001-01-22 13:34:40 +08:00
|
|
|
#include "readconf.h"
|
|
|
|
#include "match.h"
|
|
|
|
#include "misc.h"
|
2006-08-05 10:39:39 +08:00
|
|
|
#include "buffer.h"
|
2001-02-15 11:01:59 +08:00
|
|
|
#include "kex.h"
|
|
|
|
#include "mac.h"
|
2013-10-15 09:13:05 +08:00
|
|
|
#include "uidswap.h"
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
/* Format of the configuration file:
|
|
|
|
|
|
|
|
# Configuration data is parsed as follows:
|
|
|
|
# 1. command line options
|
|
|
|
# 2. user-specific file
|
|
|
|
# 3. system-wide file
|
|
|
|
# Any configuration value is only changed the first time it is set.
|
|
|
|
# Thus, host-specific definitions should be at the beginning of the
|
|
|
|
# configuration file, and defaults at the end.
|
|
|
|
|
|
|
|
# Host-specific declarations. These may override anything above. A single
|
|
|
|
# host may match multiple declarations; these are processed in the order
|
|
|
|
# that they are given in.
|
|
|
|
|
|
|
|
Host *.ngs.fi ngs.fi
|
2002-06-10 04:04:02 +08:00
|
|
|
User foo
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
Host fake.com
|
|
|
|
HostName another.host.name.real.org
|
|
|
|
User blaah
|
|
|
|
Port 34289
|
|
|
|
ForwardX11 no
|
|
|
|
ForwardAgent no
|
|
|
|
|
|
|
|
Host books.com
|
|
|
|
RemoteForward 9999 shadows.cs.hut.fi:9999
|
|
|
|
Cipher 3des
|
|
|
|
|
|
|
|
Host fascist.blob.com
|
|
|
|
Port 23123
|
|
|
|
User tylonen
|
|
|
|
PasswordAuthentication no
|
|
|
|
|
|
|
|
Host puukko.hut.fi
|
|
|
|
User t35124p
|
|
|
|
ProxyCommand ssh-proxy %h %p
|
|
|
|
|
|
|
|
Host *.fr
|
2002-06-10 04:04:02 +08:00
|
|
|
PublicKeyAuthentication no
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
Host *.su
|
|
|
|
Cipher none
|
|
|
|
PasswordAuthentication no
|
|
|
|
|
2005-12-13 16:29:02 +08:00
|
|
|
Host vpn.fake.com
|
|
|
|
Tunnel yes
|
|
|
|
TunnelDevice 3
|
|
|
|
|
1999-10-27 11:42:43 +08:00
|
|
|
# Defaults for various options
|
|
|
|
Host *
|
|
|
|
ForwardAgent no
|
2000-11-13 19:57:25 +08:00
|
|
|
ForwardX11 no
|
1999-10-27 11:42:43 +08:00
|
|
|
PasswordAuthentication yes
|
|
|
|
RSAAuthentication yes
|
|
|
|
RhostsRSAAuthentication yes
|
|
|
|
StrictHostKeyChecking yes
|
2003-12-17 13:31:10 +08:00
|
|
|
TcpKeepAlive no
|
1999-10-27 11:42:43 +08:00
|
|
|
IdentityFile ~/.ssh/identity
|
|
|
|
Port 22
|
|
|
|
EscapeChar ~
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Keyword tokens. */
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
typedef enum {
|
|
|
|
oBadOption,
|
2013-10-15 09:13:05 +08:00
|
|
|
oHost, oMatch,
|
2010-06-26 08:02:24 +08:00
|
|
|
oForwardAgent, oForwardX11, oForwardX11Trusted, oForwardX11Timeout,
|
|
|
|
oGatewayPorts, oExitOnForwardFailure,
|
2002-06-21 08:41:51 +08:00
|
|
|
oPasswordAuthentication, oRSAAuthentication,
|
2001-01-23 11:12:10 +08:00
|
|
|
oChallengeResponseAuthentication, oXAuthLocation,
|
1999-11-24 21:26:21 +08:00
|
|
|
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
|
2013-10-15 09:13:05 +08:00
|
|
|
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
|
1999-11-24 21:26:21 +08:00
|
|
|
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
|
|
|
|
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
|
2003-12-17 13:31:10 +08:00
|
|
|
oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
|
2001-02-15 11:01:59 +08:00
|
|
|
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
|
2000-11-13 19:57:25 +08:00
|
|
|
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
|
2001-03-11 09:49:19 +08:00
|
|
|
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
|
2001-04-18 02:11:36 +08:00
|
|
|
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
|
2010-02-12 06:21:02 +08:00
|
|
|
oHostKeyAlgorithms, oBindAddress, oPKCS11Provider,
|
2002-06-10 04:04:02 +08:00
|
|
|
oClearAllForwardings, oNoHostAuthenticationForLocalhost,
|
2003-05-16 09:39:04 +08:00
|
|
|
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
|
2003-08-26 09:49:55 +08:00
|
|
|
oAddressFamily, oGssAuthentication, oGssDelegateCreds,
|
2004-03-08 20:12:36 +08:00
|
|
|
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
|
2010-08-03 14:04:46 +08:00
|
|
|
oSendEnv, oControlPath, oControlMaster, oControlPersist,
|
|
|
|
oHashKnownHosts,
|
2005-12-13 16:29:02 +08:00
|
|
|
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
|
2010-01-10 07:31:12 +08:00
|
|
|
oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication,
|
2013-08-21 00:44:24 +08:00
|
|
|
oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
|
2013-10-17 08:48:13 +08:00
|
|
|
oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots,
|
|
|
|
oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs,
|
2013-05-16 18:30:03 +08:00
|
|
|
oIgnoredUnknownOption, oDeprecated, oUnsupported
|
1999-10-27 11:42:43 +08:00
|
|
|
} OpCodes;
|
|
|
|
|
|
|
|
/* Textual representations of the tokens. */
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
OpCodes opcode;
|
|
|
|
} keywords[] = {
|
|
|
|
{ "forwardagent", oForwardAgent },
|
|
|
|
{ "forwardx11", oForwardX11 },
|
2003-10-15 13:54:32 +08:00
|
|
|
{ "forwardx11trusted", oForwardX11Trusted },
|
2010-06-26 08:02:24 +08:00
|
|
|
{ "forwardx11timeout", oForwardX11Timeout },
|
2006-07-12 20:17:10 +08:00
|
|
|
{ "exitonforwardfailure", oExitOnForwardFailure },
|
2000-06-07 17:55:44 +08:00
|
|
|
{ "xauthlocation", oXAuthLocation },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "gatewayports", oGatewayPorts },
|
|
|
|
{ "useprivilegedport", oUsePrivilegedPort },
|
2003-08-13 18:37:05 +08:00
|
|
|
{ "rhostsauthentication", oDeprecated },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "passwordauthentication", oPasswordAuthentication },
|
2000-10-14 13:23:11 +08:00
|
|
|
{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
|
|
|
|
{ "kbdinteractivedevices", oKbdInteractiveDevices },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "rsaauthentication", oRSAAuthentication },
|
2000-11-13 19:57:25 +08:00
|
|
|
{ "pubkeyauthentication", oPubkeyAuthentication },
|
2001-01-23 11:12:10 +08:00
|
|
|
{ "dsaauthentication", oPubkeyAuthentication }, /* alias */
|
2001-04-13 07:34:34 +08:00
|
|
|
{ "rhostsrsaauthentication", oRhostsRSAAuthentication },
|
2001-04-13 07:36:05 +08:00
|
|
|
{ "hostbasedauthentication", oHostbasedAuthentication },
|
2001-01-23 11:12:10 +08:00
|
|
|
{ "challengeresponseauthentication", oChallengeResponseAuthentication },
|
|
|
|
{ "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
|
|
|
|
{ "tisauthentication", oChallengeResponseAuthentication }, /* alias */
|
2003-05-16 09:38:32 +08:00
|
|
|
{ "kerberosauthentication", oUnsupported },
|
|
|
|
{ "kerberostgtpassing", oUnsupported },
|
|
|
|
{ "afstokenpassing", oUnsupported },
|
2003-08-26 09:49:55 +08:00
|
|
|
#if defined(GSSAPI)
|
|
|
|
{ "gssapiauthentication", oGssAuthentication },
|
|
|
|
{ "gssapidelegatecredentials", oGssDelegateCreds },
|
|
|
|
#else
|
|
|
|
{ "gssapiauthentication", oUnsupported },
|
|
|
|
{ "gssapidelegatecredentials", oUnsupported },
|
|
|
|
#endif
|
2002-06-10 04:04:02 +08:00
|
|
|
{ "fallbacktorsh", oDeprecated },
|
|
|
|
{ "usersh", oDeprecated },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "identityfile", oIdentityFile },
|
2009-01-28 13:27:31 +08:00
|
|
|
{ "identityfile2", oIdentityFile }, /* obsolete */
|
2004-03-08 20:12:36 +08:00
|
|
|
{ "identitiesonly", oIdentitiesOnly },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "hostname", oHostName },
|
2000-12-29 00:40:05 +08:00
|
|
|
{ "hostkeyalias", oHostKeyAlias },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "proxycommand", oProxyCommand },
|
|
|
|
{ "port", oPort },
|
|
|
|
{ "cipher", oCipher },
|
2000-04-12 18:17:38 +08:00
|
|
|
{ "ciphers", oCiphers },
|
2001-02-15 11:01:59 +08:00
|
|
|
{ "macs", oMacs },
|
2000-04-12 18:17:38 +08:00
|
|
|
{ "protocol", oProtocol },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "remoteforward", oRemoteForward },
|
|
|
|
{ "localforward", oLocalForward },
|
|
|
|
{ "user", oUser },
|
|
|
|
{ "host", oHost },
|
2013-10-15 09:13:05 +08:00
|
|
|
{ "match", oMatch },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "escapechar", oEscapeChar },
|
|
|
|
{ "globalknownhostsfile", oGlobalKnownHostsFile },
|
2011-05-29 19:42:31 +08:00
|
|
|
{ "globalknownhostsfile2", oDeprecated },
|
2009-01-28 13:27:31 +08:00
|
|
|
{ "userknownhostsfile", oUserKnownHostsFile },
|
2011-05-29 19:42:31 +08:00
|
|
|
{ "userknownhostsfile2", oDeprecated },
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "connectionattempts", oConnectionAttempts },
|
|
|
|
{ "batchmode", oBatchMode },
|
|
|
|
{ "checkhostip", oCheckHostIP },
|
|
|
|
{ "stricthostkeychecking", oStrictHostKeyChecking },
|
|
|
|
{ "compression", oCompression },
|
|
|
|
{ "compressionlevel", oCompressionLevel },
|
2003-12-17 13:31:10 +08:00
|
|
|
{ "tcpkeepalive", oTCPKeepAlive },
|
|
|
|
{ "keepalive", oTCPKeepAlive }, /* obsolete */
|
1999-11-24 21:26:21 +08:00
|
|
|
{ "numberofpasswordprompts", oNumberOfPasswordPrompts },
|
|
|
|
{ "loglevel", oLogLevel },
|
2001-04-09 02:30:26 +08:00
|
|
|
{ "dynamicforward", oDynamicForward },
|
2001-03-11 09:49:19 +08:00
|
|
|
{ "preferredauthentications", oPreferredAuthentications },
|
2001-04-18 02:11:36 +08:00
|
|
|
{ "hostkeyalgorithms", oHostKeyAlgorithms },
|
2001-04-30 21:06:24 +08:00
|
|
|
{ "bindaddress", oBindAddress },
|
2010-02-12 06:21:02 +08:00
|
|
|
#ifdef ENABLE_PKCS11
|
|
|
|
{ "smartcarddevice", oPKCS11Provider },
|
|
|
|
{ "pkcs11provider", oPKCS11Provider },
|
2003-05-16 09:38:32 +08:00
|
|
|
#else
|
|
|
|
{ "smartcarddevice", oUnsupported },
|
2010-02-12 06:21:02 +08:00
|
|
|
{ "pkcs11provider", oUnsupported },
|
2003-05-16 09:38:32 +08:00
|
|
|
#endif
|
2001-12-21 11:45:46 +08:00
|
|
|
{ "clearallforwardings", oClearAllForwardings },
|
2002-11-09 23:52:31 +08:00
|
|
|
{ "enablesshkeysign", oEnableSSHKeysign },
|
2003-05-15 08:19:46 +08:00
|
|
|
{ "verifyhostkeydns", oVerifyHostKeyDNS },
|
2001-12-21 11:45:46 +08:00
|
|
|
{ "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
|
2003-04-09 18:50:06 +08:00
|
|
|
{ "rekeylimit", oRekeyLimit },
|
2003-05-16 09:39:04 +08:00
|
|
|
{ "connecttimeout", oConnectTimeout },
|
2003-05-18 18:50:30 +08:00
|
|
|
{ "addressfamily", oAddressFamily },
|
2003-12-17 13:33:10 +08:00
|
|
|
{ "serveraliveinterval", oServerAliveInterval },
|
|
|
|
{ "serveralivecountmax", oServerAliveCountMax },
|
2004-05-02 20:11:30 +08:00
|
|
|
{ "sendenv", oSendEnv },
|
2004-06-15 08:34:08 +08:00
|
|
|
{ "controlpath", oControlPath },
|
|
|
|
{ "controlmaster", oControlMaster },
|
2010-08-03 14:04:46 +08:00
|
|
|
{ "controlpersist", oControlPersist },
|
2005-03-01 18:47:37 +08:00
|
|
|
{ "hashknownhosts", oHashKnownHosts },
|
2005-12-13 16:29:02 +08:00
|
|
|
{ "tunnel", oTunnel },
|
|
|
|
{ "tunneldevice", oTunnelDevice },
|
|
|
|
{ "localcommand", oLocalCommand },
|
|
|
|
{ "permitlocalcommand", oPermitLocalCommand },
|
2008-06-29 22:04:03 +08:00
|
|
|
{ "visualhostkey", oVisualHostKey },
|
2009-07-06 05:12:27 +08:00
|
|
|
{ "useroaming", oUseRoaming },
|
2008-11-05 13:20:46 +08:00
|
|
|
#ifdef JPAKE
|
|
|
|
{ "zeroknowledgepasswordauthentication",
|
|
|
|
oZeroKnowledgePasswordAuthentication },
|
|
|
|
#else
|
|
|
|
{ "zeroknowledgepasswordauthentication", oUnsupported },
|
|
|
|
#endif
|
2010-09-24 20:11:14 +08:00
|
|
|
{ "kexalgorithms", oKexAlgorithms },
|
2010-11-20 12:19:38 +08:00
|
|
|
{ "ipqos", oIPQoS },
|
2011-05-15 06:45:50 +08:00
|
|
|
{ "requesttty", oRequestTTY },
|
2013-08-21 00:44:24 +08:00
|
|
|
{ "proxyusefdpass", oProxyUseFdpass },
|
2013-10-17 08:47:23 +08:00
|
|
|
{ "canonicaldomains", oCanonicalDomains },
|
2013-10-17 08:48:13 +08:00
|
|
|
{ "canonicalizefallbacklocal", oCanonicalizeFallbackLocal },
|
|
|
|
{ "canonicalizehostname", oCanonicalizeHostname },
|
|
|
|
{ "canonicalizemaxdots", oCanonicalizeMaxDots },
|
|
|
|
{ "canonicalizepermittedcnames", oCanonicalizePermittedCNAMEs },
|
2013-05-16 18:30:03 +08:00
|
|
|
{ "ignoreunknown", oIgnoreUnknown },
|
2008-11-05 13:20:46 +08:00
|
|
|
|
2001-12-07 00:32:47 +08:00
|
|
|
{ NULL, oBadOption }
|
1999-11-11 14:57:39 +08:00
|
|
|
};
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Adds a local TCP/IP port forward to options. Never returns if there is an
|
|
|
|
* error.
|
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2000-04-16 09:18:38 +08:00
|
|
|
void
|
2005-03-01 18:24:33 +08:00
|
|
|
add_local_forward(Options *options, const Forward *newfwd)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
1999-11-24 21:26:21 +08:00
|
|
|
Forward *fwd;
|
2002-07-09 22:06:40 +08:00
|
|
|
#ifndef NO_IPPORT_RESERVED_CONCEPT
|
1999-11-24 21:26:21 +08:00
|
|
|
extern uid_t original_real_uid;
|
2005-03-01 18:24:33 +08:00
|
|
|
if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
|
2001-03-05 15:47:23 +08:00
|
|
|
fatal("Privileged ports can only be forwarded by root.");
|
2000-09-05 13:13:06 +08:00
|
|
|
#endif
|
2010-06-26 07:50:30 +08:00
|
|
|
options->local_forwards = xrealloc(options->local_forwards,
|
|
|
|
options->num_local_forwards + 1,
|
|
|
|
sizeof(*options->local_forwards));
|
1999-11-24 21:26:21 +08:00
|
|
|
fwd = &options->local_forwards[options->num_local_forwards++];
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2008-11-05 13:30:06 +08:00
|
|
|
fwd->listen_host = newfwd->listen_host;
|
2005-03-01 18:24:33 +08:00
|
|
|
fwd->listen_port = newfwd->listen_port;
|
2008-11-05 13:30:06 +08:00
|
|
|
fwd->connect_host = newfwd->connect_host;
|
2005-03-01 18:24:33 +08:00
|
|
|
fwd->connect_port = newfwd->connect_port;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Adds a remote TCP/IP port forward to options. Never returns if there is
|
|
|
|
* an error.
|
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2000-04-16 09:18:38 +08:00
|
|
|
void
|
2005-03-01 18:24:33 +08:00
|
|
|
add_remote_forward(Options *options, const Forward *newfwd)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
1999-11-24 21:26:21 +08:00
|
|
|
Forward *fwd;
|
2010-06-26 07:50:30 +08:00
|
|
|
|
|
|
|
options->remote_forwards = xrealloc(options->remote_forwards,
|
|
|
|
options->num_remote_forwards + 1,
|
|
|
|
sizeof(*options->remote_forwards));
|
1999-11-24 21:26:21 +08:00
|
|
|
fwd = &options->remote_forwards[options->num_remote_forwards++];
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2008-11-05 13:30:06 +08:00
|
|
|
fwd->listen_host = newfwd->listen_host;
|
2005-03-01 18:24:33 +08:00
|
|
|
fwd->listen_port = newfwd->listen_port;
|
2008-11-05 13:30:06 +08:00
|
|
|
fwd->connect_host = newfwd->connect_host;
|
2005-03-01 18:24:33 +08:00
|
|
|
fwd->connect_port = newfwd->connect_port;
|
2011-10-02 15:59:03 +08:00
|
|
|
fwd->handle = newfwd->handle;
|
2010-05-21 12:57:35 +08:00
|
|
|
fwd->allocated_port = 0;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
2001-09-20 08:57:55 +08:00
|
|
|
static void
|
|
|
|
clear_forwardings(Options *options)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2005-03-01 18:24:33 +08:00
|
|
|
for (i = 0; i < options->num_local_forwards; i++) {
|
2013-06-02 05:31:17 +08:00
|
|
|
free(options->local_forwards[i].listen_host);
|
|
|
|
free(options->local_forwards[i].connect_host);
|
2005-03-01 18:24:33 +08:00
|
|
|
}
|
2010-06-26 07:50:30 +08:00
|
|
|
if (options->num_local_forwards > 0) {
|
2013-06-02 05:31:17 +08:00
|
|
|
free(options->local_forwards);
|
2010-06-26 07:50:30 +08:00
|
|
|
options->local_forwards = NULL;
|
|
|
|
}
|
2001-09-20 08:57:55 +08:00
|
|
|
options->num_local_forwards = 0;
|
2005-03-01 18:24:33 +08:00
|
|
|
for (i = 0; i < options->num_remote_forwards; i++) {
|
2013-06-02 05:31:17 +08:00
|
|
|
free(options->remote_forwards[i].listen_host);
|
|
|
|
free(options->remote_forwards[i].connect_host);
|
2005-03-01 18:24:33 +08:00
|
|
|
}
|
2010-06-26 07:50:30 +08:00
|
|
|
if (options->num_remote_forwards > 0) {
|
2013-06-02 05:31:17 +08:00
|
|
|
free(options->remote_forwards);
|
2010-06-26 07:50:30 +08:00
|
|
|
options->remote_forwards = NULL;
|
|
|
|
}
|
2001-09-20 08:57:55 +08:00
|
|
|
options->num_remote_forwards = 0;
|
2005-12-13 16:33:19 +08:00
|
|
|
options->tun_open = SSH_TUNMODE_NO;
|
2001-09-20 08:57:55 +08:00
|
|
|
}
|
|
|
|
|
2013-04-05 08:13:08 +08:00
|
|
|
void
|
|
|
|
add_identity_file(Options *options, const char *dir, const char *filename,
|
|
|
|
int userprovided)
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
if (options->num_identity_files >= SSH_MAX_IDENTITY_FILES)
|
|
|
|
fatal("Too many identity files specified (max %d)",
|
|
|
|
SSH_MAX_IDENTITY_FILES);
|
|
|
|
|
|
|
|
if (dir == NULL) /* no dir, filename is absolute */
|
|
|
|
path = xstrdup(filename);
|
|
|
|
else
|
|
|
|
(void)xasprintf(&path, "%.100s%.100s", dir, filename);
|
|
|
|
|
|
|
|
options->identity_file_userprovided[options->num_identity_files] =
|
|
|
|
userprovided;
|
|
|
|
options->identity_files[options->num_identity_files++] = path;
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:05 +08:00
|
|
|
int
|
|
|
|
default_ssh_port(void)
|
|
|
|
{
|
|
|
|
static int port;
|
|
|
|
struct servent *sp;
|
|
|
|
|
|
|
|
if (port == 0) {
|
|
|
|
sp = getservbyname(SSH_SERVICE_NAME, "tcp");
|
|
|
|
port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
|
|
|
|
}
|
|
|
|
return port;
|
|
|
|
}
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
2013-10-15 09:13:05 +08:00
|
|
|
* Execute a command in a shell.
|
|
|
|
* Return its exit status or -1 on abnormal exit.
|
1999-11-25 08:54:57 +08:00
|
|
|
*/
|
2013-10-15 09:13:05 +08:00
|
|
|
static int
|
|
|
|
execute_in_shell(const char *cmd)
|
|
|
|
{
|
|
|
|
char *shell, *command_string;
|
|
|
|
pid_t pid;
|
|
|
|
int devnull, status;
|
|
|
|
extern uid_t original_real_uid;
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2013-10-15 09:13:05 +08:00
|
|
|
if ((shell = getenv("SHELL")) == NULL)
|
|
|
|
shell = _PATH_BSHELL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use "exec" to avoid "sh -c" processes on some platforms
|
|
|
|
* (e.g. Solaris)
|
|
|
|
*/
|
|
|
|
xasprintf(&command_string, "exec %s", cmd);
|
|
|
|
|
|
|
|
/* Need this to redirect subprocess stdin/out */
|
|
|
|
if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
|
|
|
|
fatal("open(/dev/null): %s", strerror(errno));
|
|
|
|
|
|
|
|
debug("Executing command: '%.500s'", cmd);
|
|
|
|
|
|
|
|
/* Fork and execute the command. */
|
|
|
|
if ((pid = fork()) == 0) {
|
|
|
|
char *argv[4];
|
|
|
|
|
|
|
|
/* Child. Permanently give up superuser privileges. */
|
|
|
|
permanently_drop_suid(original_real_uid);
|
|
|
|
|
|
|
|
/* Redirect child stdin and stdout. Leave stderr */
|
|
|
|
if (dup2(devnull, STDIN_FILENO) == -1)
|
|
|
|
fatal("dup2: %s", strerror(errno));
|
|
|
|
if (dup2(devnull, STDOUT_FILENO) == -1)
|
|
|
|
fatal("dup2: %s", strerror(errno));
|
|
|
|
if (devnull > STDERR_FILENO)
|
|
|
|
close(devnull);
|
|
|
|
closefrom(STDERR_FILENO + 1);
|
|
|
|
|
|
|
|
argv[0] = shell;
|
|
|
|
argv[1] = "-c";
|
|
|
|
argv[2] = command_string;
|
|
|
|
argv[3] = NULL;
|
|
|
|
|
|
|
|
execv(argv[0], argv);
|
|
|
|
error("Unable to execute '%.100s': %s", cmd, strerror(errno));
|
|
|
|
/* Die with signal to make this error apparent to parent. */
|
|
|
|
signal(SIGTERM, SIG_DFL);
|
|
|
|
kill(getpid(), SIGTERM);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
/* Parent. */
|
|
|
|
if (pid < 0)
|
|
|
|
fatal("%s: fork: %.100s", __func__, strerror(errno));
|
|
|
|
|
|
|
|
close(devnull);
|
|
|
|
free(command_string);
|
|
|
|
|
|
|
|
while (waitpid(pid, &status, 0) == -1) {
|
|
|
|
if (errno != EINTR && errno != EAGAIN)
|
|
|
|
fatal("%s: waitpid: %s", __func__, strerror(errno));
|
|
|
|
}
|
|
|
|
if (!WIFEXITED(status)) {
|
|
|
|
error("command '%.100s' exited abnormally", cmd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
debug3("command returned status %d", WEXITSTATUS(status));
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse and execute a Match directive.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
match_cfg_line(Options *options, char **condition, struct passwd *pw,
|
|
|
|
const char *host_arg, const char *filename, int linenum)
|
|
|
|
{
|
|
|
|
char *arg, *attrib, *cmd, *cp = *condition;
|
|
|
|
const char *ruser, *host;
|
|
|
|
int r, port, result = 1;
|
|
|
|
size_t len;
|
|
|
|
char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configuration is likely to be incomplete at this point so we
|
|
|
|
* must be prepared to use default values.
|
|
|
|
*/
|
|
|
|
port = options->port <= 0 ? default_ssh_port() : options->port;
|
|
|
|
ruser = options->user == NULL ? pw->pw_name : options->user;
|
|
|
|
host = options->hostname == NULL ? host_arg : options->hostname;
|
|
|
|
|
|
|
|
debug3("checking match for '%s' host %s", cp, host);
|
|
|
|
while ((attrib = strdelim(&cp)) && *attrib != '\0') {
|
|
|
|
if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
|
|
|
|
error("Missing Match criteria for %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
len = strlen(arg);
|
|
|
|
if (strcasecmp(attrib, "host") == 0) {
|
|
|
|
if (match_hostname(host, arg, len) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("%.200s line %d: matched 'Host %.100s' ",
|
|
|
|
filename, linenum, host);
|
|
|
|
} else if (strcasecmp(attrib, "originalhost") == 0) {
|
|
|
|
if (match_hostname(host_arg, arg, len) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("%.200s line %d: matched "
|
|
|
|
"'OriginalHost %.100s' ",
|
|
|
|
filename, linenum, host_arg);
|
|
|
|
} else if (strcasecmp(attrib, "user") == 0) {
|
|
|
|
if (match_pattern_list(ruser, arg, len, 0) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("%.200s line %d: matched 'User %.100s' ",
|
|
|
|
filename, linenum, ruser);
|
|
|
|
} else if (strcasecmp(attrib, "localuser") == 0) {
|
|
|
|
if (match_pattern_list(pw->pw_name, arg, len, 0) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("%.200s line %d: matched "
|
|
|
|
"'LocalUser %.100s' ",
|
|
|
|
filename, linenum, pw->pw_name);
|
2013-10-23 13:29:40 +08:00
|
|
|
} else if (strcasecmp(attrib, "exec") == 0) {
|
2013-10-15 09:13:05 +08:00
|
|
|
if (gethostname(thishost, sizeof(thishost)) == -1)
|
|
|
|
fatal("gethostname: %s", strerror(errno));
|
|
|
|
strlcpy(shorthost, thishost, sizeof(shorthost));
|
|
|
|
shorthost[strcspn(thishost, ".")] = '\0';
|
|
|
|
snprintf(portstr, sizeof(portstr), "%d", port);
|
|
|
|
|
|
|
|
cmd = percent_expand(arg,
|
|
|
|
"L", shorthost,
|
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"l", thishost,
|
|
|
|
"n", host_arg,
|
|
|
|
"p", portstr,
|
|
|
|
"r", ruser,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
|
|
|
r = execute_in_shell(cmd);
|
|
|
|
if (r == -1) {
|
2013-10-23 13:29:40 +08:00
|
|
|
fatal("%.200s line %d: match exec '%.100s' "
|
2013-10-15 09:13:05 +08:00
|
|
|
"error", filename, linenum, cmd);
|
|
|
|
} else if (r == 0) {
|
|
|
|
debug("%.200s line %d: matched "
|
2013-10-23 13:29:40 +08:00
|
|
|
"'exec \"%.100s\"' ",
|
2013-10-15 09:13:05 +08:00
|
|
|
filename, linenum, cmd);
|
|
|
|
} else
|
|
|
|
result = 0;
|
|
|
|
free(cmd);
|
|
|
|
} else {
|
|
|
|
error("Unsupported Match attribute %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debug3("match %sfound", result ? "" : "not ");
|
|
|
|
*condition = cp;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-10-17 08:47:23 +08:00
|
|
|
/* Check and prepare a domain name: removes trailing '.' and lowercases */
|
|
|
|
static void
|
|
|
|
valid_domain(char *name, const char *filename, int linenum)
|
|
|
|
{
|
|
|
|
size_t i, l = strlen(name);
|
|
|
|
u_char c, last = '\0';
|
|
|
|
|
|
|
|
if (l == 0)
|
|
|
|
fatal("%s line %d: empty hostname suffix", filename, linenum);
|
|
|
|
if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
|
|
|
|
fatal("%s line %d: hostname suffix \"%.100s\" "
|
|
|
|
"starts with invalid character", filename, linenum, name);
|
|
|
|
for (i = 0; i < l; i++) {
|
|
|
|
c = tolower((u_char)name[i]);
|
|
|
|
name[i] = (char)c;
|
|
|
|
if (last == '.' && c == '.')
|
|
|
|
fatal("%s line %d: hostname suffix \"%.100s\" contains "
|
|
|
|
"consecutive separators", filename, linenum, name);
|
|
|
|
if (c != '.' && c != '-' && !isalnum(c) &&
|
|
|
|
c != '_') /* technically invalid, but common */
|
|
|
|
fatal("%s line %d: hostname suffix \"%.100s\" contains "
|
|
|
|
"invalid characters", filename, linenum, name);
|
|
|
|
last = c;
|
|
|
|
}
|
|
|
|
if (name[l - 1] == '.')
|
|
|
|
name[l - 1] = '\0';
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:05 +08:00
|
|
|
/*
|
|
|
|
* Returns the number of the token pointed to by cp or oBadOption.
|
|
|
|
*/
|
2000-04-16 09:18:38 +08:00
|
|
|
static OpCodes
|
2013-05-16 18:30:03 +08:00
|
|
|
parse_token(const char *cp, const char *filename, int linenum,
|
|
|
|
const char *ignored_unknown)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
2013-05-16 18:30:03 +08:00
|
|
|
int i;
|
1999-10-27 11:42:43 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
for (i = 0; keywords[i].name; i++)
|
2013-05-16 18:30:03 +08:00
|
|
|
if (strcmp(cp, keywords[i].name) == 0)
|
1999-11-24 21:26:21 +08:00
|
|
|
return keywords[i].opcode;
|
2013-05-16 18:30:03 +08:00
|
|
|
if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,
|
|
|
|
strlen(ignored_unknown), 1) == 1)
|
|
|
|
return oIgnoredUnknownOption;
|
2001-04-16 10:13:26 +08:00
|
|
|
error("%s: line %d: Bad configuration option: %s",
|
|
|
|
filename, linenum, cp);
|
1999-11-24 21:26:21 +08:00
|
|
|
return oBadOption;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
2013-10-15 09:14:12 +08:00
|
|
|
/* Multistate option parsing */
|
|
|
|
struct multistate {
|
|
|
|
char *key;
|
|
|
|
int value;
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_flag[] = {
|
|
|
|
{ "true", 1 },
|
|
|
|
{ "false", 0 },
|
|
|
|
{ "yes", 1 },
|
|
|
|
{ "no", 0 },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_yesnoask[] = {
|
|
|
|
{ "true", 1 },
|
|
|
|
{ "false", 0 },
|
|
|
|
{ "yes", 1 },
|
|
|
|
{ "no", 0 },
|
|
|
|
{ "ask", 2 },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_addressfamily[] = {
|
|
|
|
{ "inet", AF_INET },
|
|
|
|
{ "inet6", AF_INET6 },
|
|
|
|
{ "any", AF_UNSPEC },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_controlmaster[] = {
|
|
|
|
{ "true", SSHCTL_MASTER_YES },
|
|
|
|
{ "yes", SSHCTL_MASTER_YES },
|
|
|
|
{ "false", SSHCTL_MASTER_NO },
|
|
|
|
{ "no", SSHCTL_MASTER_NO },
|
|
|
|
{ "auto", SSHCTL_MASTER_AUTO },
|
|
|
|
{ "ask", SSHCTL_MASTER_ASK },
|
|
|
|
{ "autoask", SSHCTL_MASTER_AUTO_ASK },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_tunnel[] = {
|
|
|
|
{ "ethernet", SSH_TUNMODE_ETHERNET },
|
|
|
|
{ "point-to-point", SSH_TUNMODE_POINTOPOINT },
|
|
|
|
{ "true", SSH_TUNMODE_DEFAULT },
|
|
|
|
{ "yes", SSH_TUNMODE_DEFAULT },
|
|
|
|
{ "false", SSH_TUNMODE_NO },
|
|
|
|
{ "no", SSH_TUNMODE_NO },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_requesttty[] = {
|
|
|
|
{ "true", REQUEST_TTY_YES },
|
|
|
|
{ "yes", REQUEST_TTY_YES },
|
|
|
|
{ "false", REQUEST_TTY_NO },
|
|
|
|
{ "no", REQUEST_TTY_NO },
|
|
|
|
{ "force", REQUEST_TTY_FORCE },
|
|
|
|
{ "auto", REQUEST_TTY_AUTO },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2013-10-17 08:48:13 +08:00
|
|
|
static const struct multistate multistate_canonicalizehostname[] = {
|
2013-10-17 08:47:23 +08:00
|
|
|
{ "true", SSH_CANONICALISE_YES },
|
|
|
|
{ "false", SSH_CANONICALISE_NO },
|
|
|
|
{ "yes", SSH_CANONICALISE_YES },
|
|
|
|
{ "no", SSH_CANONICALISE_NO },
|
|
|
|
{ "always", SSH_CANONICALISE_ALWAYS },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2013-10-15 09:14:12 +08:00
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Processes a single option line as used in the configuration files. This
|
|
|
|
* only sets those values that have not already been set.
|
|
|
|
*/
|
2003-02-24 08:56:27 +08:00
|
|
|
#define WHITESPACE " \t\r\n"
|
1999-11-15 12:25:10 +08:00
|
|
|
int
|
2013-10-15 09:13:05 +08:00
|
|
|
process_config_line(Options *options, struct passwd *pw, const char *host,
|
|
|
|
char *line, const char *filename, int linenum, int *activep, int userconfig)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
2011-05-29 19:42:31 +08:00
|
|
|
char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
|
|
|
|
char **cpptr, fwdarg[256];
|
2013-05-16 18:30:03 +08:00
|
|
|
u_int i, *uintptr, max_entries = 0;
|
2013-10-15 09:13:05 +08:00
|
|
|
int negated, opcode, *intptr, value, value2, cmdline = 0;
|
2008-01-01 17:32:26 +08:00
|
|
|
LogLevel *log_level_ptr;
|
2013-05-16 18:48:14 +08:00
|
|
|
long long val64;
|
2003-02-24 08:56:27 +08:00
|
|
|
size_t len;
|
2005-03-01 18:24:33 +08:00
|
|
|
Forward fwd;
|
2013-10-15 09:14:12 +08:00
|
|
|
const struct multistate *multistate_ptr;
|
2013-10-17 08:47:23 +08:00
|
|
|
struct allowed_cname *cname;
|
1999-11-24 21:26:21 +08:00
|
|
|
|
2013-10-15 09:13:05 +08:00
|
|
|
if (activep == NULL) { /* We are processing a command line directive */
|
|
|
|
cmdline = 1;
|
|
|
|
activep = &cmdline;
|
|
|
|
}
|
|
|
|
|
2003-05-14 11:40:54 +08:00
|
|
|
/* Strip trailing whitespace */
|
2005-03-14 20:08:12 +08:00
|
|
|
for (len = strlen(line) - 1; len > 0; len--) {
|
2003-05-14 11:40:54 +08:00
|
|
|
if (strchr(WHITESPACE, line[len]) == NULL)
|
|
|
|
break;
|
|
|
|
line[len] = '\0';
|
|
|
|
}
|
|
|
|
|
2000-07-15 12:14:16 +08:00
|
|
|
s = line;
|
|
|
|
/* Get the keyword. (Each line is supposed to begin with a keyword). */
|
2006-03-26 10:53:32 +08:00
|
|
|
if ((keyword = strdelim(&s)) == NULL)
|
|
|
|
return 0;
|
2000-07-15 12:14:16 +08:00
|
|
|
/* Ignore leading whitespace. */
|
|
|
|
if (*keyword == '\0')
|
|
|
|
keyword = strdelim(&s);
|
2001-01-22 13:34:40 +08:00
|
|
|
if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
|
1999-11-24 21:26:21 +08:00
|
|
|
return 0;
|
2013-05-16 18:30:03 +08:00
|
|
|
/* Match lowercase keyword */
|
2013-10-15 09:14:12 +08:00
|
|
|
lowercase(keyword);
|
1999-11-24 21:26:21 +08:00
|
|
|
|
2013-05-16 18:30:03 +08:00
|
|
|
opcode = parse_token(keyword, filename, linenum,
|
|
|
|
options->ignored_unknown);
|
1999-11-24 21:26:21 +08:00
|
|
|
|
|
|
|
switch (opcode) {
|
|
|
|
case oBadOption:
|
1999-11-25 08:54:57 +08:00
|
|
|
/* don't panic, but count bad options */
|
|
|
|
return -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
/* NOTREACHED */
|
2013-05-16 18:30:03 +08:00
|
|
|
case oIgnoredUnknownOption:
|
|
|
|
debug("%s line %d: Ignored unknown option \"%s\"",
|
|
|
|
filename, linenum, keyword);
|
|
|
|
return 0;
|
2003-05-16 09:39:04 +08:00
|
|
|
case oConnectTimeout:
|
|
|
|
intptr = &options->connection_timeout;
|
2003-12-17 13:33:10 +08:00
|
|
|
parse_time:
|
2003-05-16 09:39:04 +08:00
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing time value.",
|
|
|
|
filename, linenum);
|
|
|
|
if ((value = convtime(arg)) == -1)
|
|
|
|
fatal("%s line %d: invalid time value.",
|
|
|
|
filename, linenum);
|
2007-02-19 19:09:45 +08:00
|
|
|
if (*activep && *intptr == -1)
|
2003-05-16 09:39:04 +08:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oForwardAgent:
|
|
|
|
intptr = &options->forward_agent;
|
2013-10-15 09:14:12 +08:00
|
|
|
parse_flag:
|
|
|
|
multistate_ptr = multistate_flag;
|
|
|
|
parse_multistate:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
2013-10-15 09:14:12 +08:00
|
|
|
fatal("%s line %d: missing argument.",
|
|
|
|
filename, linenum);
|
|
|
|
value = -1;
|
|
|
|
for (i = 0; multistate_ptr[i].key != NULL; i++) {
|
|
|
|
if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
|
|
|
|
value = multistate_ptr[i].value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (value == -1)
|
|
|
|
fatal("%s line %d: unsupported option \"%s\".",
|
|
|
|
filename, linenum, arg);
|
1999-11-24 21:26:21 +08:00
|
|
|
if (*activep && *intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case oForwardX11:
|
|
|
|
intptr = &options->forward_x11;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2003-10-15 13:54:32 +08:00
|
|
|
case oForwardX11Trusted:
|
|
|
|
intptr = &options->forward_x11_trusted;
|
|
|
|
goto parse_flag;
|
2010-06-26 08:02:24 +08:00
|
|
|
|
|
|
|
case oForwardX11Timeout:
|
|
|
|
intptr = &options->forward_x11_timeout;
|
|
|
|
goto parse_time;
|
2003-10-15 13:54:32 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oGatewayPorts:
|
|
|
|
intptr = &options->gateway_ports;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2006-07-12 20:17:10 +08:00
|
|
|
case oExitOnForwardFailure:
|
|
|
|
intptr = &options->exit_on_forward_failure;
|
|
|
|
goto parse_flag;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oUsePrivilegedPort:
|
|
|
|
intptr = &options->use_privileged_port;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case oPasswordAuthentication:
|
|
|
|
intptr = &options->password_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2008-11-05 13:20:46 +08:00
|
|
|
case oZeroKnowledgePasswordAuthentication:
|
|
|
|
intptr = &options->zero_knowledge_password_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2000-10-14 13:23:11 +08:00
|
|
|
case oKbdInteractiveAuthentication:
|
|
|
|
intptr = &options->kbd_interactive_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case oKbdInteractiveDevices:
|
|
|
|
charptr = &options->kbd_interactive_devices;
|
|
|
|
goto parse_string;
|
|
|
|
|
2000-11-13 19:57:25 +08:00
|
|
|
case oPubkeyAuthentication:
|
|
|
|
intptr = &options->pubkey_authentication;
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 10:03:14 +08:00
|
|
|
goto parse_flag;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oRSAAuthentication:
|
|
|
|
intptr = &options->rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case oRhostsRSAAuthentication:
|
|
|
|
intptr = &options->rhosts_rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-04-13 07:34:34 +08:00
|
|
|
case oHostbasedAuthentication:
|
|
|
|
intptr = &options->hostbased_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-01-23 11:12:10 +08:00
|
|
|
case oChallengeResponseAuthentication:
|
2001-06-06 02:56:16 +08:00
|
|
|
intptr = &options->challenge_response_authentication;
|
1999-11-24 21:26:21 +08:00
|
|
|
goto parse_flag;
|
2003-05-15 10:05:28 +08:00
|
|
|
|
2003-08-26 09:49:55 +08:00
|
|
|
case oGssAuthentication:
|
|
|
|
intptr = &options->gss_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case oGssDelegateCreds:
|
|
|
|
intptr = &options->gss_deleg_creds;
|
|
|
|
goto parse_flag;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oBatchMode:
|
|
|
|
intptr = &options->batch_mode;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case oCheckHostIP:
|
|
|
|
intptr = &options->check_host_ip;
|
2008-06-29 22:04:03 +08:00
|
|
|
goto parse_flag;
|
1999-11-24 21:26:21 +08:00
|
|
|
|
2003-05-15 08:19:46 +08:00
|
|
|
case oVerifyHostKeyDNS:
|
|
|
|
intptr = &options->verify_host_key_dns;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_yesnoask;
|
|
|
|
goto parse_multistate;
|
2003-05-15 08:19:46 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oStrictHostKeyChecking:
|
|
|
|
intptr = &options->strict_host_key_checking;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_yesnoask;
|
|
|
|
goto parse_multistate;
|
1999-11-24 21:26:21 +08:00
|
|
|
|
|
|
|
case oCompression:
|
|
|
|
intptr = &options->compression;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2003-12-17 13:31:10 +08:00
|
|
|
case oTCPKeepAlive:
|
|
|
|
intptr = &options->tcp_keep_alive;
|
1999-11-24 21:26:21 +08:00
|
|
|
goto parse_flag;
|
|
|
|
|
2001-10-04 01:39:38 +08:00
|
|
|
case oNoHostAuthenticationForLocalhost:
|
|
|
|
intptr = &options->no_host_authentication_for_localhost;
|
|
|
|
goto parse_flag;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oNumberOfPasswordPrompts:
|
|
|
|
intptr = &options->number_of_password_prompts;
|
|
|
|
goto parse_int;
|
|
|
|
|
|
|
|
case oCompressionLevel:
|
|
|
|
intptr = &options->compression_level;
|
|
|
|
goto parse_int;
|
|
|
|
|
2003-04-09 18:50:06 +08:00
|
|
|
case oRekeyLimit:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
2013-05-16 18:28:16 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename,
|
|
|
|
linenum);
|
|
|
|
if (strcmp(arg, "default") == 0) {
|
|
|
|
val64 = 0;
|
|
|
|
} else {
|
2013-05-16 18:33:10 +08:00
|
|
|
if (scan_scaled(arg, &val64) == -1)
|
|
|
|
fatal("%.200s line %d: Bad number '%s': %s",
|
|
|
|
filename, linenum, arg, strerror(errno));
|
|
|
|
/* check for too-large or too-small limits */
|
|
|
|
if (val64 > UINT_MAX)
|
2013-05-16 18:28:16 +08:00
|
|
|
fatal("%.200s line %d: RekeyLimit too large",
|
|
|
|
filename, linenum);
|
|
|
|
if (val64 != 0 && val64 < 16)
|
|
|
|
fatal("%.200s line %d: RekeyLimit too small",
|
|
|
|
filename, linenum);
|
2003-04-09 18:50:06 +08:00
|
|
|
}
|
2008-02-10 19:25:52 +08:00
|
|
|
if (*activep && options->rekey_limit == -1)
|
|
|
|
options->rekey_limit = (u_int32_t)val64;
|
2013-05-16 18:28:16 +08:00
|
|
|
if (s != NULL) { /* optional rekey interval present */
|
|
|
|
if (strcmp(s, "none") == 0) {
|
|
|
|
(void)strdelim(&s); /* discard */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
intptr = &options->rekey_interval;
|
|
|
|
goto parse_time;
|
|
|
|
}
|
2003-04-09 18:50:06 +08:00
|
|
|
break;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oIdentityFile:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
1999-11-24 21:26:21 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (*activep) {
|
2000-11-13 19:57:25 +08:00
|
|
|
intptr = &options->num_identity_files;
|
2000-04-29 21:57:08 +08:00
|
|
|
if (*intptr >= SSH_MAX_IDENTITY_FILES)
|
1999-11-24 21:26:21 +08:00
|
|
|
fatal("%.200s line %d: Too many identity files specified (max %d).",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, SSH_MAX_IDENTITY_FILES);
|
2013-04-05 08:18:35 +08:00
|
|
|
add_identity_file(options, NULL, arg, userconfig);
|
1999-11-24 21:26:21 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-06-07 17:55:44 +08:00
|
|
|
case oXAuthLocation:
|
|
|
|
charptr=&options->xauth_location;
|
|
|
|
goto parse_string;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oUser:
|
|
|
|
charptr = &options->user;
|
|
|
|
parse_string:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
2011-05-29 19:42:31 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.",
|
|
|
|
filename, linenum);
|
1999-11-24 21:26:21 +08:00
|
|
|
if (*activep && *charptr == NULL)
|
2000-07-11 15:31:38 +08:00
|
|
|
*charptr = xstrdup(arg);
|
1999-11-24 21:26:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case oGlobalKnownHostsFile:
|
2011-05-29 19:42:31 +08:00
|
|
|
cpptr = (char **)&options->system_hostfiles;
|
|
|
|
uintptr = &options->num_system_hostfiles;
|
|
|
|
max_entries = SSH_MAX_HOSTS_FILES;
|
|
|
|
parse_char_array:
|
|
|
|
if (*activep && *uintptr == 0) {
|
|
|
|
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
|
|
|
if ((*uintptr) >= max_entries)
|
|
|
|
fatal("%s line %d: "
|
|
|
|
"too many authorized keys files.",
|
|
|
|
filename, linenum);
|
|
|
|
cpptr[(*uintptr)++] = xstrdup(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
|
|
|
|
case oUserKnownHostsFile:
|
2011-05-29 19:42:31 +08:00
|
|
|
cpptr = (char **)&options->user_hostfiles;
|
|
|
|
uintptr = &options->num_user_hostfiles;
|
|
|
|
max_entries = SSH_MAX_HOSTS_FILES;
|
|
|
|
goto parse_char_array;
|
2000-04-29 21:57:08 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oHostName:
|
|
|
|
charptr = &options->hostname;
|
|
|
|
goto parse_string;
|
|
|
|
|
2000-12-29 00:40:05 +08:00
|
|
|
case oHostKeyAlias:
|
|
|
|
charptr = &options->host_key_alias;
|
|
|
|
goto parse_string;
|
|
|
|
|
2001-03-11 09:49:19 +08:00
|
|
|
case oPreferredAuthentications:
|
|
|
|
charptr = &options->preferred_authentications;
|
|
|
|
goto parse_string;
|
|
|
|
|
2001-04-30 21:06:24 +08:00
|
|
|
case oBindAddress:
|
|
|
|
charptr = &options->bind_address;
|
|
|
|
goto parse_string;
|
|
|
|
|
2010-02-12 06:21:02 +08:00
|
|
|
case oPKCS11Provider:
|
|
|
|
charptr = &options->pkcs11_provider;
|
2001-08-07 05:35:51 +08:00
|
|
|
goto parse_string;
|
2001-08-07 05:27:53 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oProxyCommand:
|
2005-12-13 16:29:02 +08:00
|
|
|
charptr = &options->proxy_command;
|
|
|
|
parse_command:
|
2003-06-28 10:40:12 +08:00
|
|
|
if (s == NULL)
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2003-02-24 08:56:27 +08:00
|
|
|
len = strspn(s, WHITESPACE "=");
|
1999-11-24 21:26:21 +08:00
|
|
|
if (*activep && *charptr == NULL)
|
2003-02-24 08:56:27 +08:00
|
|
|
*charptr = xstrdup(s + len);
|
1999-11-24 21:26:21 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case oPort:
|
|
|
|
intptr = &options->port;
|
|
|
|
parse_int:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
1999-11-24 21:26:21 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (arg[0] < '0' || arg[0] > '9')
|
1999-11-24 21:26:21 +08:00
|
|
|
fatal("%.200s line %d: Bad number.", filename, linenum);
|
1999-11-25 08:54:57 +08:00
|
|
|
|
|
|
|
/* Octal, decimal, or hex format? */
|
2000-07-11 15:31:38 +08:00
|
|
|
value = strtol(arg, &endofnumber, 0);
|
|
|
|
if (arg == endofnumber)
|
1999-11-25 08:54:57 +08:00
|
|
|
fatal("%.200s line %d: Bad number.", filename, linenum);
|
1999-11-24 21:26:21 +08:00
|
|
|
if (*activep && *intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case oConnectionAttempts:
|
|
|
|
intptr = &options->connection_attempts;
|
|
|
|
goto parse_int;
|
|
|
|
|
|
|
|
case oCipher:
|
|
|
|
intptr = &options->cipher;
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
2000-05-30 11:44:51 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2000-07-11 15:31:38 +08:00
|
|
|
value = cipher_number(arg);
|
1999-11-24 21:26:21 +08:00
|
|
|
if (value == -1)
|
|
|
|
fatal("%.200s line %d: Bad cipher '%s'.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
1999-11-24 21:26:21 +08:00
|
|
|
if (*activep && *intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
2000-04-12 18:17:38 +08:00
|
|
|
case oCiphers:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
2000-05-30 11:44:51 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!ciphers_valid(arg))
|
2000-05-09 09:02:59 +08:00
|
|
|
fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2000-04-12 18:17:38 +08:00
|
|
|
if (*activep && options->ciphers == NULL)
|
2000-07-11 15:31:38 +08:00
|
|
|
options->ciphers = xstrdup(arg);
|
2000-04-12 18:17:38 +08:00
|
|
|
break;
|
|
|
|
|
2001-02-15 11:01:59 +08:00
|
|
|
case oMacs:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!mac_valid(arg))
|
|
|
|
fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2001-02-15 11:01:59 +08:00
|
|
|
if (*activep && options->macs == NULL)
|
|
|
|
options->macs = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2010-09-24 20:11:14 +08:00
|
|
|
case oKexAlgorithms:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing argument.",
|
|
|
|
filename, linenum);
|
|
|
|
if (!kex_names_valid(arg))
|
|
|
|
fatal("%.200s line %d: Bad SSH2 KexAlgorithms '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (*activep && options->kex_algorithms == NULL)
|
|
|
|
options->kex_algorithms = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2001-04-18 02:11:36 +08:00
|
|
|
case oHostKeyAlgorithms:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!key_names_valid2(arg))
|
|
|
|
fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2001-04-18 02:11:36 +08:00
|
|
|
if (*activep && options->hostkeyalgorithms == NULL)
|
|
|
|
options->hostkeyalgorithms = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2000-04-12 18:17:38 +08:00
|
|
|
case oProtocol:
|
|
|
|
intptr = &options->protocol;
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
2000-05-30 11:44:51 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2000-07-11 15:31:38 +08:00
|
|
|
value = proto_spec(arg);
|
2000-04-12 18:17:38 +08:00
|
|
|
if (value == SSH_PROTO_UNKNOWN)
|
|
|
|
fatal("%.200s line %d: Bad protocol spec '%s'.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2000-04-12 18:17:38 +08:00
|
|
|
if (*activep && *intptr == SSH_PROTO_UNKNOWN)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oLogLevel:
|
2008-01-01 17:32:26 +08:00
|
|
|
log_level_ptr = &options->log_level;
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
value = log_level_number(arg);
|
2002-02-05 09:26:34 +08:00
|
|
|
if (value == SYSLOG_LEVEL_NOT_SET)
|
2001-03-05 15:47:23 +08:00
|
|
|
fatal("%.200s line %d: unsupported log level '%s'",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2008-01-01 17:32:26 +08:00
|
|
|
if (*activep && *log_level_ptr == SYSLOG_LEVEL_NOT_SET)
|
|
|
|
*log_level_ptr = (LogLevel) value;
|
1999-11-24 21:26:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case oLocalForward:
|
2001-09-13 02:01:59 +08:00
|
|
|
case oRemoteForward:
|
2008-11-03 16:27:34 +08:00
|
|
|
case oDynamicForward:
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2005-03-01 18:24:33 +08:00
|
|
|
if (arg == NULL || *arg == '\0')
|
2001-09-13 02:01:59 +08:00
|
|
|
fatal("%.200s line %d: Missing port argument.",
|
|
|
|
filename, linenum);
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2008-11-03 16:27:34 +08:00
|
|
|
if (opcode == oLocalForward ||
|
|
|
|
opcode == oRemoteForward) {
|
|
|
|
arg2 = strdelim(&s);
|
|
|
|
if (arg2 == NULL || *arg2 == '\0')
|
|
|
|
fatal("%.200s line %d: Missing target argument.",
|
|
|
|
filename, linenum);
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2008-11-03 16:27:34 +08:00
|
|
|
/* construct a string for parse_forward */
|
|
|
|
snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
|
|
|
|
} else if (opcode == oDynamicForward) {
|
|
|
|
strlcpy(fwdarg, arg, sizeof(fwdarg));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parse_forward(&fwd, fwdarg,
|
2009-02-14 13:28:21 +08:00
|
|
|
opcode == oDynamicForward ? 1 : 0,
|
|
|
|
opcode == oRemoteForward ? 1 : 0) == 0)
|
2001-09-13 02:01:59 +08:00
|
|
|
fatal("%.200s line %d: Bad forwarding specification.",
|
|
|
|
filename, linenum);
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2001-09-13 02:01:59 +08:00
|
|
|
if (*activep) {
|
2008-11-03 16:27:34 +08:00
|
|
|
if (opcode == oLocalForward ||
|
|
|
|
opcode == oDynamicForward)
|
2005-03-01 18:24:33 +08:00
|
|
|
add_local_forward(options, &fwd);
|
2001-09-13 02:01:59 +08:00
|
|
|
else if (opcode == oRemoteForward)
|
2005-03-01 18:24:33 +08:00
|
|
|
add_remote_forward(options, &fwd);
|
2001-09-13 02:01:59 +08:00
|
|
|
}
|
1999-11-24 21:26:21 +08:00
|
|
|
break;
|
|
|
|
|
2001-09-20 08:57:55 +08:00
|
|
|
case oClearAllForwardings:
|
|
|
|
intptr = &options->clear_forwardings;
|
|
|
|
goto parse_flag;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oHost:
|
2013-10-15 09:13:05 +08:00
|
|
|
if (cmdline)
|
|
|
|
fatal("Host directive not supported as a command-line "
|
|
|
|
"option");
|
1999-11-24 21:26:21 +08:00
|
|
|
*activep = 0;
|
2011-05-15 06:44:45 +08:00
|
|
|
arg2 = NULL;
|
|
|
|
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
|
|
|
negated = *arg == '!';
|
|
|
|
if (negated)
|
|
|
|
arg++;
|
2000-07-11 15:31:38 +08:00
|
|
|
if (match_pattern(host, arg)) {
|
2011-05-15 06:44:45 +08:00
|
|
|
if (negated) {
|
|
|
|
debug("%.200s line %d: Skipping Host "
|
|
|
|
"block because of negated match "
|
|
|
|
"for %.100s", filename, linenum,
|
|
|
|
arg);
|
|
|
|
*activep = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!*activep)
|
|
|
|
arg2 = arg; /* logged below */
|
1999-11-24 21:26:21 +08:00
|
|
|
*activep = 1;
|
|
|
|
}
|
2011-05-15 06:44:45 +08:00
|
|
|
}
|
|
|
|
if (*activep)
|
|
|
|
debug("%.200s line %d: Applying options for %.100s",
|
|
|
|
filename, linenum, arg2);
|
2000-07-15 12:14:16 +08:00
|
|
|
/* Avoid garbage check below, as strdelim is done. */
|
1999-11-24 21:26:21 +08:00
|
|
|
return 0;
|
|
|
|
|
2013-10-15 09:13:05 +08:00
|
|
|
case oMatch:
|
|
|
|
if (cmdline)
|
|
|
|
fatal("Host directive not supported as a command-line "
|
|
|
|
"option");
|
|
|
|
value = match_cfg_line(options, &s, pw, host,
|
|
|
|
filename, linenum);
|
|
|
|
if (value < 0)
|
|
|
|
fatal("%.200s line %d: Bad Match condition", filename,
|
|
|
|
linenum);
|
|
|
|
*activep = value;
|
|
|
|
break;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
case oEscapeChar:
|
|
|
|
intptr = &options->escape_char;
|
2000-07-15 12:14:16 +08:00
|
|
|
arg = strdelim(&s);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (!arg || *arg == '\0')
|
1999-11-24 21:26:21 +08:00
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
2000-07-11 15:31:38 +08:00
|
|
|
if (arg[0] == '^' && arg[2] == 0 &&
|
2000-12-22 09:43:59 +08:00
|
|
|
(u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
|
|
|
|
value = (u_char) arg[1] & 31;
|
2000-07-11 15:31:38 +08:00
|
|
|
else if (strlen(arg) == 1)
|
2000-12-22 09:43:59 +08:00
|
|
|
value = (u_char) arg[0];
|
2000-07-11 15:31:38 +08:00
|
|
|
else if (strcmp(arg, "none") == 0)
|
2001-06-06 04:32:21 +08:00
|
|
|
value = SSH_ESCAPECHAR_NONE;
|
1999-11-24 21:26:21 +08:00
|
|
|
else {
|
|
|
|
fatal("%.200s line %d: Bad escape character.",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, linenum);
|
1999-11-24 21:26:21 +08:00
|
|
|
/* NOTREACHED */
|
|
|
|
value = 0; /* Avoid compiler warning. */
|
|
|
|
}
|
|
|
|
if (*activep && *intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
2003-05-18 18:50:30 +08:00
|
|
|
case oAddressFamily:
|
2003-07-03 18:37:47 +08:00
|
|
|
intptr = &options->address_family;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_addressfamily;
|
|
|
|
goto parse_multistate;
|
2003-05-18 18:50:30 +08:00
|
|
|
|
2002-11-09 23:52:31 +08:00
|
|
|
case oEnableSSHKeysign:
|
|
|
|
intptr = &options->enable_ssh_keysign;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2004-03-08 20:12:36 +08:00
|
|
|
case oIdentitiesOnly:
|
|
|
|
intptr = &options->identities_only;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2003-12-17 13:33:10 +08:00
|
|
|
case oServerAliveInterval:
|
|
|
|
intptr = &options->server_alive_interval;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case oServerAliveCountMax:
|
|
|
|
intptr = &options->server_alive_count_max;
|
|
|
|
goto parse_int;
|
|
|
|
|
2004-05-02 20:11:30 +08:00
|
|
|
case oSendEnv:
|
|
|
|
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
|
|
|
if (strchr(arg, '=') != NULL)
|
|
|
|
fatal("%s line %d: Invalid environment name.",
|
|
|
|
filename, linenum);
|
2005-03-05 08:22:50 +08:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2004-05-02 20:11:30 +08:00
|
|
|
if (options->num_send_env >= MAX_SEND_ENV)
|
|
|
|
fatal("%s line %d: too many send env.",
|
|
|
|
filename, linenum);
|
|
|
|
options->send_env[options->num_send_env++] =
|
|
|
|
xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-06-15 08:34:08 +08:00
|
|
|
case oControlPath:
|
|
|
|
charptr = &options->control_path;
|
|
|
|
goto parse_string;
|
|
|
|
|
|
|
|
case oControlMaster:
|
|
|
|
intptr = &options->control_master;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_controlmaster;
|
|
|
|
goto parse_multistate;
|
2004-06-15 08:34:08 +08:00
|
|
|
|
2010-08-03 14:04:46 +08:00
|
|
|
case oControlPersist:
|
|
|
|
/* no/false/yes/true, or a time spec */
|
|
|
|
intptr = &options->control_persist;
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing ControlPersist"
|
|
|
|
" argument.", filename, linenum);
|
|
|
|
value = 0;
|
|
|
|
value2 = 0; /* timeout */
|
|
|
|
if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
|
|
|
|
value = 0;
|
|
|
|
else if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
|
|
|
|
value = 1;
|
|
|
|
else if ((value2 = convtime(arg)) >= 0)
|
|
|
|
value = 1;
|
|
|
|
else
|
|
|
|
fatal("%.200s line %d: Bad ControlPersist argument.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *intptr == -1) {
|
|
|
|
*intptr = value;
|
|
|
|
options->control_persist_timeout = value2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-03-01 18:47:37 +08:00
|
|
|
case oHashKnownHosts:
|
|
|
|
intptr = &options->hash_known_hosts;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2005-12-13 16:29:02 +08:00
|
|
|
case oTunnel:
|
|
|
|
intptr = &options->tun_open;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_tunnel;
|
|
|
|
goto parse_multistate;
|
2005-12-13 16:29:02 +08:00
|
|
|
|
|
|
|
case oTunnelDevice:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename, linenum);
|
|
|
|
value = a2tun(arg, &value2);
|
2005-12-13 16:33:19 +08:00
|
|
|
if (value == SSH_TUNID_ERR)
|
2005-12-13 16:29:02 +08:00
|
|
|
fatal("%.200s line %d: Bad tun device.", filename, linenum);
|
|
|
|
if (*activep) {
|
|
|
|
options->tun_local = value;
|
|
|
|
options->tun_remote = value2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case oLocalCommand:
|
|
|
|
charptr = &options->local_command;
|
|
|
|
goto parse_command;
|
|
|
|
|
|
|
|
case oPermitLocalCommand:
|
|
|
|
intptr = &options->permit_local_command;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2008-06-29 22:04:03 +08:00
|
|
|
case oVisualHostKey:
|
|
|
|
intptr = &options->visual_host_key;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2010-11-20 12:19:38 +08:00
|
|
|
case oIPQoS:
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if ((value = parse_ipqos(arg)) == -1)
|
|
|
|
fatal("%s line %d: Bad IPQoS value: %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
arg = strdelim(&s);
|
|
|
|
if (arg == NULL)
|
|
|
|
value2 = value;
|
|
|
|
else if ((value2 = parse_ipqos(arg)) == -1)
|
|
|
|
fatal("%s line %d: Bad IPQoS value: %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
if (*activep) {
|
|
|
|
options->ip_qos_interactive = value;
|
|
|
|
options->ip_qos_bulk = value2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-07-06 05:12:27 +08:00
|
|
|
case oUseRoaming:
|
|
|
|
intptr = &options->use_roaming;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2011-05-15 06:45:50 +08:00
|
|
|
case oRequestTTY:
|
|
|
|
intptr = &options->request_tty;
|
2013-10-15 09:14:12 +08:00
|
|
|
multistate_ptr = multistate_requesttty;
|
|
|
|
goto parse_multistate;
|
2011-05-15 06:45:50 +08:00
|
|
|
|
2013-05-16 18:30:03 +08:00
|
|
|
case oIgnoreUnknown:
|
|
|
|
charptr = &options->ignored_unknown;
|
|
|
|
goto parse_string;
|
|
|
|
|
2013-08-21 00:44:24 +08:00
|
|
|
case oProxyUseFdpass:
|
|
|
|
intptr = &options->proxy_use_fdpass;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2013-10-17 08:47:23 +08:00
|
|
|
case oCanonicalDomains:
|
|
|
|
value = options->num_canonical_domains != 0;
|
|
|
|
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
|
|
|
valid_domain(arg, filename, linenum);
|
|
|
|
if (!*activep || value)
|
|
|
|
continue;
|
|
|
|
if (options->num_canonical_domains >= MAX_CANON_DOMAINS)
|
|
|
|
fatal("%s line %d: too many hostname suffixes.",
|
|
|
|
filename, linenum);
|
|
|
|
options->canonical_domains[
|
|
|
|
options->num_canonical_domains++] = xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-10-17 08:48:13 +08:00
|
|
|
case oCanonicalizePermittedCNAMEs:
|
2013-10-17 08:47:23 +08:00
|
|
|
value = options->num_permitted_cnames != 0;
|
|
|
|
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
|
|
|
/* Either '*' for everything or 'list:list' */
|
|
|
|
if (strcmp(arg, "*") == 0)
|
|
|
|
arg2 = arg;
|
|
|
|
else {
|
|
|
|
lowercase(arg);
|
|
|
|
if ((arg2 = strchr(arg, ':')) == NULL ||
|
|
|
|
arg2[1] == '\0') {
|
|
|
|
fatal("%s line %d: "
|
|
|
|
"Invalid permitted CNAME \"%s\"",
|
|
|
|
filename, linenum, arg);
|
|
|
|
}
|
|
|
|
*arg2 = '\0';
|
|
|
|
arg2++;
|
|
|
|
}
|
|
|
|
if (!*activep || value)
|
|
|
|
continue;
|
|
|
|
if (options->num_permitted_cnames >= MAX_CANON_DOMAINS)
|
|
|
|
fatal("%s line %d: too many permitted CNAMEs.",
|
|
|
|
filename, linenum);
|
|
|
|
cname = options->permitted_cnames +
|
|
|
|
options->num_permitted_cnames++;
|
|
|
|
cname->source_list = xstrdup(arg);
|
|
|
|
cname->target_list = xstrdup(arg2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-10-17 08:48:13 +08:00
|
|
|
case oCanonicalizeHostname:
|
|
|
|
intptr = &options->canonicalize_hostname;
|
|
|
|
multistate_ptr = multistate_canonicalizehostname;
|
2013-10-17 08:47:23 +08:00
|
|
|
goto parse_multistate;
|
|
|
|
|
2013-10-17 08:48:13 +08:00
|
|
|
case oCanonicalizeMaxDots:
|
|
|
|
intptr = &options->canonicalize_max_dots;
|
2013-10-17 08:47:23 +08:00
|
|
|
goto parse_int;
|
|
|
|
|
2013-10-17 08:48:13 +08:00
|
|
|
case oCanonicalizeFallbackLocal:
|
|
|
|
intptr = &options->canonicalize_fallback_local;
|
2013-10-17 08:47:23 +08:00
|
|
|
goto parse_flag;
|
|
|
|
|
2002-06-10 04:04:02 +08:00
|
|
|
case oDeprecated:
|
2002-06-10 04:13:27 +08:00
|
|
|
debug("%s line %d: Deprecated option \"%s\"",
|
2002-06-10 04:04:02 +08:00
|
|
|
filename, linenum, keyword);
|
2002-06-10 04:13:27 +08:00
|
|
|
return 0;
|
2002-06-10 04:04:02 +08:00
|
|
|
|
2003-05-16 09:38:32 +08:00
|
|
|
case oUnsupported:
|
|
|
|
error("%s line %d: Unsupported option \"%s\"",
|
|
|
|
filename, linenum, keyword);
|
|
|
|
return 0;
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
default:
|
|
|
|
fatal("process_config_line: Unimplemented opcode %d", opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that there is no garbage at end of line. */
|
2001-01-22 13:34:40 +08:00
|
|
|
if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
|
2000-07-11 15:31:38 +08:00
|
|
|
fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
|
2005-07-17 15:22:45 +08:00
|
|
|
filename, linenum, arg);
|
2000-07-11 15:31:38 +08:00
|
|
|
}
|
1999-11-24 21:26:21 +08:00
|
|
|
return 0;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Reads the config file and modifies the options accordingly. Options
|
|
|
|
* should already be initialized before this call. This never returns if
|
2001-09-13 02:32:20 +08:00
|
|
|
* there is an error. If the file does not exist, this returns 0.
|
1999-11-25 08:54:57 +08:00
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2001-09-13 02:32:20 +08:00
|
|
|
int
|
2013-10-15 09:13:05 +08:00
|
|
|
read_config_file(const char *filename, struct passwd *pw, const char *host,
|
|
|
|
Options *options, int flags)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
1999-11-24 21:26:21 +08:00
|
|
|
FILE *f;
|
|
|
|
char line[1024];
|
|
|
|
int active, linenum;
|
|
|
|
int bad_options = 0;
|
|
|
|
|
2004-04-20 18:11:57 +08:00
|
|
|
if ((f = fopen(filename, "r")) == NULL)
|
2001-09-13 02:32:20 +08:00
|
|
|
return 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
|
2013-04-05 08:18:35 +08:00
|
|
|
if (flags & SSHCONF_CHECKPERM) {
|
2004-04-20 18:11:57 +08:00
|
|
|
struct stat sb;
|
2004-07-17 14:12:08 +08:00
|
|
|
|
2004-06-15 08:27:55 +08:00
|
|
|
if (fstat(fileno(f), &sb) == -1)
|
2004-04-20 18:11:57 +08:00
|
|
|
fatal("fstat %s: %s", filename, strerror(errno));
|
|
|
|
if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
|
2004-06-15 08:27:55 +08:00
|
|
|
(sb.st_mode & 022) != 0))
|
2004-04-20 18:11:57 +08:00
|
|
|
fatal("Bad owner or permissions on %s", filename);
|
|
|
|
}
|
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
debug("Reading configuration data %.200s", filename);
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Mark that we are now processing the options. This flag is turned
|
|
|
|
* on/off by Host specifications.
|
|
|
|
*/
|
1999-11-24 21:26:21 +08:00
|
|
|
active = 1;
|
|
|
|
linenum = 0;
|
|
|
|
while (fgets(line, sizeof(line), f)) {
|
|
|
|
/* Update line number counter. */
|
|
|
|
linenum++;
|
2013-10-15 09:13:05 +08:00
|
|
|
if (process_config_line(options, pw, host, line, filename,
|
|
|
|
linenum, &active, flags & SSHCONF_USERCONF) != 0)
|
1999-11-24 21:26:21 +08:00
|
|
|
bad_options++;
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
if (bad_options > 0)
|
2001-03-05 15:47:23 +08:00
|
|
|
fatal("%s: terminating, %d bad configuration options",
|
2001-12-21 11:45:46 +08:00
|
|
|
filename, bad_options);
|
2001-09-13 02:32:20 +08:00
|
|
|
return 1;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Initializes options to special values that indicate that they have not yet
|
|
|
|
* been set. Read_config_file will only set options with this value. Options
|
|
|
|
* are processed in the following order: command line, user config file,
|
|
|
|
* system config file. Last, fill_default_options is called.
|
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2000-04-16 09:18:38 +08:00
|
|
|
void
|
1999-11-24 21:26:21 +08:00
|
|
|
initialize_options(Options * options)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
1999-11-24 21:26:21 +08:00
|
|
|
memset(options, 'X', sizeof(*options));
|
|
|
|
options->forward_agent = -1;
|
|
|
|
options->forward_x11 = -1;
|
2003-10-15 13:54:32 +08:00
|
|
|
options->forward_x11_trusted = -1;
|
2010-06-26 08:02:24 +08:00
|
|
|
options->forward_x11_timeout = -1;
|
2006-07-12 20:17:10 +08:00
|
|
|
options->exit_on_forward_failure = -1;
|
2000-06-07 17:55:44 +08:00
|
|
|
options->xauth_location = NULL;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->gateway_ports = -1;
|
|
|
|
options->use_privileged_port = -1;
|
|
|
|
options->rsa_authentication = -1;
|
2000-11-13 19:57:25 +08:00
|
|
|
options->pubkey_authentication = -1;
|
2001-06-06 02:56:16 +08:00
|
|
|
options->challenge_response_authentication = -1;
|
2003-08-26 09:49:55 +08:00
|
|
|
options->gss_authentication = -1;
|
|
|
|
options->gss_deleg_creds = -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->password_authentication = -1;
|
2000-10-14 13:23:11 +08:00
|
|
|
options->kbd_interactive_authentication = -1;
|
|
|
|
options->kbd_interactive_devices = NULL;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->rhosts_rsa_authentication = -1;
|
2001-04-13 07:34:34 +08:00
|
|
|
options->hostbased_authentication = -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->batch_mode = -1;
|
|
|
|
options->check_host_ip = -1;
|
|
|
|
options->strict_host_key_checking = -1;
|
|
|
|
options->compression = -1;
|
2003-12-17 13:31:10 +08:00
|
|
|
options->tcp_keep_alive = -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->compression_level = -1;
|
|
|
|
options->port = -1;
|
2003-07-03 18:37:47 +08:00
|
|
|
options->address_family = -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->connection_attempts = -1;
|
2003-05-16 09:39:04 +08:00
|
|
|
options->connection_timeout = -1;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->number_of_password_prompts = -1;
|
|
|
|
options->cipher = -1;
|
2000-04-12 18:17:38 +08:00
|
|
|
options->ciphers = NULL;
|
2001-02-15 11:01:59 +08:00
|
|
|
options->macs = NULL;
|
2010-09-24 20:11:14 +08:00
|
|
|
options->kex_algorithms = NULL;
|
2001-04-18 02:11:36 +08:00
|
|
|
options->hostkeyalgorithms = NULL;
|
2000-04-12 18:17:38 +08:00
|
|
|
options->protocol = SSH_PROTO_UNKNOWN;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->num_identity_files = 0;
|
|
|
|
options->hostname = NULL;
|
2000-12-29 00:40:05 +08:00
|
|
|
options->host_key_alias = NULL;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->proxy_command = NULL;
|
|
|
|
options->user = NULL;
|
|
|
|
options->escape_char = -1;
|
2011-05-29 19:42:31 +08:00
|
|
|
options->num_system_hostfiles = 0;
|
|
|
|
options->num_user_hostfiles = 0;
|
2010-06-26 07:50:30 +08:00
|
|
|
options->local_forwards = NULL;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->num_local_forwards = 0;
|
2010-06-26 07:50:30 +08:00
|
|
|
options->remote_forwards = NULL;
|
1999-11-24 21:26:21 +08:00
|
|
|
options->num_remote_forwards = 0;
|
2001-09-20 08:57:55 +08:00
|
|
|
options->clear_forwardings = -1;
|
2002-02-05 09:26:34 +08:00
|
|
|
options->log_level = SYSLOG_LEVEL_NOT_SET;
|
2001-03-11 09:49:19 +08:00
|
|
|
options->preferred_authentications = NULL;
|
2001-04-30 21:06:24 +08:00
|
|
|
options->bind_address = NULL;
|
2010-02-12 06:21:02 +08:00
|
|
|
options->pkcs11_provider = NULL;
|
2002-11-09 23:52:31 +08:00
|
|
|
options->enable_ssh_keysign = - 1;
|
2001-10-04 01:39:38 +08:00
|
|
|
options->no_host_authentication_for_localhost = - 1;
|
2004-03-08 20:12:36 +08:00
|
|
|
options->identities_only = - 1;
|
2003-04-09 18:50:06 +08:00
|
|
|
options->rekey_limit = - 1;
|
2013-05-16 18:28:16 +08:00
|
|
|
options->rekey_interval = -1;
|
2003-05-15 08:19:46 +08:00
|
|
|
options->verify_host_key_dns = -1;
|
2003-12-17 13:33:10 +08:00
|
|
|
options->server_alive_interval = -1;
|
|
|
|
options->server_alive_count_max = -1;
|
2004-05-02 20:11:30 +08:00
|
|
|
options->num_send_env = 0;
|
2004-06-15 08:34:08 +08:00
|
|
|
options->control_path = NULL;
|
|
|
|
options->control_master = -1;
|
2010-08-03 14:04:46 +08:00
|
|
|
options->control_persist = -1;
|
|
|
|
options->control_persist_timeout = 0;
|
2005-03-01 18:47:37 +08:00
|
|
|
options->hash_known_hosts = -1;
|
2005-12-13 16:29:02 +08:00
|
|
|
options->tun_open = -1;
|
|
|
|
options->tun_local = -1;
|
|
|
|
options->tun_remote = -1;
|
|
|
|
options->local_command = NULL;
|
|
|
|
options->permit_local_command = -1;
|
2009-07-06 05:12:27 +08:00
|
|
|
options->use_roaming = -1;
|
2008-06-29 22:04:03 +08:00
|
|
|
options->visual_host_key = -1;
|
2008-11-05 13:20:46 +08:00
|
|
|
options->zero_knowledge_password_authentication = -1;
|
2010-11-20 12:19:38 +08:00
|
|
|
options->ip_qos_interactive = -1;
|
|
|
|
options->ip_qos_bulk = -1;
|
2011-05-15 06:45:50 +08:00
|
|
|
options->request_tty = -1;
|
2013-08-21 00:44:24 +08:00
|
|
|
options->proxy_use_fdpass = -1;
|
2013-05-16 18:30:03 +08:00
|
|
|
options->ignored_unknown = NULL;
|
2013-10-17 08:47:23 +08:00
|
|
|
options->num_canonical_domains = 0;
|
|
|
|
options->num_permitted_cnames = 0;
|
2013-10-17 08:48:13 +08:00
|
|
|
options->canonicalize_max_dots = -1;
|
|
|
|
options->canonicalize_fallback_local = -1;
|
|
|
|
options->canonicalize_hostname = -1;
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Called after processing other sources of option data, this fills those
|
|
|
|
* options for which no value has been specified with their default values.
|
|
|
|
*/
|
1999-10-27 11:42:43 +08:00
|
|
|
|
2000-04-16 09:18:38 +08:00
|
|
|
void
|
1999-11-24 21:26:21 +08:00
|
|
|
fill_default_options(Options * options)
|
1999-10-27 11:42:43 +08:00
|
|
|
{
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->forward_agent == -1)
|
2000-05-30 11:44:51 +08:00
|
|
|
options->forward_agent = 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->forward_x11 == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 18:27:49 +08:00
|
|
|
options->forward_x11 = 0;
|
2003-10-15 13:54:32 +08:00
|
|
|
if (options->forward_x11_trusted == -1)
|
|
|
|
options->forward_x11_trusted = 0;
|
2010-06-26 08:02:24 +08:00
|
|
|
if (options->forward_x11_timeout == -1)
|
|
|
|
options->forward_x11_timeout = 1200;
|
2006-07-12 20:17:10 +08:00
|
|
|
if (options->exit_on_forward_failure == -1)
|
|
|
|
options->exit_on_forward_failure = 0;
|
2000-06-07 17:55:44 +08:00
|
|
|
if (options->xauth_location == NULL)
|
2001-06-09 09:48:01 +08:00
|
|
|
options->xauth_location = _PATH_XAUTH;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->gateway_ports == -1)
|
|
|
|
options->gateway_ports = 0;
|
|
|
|
if (options->use_privileged_port == -1)
|
2001-03-08 11:39:10 +08:00
|
|
|
options->use_privileged_port = 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->rsa_authentication == -1)
|
|
|
|
options->rsa_authentication = 1;
|
2000-11-13 19:57:25 +08:00
|
|
|
if (options->pubkey_authentication == -1)
|
|
|
|
options->pubkey_authentication = 1;
|
2001-06-06 02:56:16 +08:00
|
|
|
if (options->challenge_response_authentication == -1)
|
2001-08-07 04:53:26 +08:00
|
|
|
options->challenge_response_authentication = 1;
|
2003-08-26 09:49:55 +08:00
|
|
|
if (options->gss_authentication == -1)
|
2003-10-15 13:52:03 +08:00
|
|
|
options->gss_authentication = 0;
|
2003-08-26 09:49:55 +08:00
|
|
|
if (options->gss_deleg_creds == -1)
|
|
|
|
options->gss_deleg_creds = 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->password_authentication == -1)
|
|
|
|
options->password_authentication = 1;
|
2000-10-14 13:23:11 +08:00
|
|
|
if (options->kbd_interactive_authentication == -1)
|
2001-01-23 11:12:10 +08:00
|
|
|
options->kbd_interactive_authentication = 1;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->rhosts_rsa_authentication == -1)
|
2002-06-11 23:53:05 +08:00
|
|
|
options->rhosts_rsa_authentication = 0;
|
2001-04-13 07:34:34 +08:00
|
|
|
if (options->hostbased_authentication == -1)
|
|
|
|
options->hostbased_authentication = 0;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->batch_mode == -1)
|
|
|
|
options->batch_mode = 0;
|
|
|
|
if (options->check_host_ip == -1)
|
|
|
|
options->check_host_ip = 1;
|
|
|
|
if (options->strict_host_key_checking == -1)
|
|
|
|
options->strict_host_key_checking = 2; /* 2 is default */
|
|
|
|
if (options->compression == -1)
|
|
|
|
options->compression = 0;
|
2003-12-17 13:31:10 +08:00
|
|
|
if (options->tcp_keep_alive == -1)
|
|
|
|
options->tcp_keep_alive = 1;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->compression_level == -1)
|
|
|
|
options->compression_level = 6;
|
|
|
|
if (options->port == -1)
|
|
|
|
options->port = 0; /* Filled in ssh_connect. */
|
2003-07-03 18:37:47 +08:00
|
|
|
if (options->address_family == -1)
|
|
|
|
options->address_family = AF_UNSPEC;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->connection_attempts == -1)
|
2001-08-07 05:07:11 +08:00
|
|
|
options->connection_attempts = 1;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->number_of_password_prompts == -1)
|
|
|
|
options->number_of_password_prompts = 3;
|
|
|
|
/* Selected in ssh_login(). */
|
|
|
|
if (options->cipher == -1)
|
|
|
|
options->cipher = SSH_CIPHER_NOT_SET;
|
2000-05-09 09:02:59 +08:00
|
|
|
/* options->ciphers, default set in myproposals.h */
|
2001-02-15 11:01:59 +08:00
|
|
|
/* options->macs, default set in myproposals.h */
|
2010-09-24 20:11:14 +08:00
|
|
|
/* options->kex_algorithms, default set in myproposals.h */
|
2001-04-18 02:11:36 +08:00
|
|
|
/* options->hostkeyalgorithms, default set in myproposals.h */
|
2000-04-12 18:17:38 +08:00
|
|
|
if (options->protocol == SSH_PROTO_UNKNOWN)
|
2009-10-11 18:51:08 +08:00
|
|
|
options->protocol = SSH_PROTO_2;
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->num_identity_files == 0) {
|
2000-11-13 19:57:25 +08:00
|
|
|
if (options->protocol & SSH_PROTO_1) {
|
2013-04-05 08:13:08 +08:00
|
|
|
add_identity_file(options, "~/",
|
|
|
|
_PATH_SSH_CLIENT_IDENTITY, 0);
|
2000-11-13 19:57:25 +08:00
|
|
|
}
|
|
|
|
if (options->protocol & SSH_PROTO_2) {
|
2013-04-05 08:13:08 +08:00
|
|
|
add_identity_file(options, "~/",
|
|
|
|
_PATH_SSH_CLIENT_ID_RSA, 0);
|
|
|
|
add_identity_file(options, "~/",
|
|
|
|
_PATH_SSH_CLIENT_ID_DSA, 0);
|
2010-09-10 09:39:26 +08:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2013-04-05 08:13:08 +08:00
|
|
|
add_identity_file(options, "~/",
|
|
|
|
_PATH_SSH_CLIENT_ID_ECDSA, 0);
|
2010-09-10 09:39:26 +08:00
|
|
|
#endif
|
2000-11-13 19:57:25 +08:00
|
|
|
}
|
2000-04-29 21:57:08 +08:00
|
|
|
}
|
1999-11-24 21:26:21 +08:00
|
|
|
if (options->escape_char == -1)
|
|
|
|
options->escape_char = '~';
|
2011-05-29 19:42:31 +08:00
|
|
|
if (options->num_system_hostfiles == 0) {
|
|
|
|
options->system_hostfiles[options->num_system_hostfiles++] =
|
|
|
|
xstrdup(_PATH_SSH_SYSTEM_HOSTFILE);
|
|
|
|
options->system_hostfiles[options->num_system_hostfiles++] =
|
|
|
|
xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
|
|
|
|
}
|
|
|
|
if (options->num_user_hostfiles == 0) {
|
|
|
|
options->user_hostfiles[options->num_user_hostfiles++] =
|
|
|
|
xstrdup(_PATH_SSH_USER_HOSTFILE);
|
|
|
|
options->user_hostfiles[options->num_user_hostfiles++] =
|
|
|
|
xstrdup(_PATH_SSH_USER_HOSTFILE2);
|
|
|
|
}
|
2002-02-05 09:26:34 +08:00
|
|
|
if (options->log_level == SYSLOG_LEVEL_NOT_SET)
|
2001-01-19 12:26:52 +08:00
|
|
|
options->log_level = SYSLOG_LEVEL_INFO;
|
2001-09-20 08:57:55 +08:00
|
|
|
if (options->clear_forwardings == 1)
|
|
|
|
clear_forwardings(options);
|
2001-10-04 01:39:38 +08:00
|
|
|
if (options->no_host_authentication_for_localhost == - 1)
|
|
|
|
options->no_host_authentication_for_localhost = 0;
|
2004-03-08 20:12:36 +08:00
|
|
|
if (options->identities_only == -1)
|
|
|
|
options->identities_only = 0;
|
2002-11-09 23:52:31 +08:00
|
|
|
if (options->enable_ssh_keysign == -1)
|
|
|
|
options->enable_ssh_keysign = 0;
|
2003-04-09 18:50:06 +08:00
|
|
|
if (options->rekey_limit == -1)
|
|
|
|
options->rekey_limit = 0;
|
2013-05-16 18:28:16 +08:00
|
|
|
if (options->rekey_interval == -1)
|
|
|
|
options->rekey_interval = 0;
|
2003-05-15 08:19:46 +08:00
|
|
|
if (options->verify_host_key_dns == -1)
|
|
|
|
options->verify_host_key_dns = 0;
|
2003-12-17 13:33:10 +08:00
|
|
|
if (options->server_alive_interval == -1)
|
|
|
|
options->server_alive_interval = 0;
|
|
|
|
if (options->server_alive_count_max == -1)
|
|
|
|
options->server_alive_count_max = 3;
|
2004-06-15 08:34:08 +08:00
|
|
|
if (options->control_master == -1)
|
|
|
|
options->control_master = 0;
|
2010-08-03 14:04:46 +08:00
|
|
|
if (options->control_persist == -1) {
|
|
|
|
options->control_persist = 0;
|
|
|
|
options->control_persist_timeout = 0;
|
|
|
|
}
|
2005-03-01 18:47:37 +08:00
|
|
|
if (options->hash_known_hosts == -1)
|
|
|
|
options->hash_known_hosts = 0;
|
2005-12-13 16:29:02 +08:00
|
|
|
if (options->tun_open == -1)
|
2005-12-13 16:33:19 +08:00
|
|
|
options->tun_open = SSH_TUNMODE_NO;
|
|
|
|
if (options->tun_local == -1)
|
|
|
|
options->tun_local = SSH_TUNID_ANY;
|
|
|
|
if (options->tun_remote == -1)
|
|
|
|
options->tun_remote = SSH_TUNID_ANY;
|
2005-12-13 16:29:02 +08:00
|
|
|
if (options->permit_local_command == -1)
|
|
|
|
options->permit_local_command = 0;
|
2009-07-06 05:12:27 +08:00
|
|
|
if (options->use_roaming == -1)
|
|
|
|
options->use_roaming = 1;
|
2008-06-29 22:04:03 +08:00
|
|
|
if (options->visual_host_key == -1)
|
|
|
|
options->visual_host_key = 0;
|
2008-11-05 13:20:46 +08:00
|
|
|
if (options->zero_knowledge_password_authentication == -1)
|
|
|
|
options->zero_knowledge_password_authentication = 0;
|
2010-11-20 12:19:38 +08:00
|
|
|
if (options->ip_qos_interactive == -1)
|
|
|
|
options->ip_qos_interactive = IPTOS_LOWDELAY;
|
|
|
|
if (options->ip_qos_bulk == -1)
|
|
|
|
options->ip_qos_bulk = IPTOS_THROUGHPUT;
|
2011-05-15 06:45:50 +08:00
|
|
|
if (options->request_tty == -1)
|
|
|
|
options->request_tty = REQUEST_TTY_AUTO;
|
2013-08-21 00:44:24 +08:00
|
|
|
if (options->proxy_use_fdpass == -1)
|
|
|
|
options->proxy_use_fdpass = 0;
|
2013-10-17 08:48:13 +08:00
|
|
|
if (options->canonicalize_max_dots == -1)
|
|
|
|
options->canonicalize_max_dots = 1;
|
|
|
|
if (options->canonicalize_fallback_local == -1)
|
|
|
|
options->canonicalize_fallback_local = 1;
|
|
|
|
if (options->canonicalize_hostname == -1)
|
|
|
|
options->canonicalize_hostname = SSH_CANONICALISE_NO;
|
2013-10-15 09:14:12 +08:00
|
|
|
#define CLEAR_ON_NONE(v) \
|
|
|
|
do { \
|
|
|
|
if (v != NULL && strcasecmp(v, "none") == 0) { \
|
|
|
|
free(v); \
|
|
|
|
v = NULL; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
CLEAR_ON_NONE(options->local_command);
|
|
|
|
CLEAR_ON_NONE(options->proxy_command);
|
|
|
|
CLEAR_ON_NONE(options->control_path);
|
1999-11-24 21:26:21 +08:00
|
|
|
/* options->user will be set in the main program if appropriate */
|
|
|
|
/* options->hostname will be set in the main program if appropriate */
|
2000-12-29 00:40:05 +08:00
|
|
|
/* options->host_key_alias should not be set by default */
|
2001-03-11 09:49:19 +08:00
|
|
|
/* options->preferred_authentications will be set in ssh */
|
1999-10-27 11:42:43 +08:00
|
|
|
}
|
2005-03-01 18:24:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* parse_forward
|
|
|
|
* parses a string containing a port forwarding specification of the form:
|
2008-11-03 16:27:34 +08:00
|
|
|
* dynamicfwd == 0
|
2005-03-01 18:24:33 +08:00
|
|
|
* [listenhost:]listenport:connecthost:connectport
|
2008-11-03 16:27:34 +08:00
|
|
|
* dynamicfwd == 1
|
|
|
|
* [listenhost:]listenport
|
2005-03-01 18:24:33 +08:00
|
|
|
* returns number of arguments parsed or zero on error
|
|
|
|
*/
|
|
|
|
int
|
2009-02-14 13:28:21 +08:00
|
|
|
parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd)
|
2005-03-01 18:24:33 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *p, *cp, *fwdarg[4];
|
|
|
|
|
|
|
|
memset(fwd, '\0', sizeof(*fwd));
|
|
|
|
|
|
|
|
cp = p = xstrdup(fwdspec);
|
|
|
|
|
|
|
|
/* skip leading spaces */
|
2007-03-21 17:46:03 +08:00
|
|
|
while (isspace(*cp))
|
2005-03-01 18:24:33 +08:00
|
|
|
cp++;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; ++i)
|
|
|
|
if ((fwdarg[i] = hpdelim(&cp)) == NULL)
|
|
|
|
break;
|
|
|
|
|
2008-11-03 16:28:21 +08:00
|
|
|
/* Check for trailing garbage */
|
2005-03-01 18:24:33 +08:00
|
|
|
if (cp != NULL)
|
|
|
|
i = 0; /* failure */
|
|
|
|
|
|
|
|
switch (i) {
|
2008-11-03 16:27:34 +08:00
|
|
|
case 1:
|
|
|
|
fwd->listen_host = NULL;
|
|
|
|
fwd->listen_port = a2port(fwdarg[0]);
|
|
|
|
fwd->connect_host = xstrdup("socks");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
|
|
|
|
fwd->listen_port = a2port(fwdarg[1]);
|
|
|
|
fwd->connect_host = xstrdup("socks");
|
|
|
|
break;
|
|
|
|
|
2005-03-01 18:24:33 +08:00
|
|
|
case 3:
|
|
|
|
fwd->listen_host = NULL;
|
|
|
|
fwd->listen_port = a2port(fwdarg[0]);
|
|
|
|
fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
|
|
|
|
fwd->connect_port = a2port(fwdarg[2]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
|
|
|
|
fwd->listen_port = a2port(fwdarg[1]);
|
|
|
|
fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
|
|
|
|
fwd->connect_port = a2port(fwdarg[3]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
i = 0; /* failure */
|
|
|
|
}
|
|
|
|
|
2013-06-02 05:31:17 +08:00
|
|
|
free(p);
|
2005-03-01 18:24:33 +08:00
|
|
|
|
2008-11-03 16:27:34 +08:00
|
|
|
if (dynamicfwd) {
|
|
|
|
if (!(i == 1 || i == 2))
|
|
|
|
goto fail_free;
|
|
|
|
} else {
|
|
|
|
if (!(i == 3 || i == 4))
|
|
|
|
goto fail_free;
|
2009-01-28 13:31:22 +08:00
|
|
|
if (fwd->connect_port <= 0)
|
2008-11-03 16:27:34 +08:00
|
|
|
goto fail_free;
|
|
|
|
}
|
|
|
|
|
2009-02-14 13:28:21 +08:00
|
|
|
if (fwd->listen_port < 0 || (!remotefwd && fwd->listen_port == 0))
|
2005-03-01 18:24:33 +08:00
|
|
|
goto fail_free;
|
|
|
|
|
|
|
|
if (fwd->connect_host != NULL &&
|
|
|
|
strlen(fwd->connect_host) >= NI_MAXHOST)
|
|
|
|
goto fail_free;
|
2009-02-14 13:28:21 +08:00
|
|
|
if (fwd->listen_host != NULL &&
|
|
|
|
strlen(fwd->listen_host) >= NI_MAXHOST)
|
|
|
|
goto fail_free;
|
|
|
|
|
2005-03-01 18:24:33 +08:00
|
|
|
|
|
|
|
return (i);
|
|
|
|
|
|
|
|
fail_free:
|
2013-06-02 05:31:17 +08:00
|
|
|
free(fwd->connect_host);
|
|
|
|
fwd->connect_host = NULL;
|
|
|
|
free(fwd->listen_host);
|
|
|
|
fwd->listen_host = NULL;
|
2005-03-01 18:24:33 +08:00
|
|
|
return (0);
|
|
|
|
}
|