2012-05-19 13:37:01 +04:00
|
|
|
|
2013-05-16 14:48:14 +04:00
|
|
|
/* $OpenBSD: servconf.c,v 1.237 2013/05/16 10:43:34 dtucker Exp $ */
|
1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04: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 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-07-10 15:08:03 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2010-11-20 07:19:38 +03:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
|
2013-05-16 14:29:28 +04:00
|
|
|
#include <ctype.h>
|
2006-07-24 08:51:00 +04:00
|
|
|
#include <netdb.h>
|
2006-08-18 18:23:15 +04:00
|
|
|
#include <pwd.h>
|
2006-08-05 05:37:59 +04:00
|
|
|
#include <stdio.h>
|
2006-08-05 05:34:19 +04:00
|
|
|
#include <stdlib.h>
|
2006-07-24 08:13:33 +04:00
|
|
|
#include <string.h>
|
2006-08-05 06:39:39 +04:00
|
|
|
#include <signal.h>
|
2006-07-24 08:01:23 +04:00
|
|
|
#include <unistd.h>
|
2006-08-05 06:39:39 +04:00
|
|
|
#include <stdarg.h>
|
2008-06-10 17:01:51 +04:00
|
|
|
#include <errno.h>
|
2013-05-16 14:47:31 +04:00
|
|
|
#ifdef HAVE_UTIL_H
|
2013-05-16 14:33:10 +04:00
|
|
|
#include <util.h>
|
2013-05-16 14:47:31 +04:00
|
|
|
#endif
|
2006-07-24 07:51:51 +04:00
|
|
|
|
2008-05-19 09:05:07 +04:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
2006-08-05 06:39:39 +04:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "ssh.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "log.h"
|
2006-08-05 06:39:39 +04:00
|
|
|
#include "buffer.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "servconf.h"
|
2000-04-12 14:17:38 +04:00
|
|
|
#include "compat.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "pathnames.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "cipher.h"
|
2006-08-05 06:39:39 +04:00
|
|
|
#include "key.h"
|
2001-02-15 06:01:59 +03:00
|
|
|
#include "kex.h"
|
|
|
|
#include "mac.h"
|
2006-07-12 16:34:17 +04:00
|
|
|
#include "match.h"
|
2006-07-24 08:04:00 +04:00
|
|
|
#include "channels.h"
|
2006-08-18 18:23:15 +04:00
|
|
|
#include "groupaccess.h"
|
2012-05-19 13:37:01 +04:00
|
|
|
#include "canohost.h"
|
|
|
|
#include "packet.h"
|
2012-11-04 16:21:40 +04:00
|
|
|
#include "hostfile.h"
|
|
|
|
#include "auth.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
|
2009-01-28 08:31:22 +03:00
|
|
|
static void add_listen_addr(ServerOptions *, char *, int);
|
|
|
|
static void add_one_listen_addr(ServerOptions *, char *, int);
|
2000-01-14 07:45:46 +03:00
|
|
|
|
2002-03-22 05:30:41 +03:00
|
|
|
/* Use of privilege separation or not */
|
|
|
|
extern int use_privsep;
|
2006-07-12 16:34:17 +04:00
|
|
|
extern Buffer cfg;
|
2001-01-22 08:34:40 +03:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Initializes the server options to their default values. */
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
initialize_server_options(ServerOptions *options)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
memset(options, 0, sizeof(*options));
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
options->use_pam = -1;
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Standard Options */
|
2000-01-14 07:45:46 +03:00
|
|
|
options->num_ports = 0;
|
|
|
|
options->ports_from_cmdline = 0;
|
|
|
|
options->listen_addrs = NULL;
|
2005-01-20 02:57:56 +03:00
|
|
|
options->address_family = -1;
|
2000-11-13 14:57:25 +03:00
|
|
|
options->num_host_key_files = 0;
|
2010-02-26 23:55:05 +03:00
|
|
|
options->num_host_cert_files = 0;
|
2000-05-02 03:23:45 +04:00
|
|
|
options->pid_file = NULL;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->server_key_bits = -1;
|
|
|
|
options->login_grace_time = -1;
|
|
|
|
options->key_regeneration_time = -1;
|
2001-02-15 06:08:27 +03:00
|
|
|
options->permit_root_login = PERMIT_NOT_SET;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->ignore_rhosts = -1;
|
|
|
|
options->ignore_user_known_hosts = -1;
|
|
|
|
options->print_motd = -1;
|
2001-03-26 09:45:53 +04:00
|
|
|
options->print_lastlog = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->x11_forwarding = -1;
|
|
|
|
options->x11_display_offset = -1;
|
2002-02-05 04:11:34 +03:00
|
|
|
options->x11_use_localhost = -1;
|
2000-06-07 13:55:44 +04:00
|
|
|
options->xauth_location = NULL;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->strict_modes = -1;
|
2003-12-17 08:31:10 +03:00
|
|
|
options->tcp_keep_alive = -1;
|
2002-02-05 04:26:34 +03:00
|
|
|
options->log_facility = SYSLOG_FACILITY_NOT_SET;
|
|
|
|
options->log_level = SYSLOG_LEVEL_NOT_SET;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->rhosts_rsa_authentication = -1;
|
2001-04-13 03:34:34 +04:00
|
|
|
options->hostbased_authentication = -1;
|
|
|
|
options->hostbased_uses_name_from_packet_only = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->rsa_authentication = -1;
|
2000-11-13 14:57:25 +03:00
|
|
|
options->pubkey_authentication = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->kerberos_authentication = -1;
|
|
|
|
options->kerberos_or_local_passwd = -1;
|
|
|
|
options->kerberos_ticket_cleanup = -1;
|
2003-12-31 03:37:34 +03:00
|
|
|
options->kerberos_get_afs_token = -1;
|
2003-08-26 05:49:55 +04:00
|
|
|
options->gss_authentication=-1;
|
|
|
|
options->gss_cleanup_creds = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->password_authentication = -1;
|
2000-10-14 09:23:11 +04:00
|
|
|
options->kbd_interactive_authentication = -1;
|
2001-06-05 22:56:16 +04:00
|
|
|
options->challenge_response_authentication = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->permit_empty_passwd = -1;
|
2002-08-01 05:28:38 +04:00
|
|
|
options->permit_user_env = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->use_login = -1;
|
2002-06-21 05:09:47 +04:00
|
|
|
options->compression = -1;
|
2013-05-16 14:29:28 +04:00
|
|
|
options->rekey_limit = -1;
|
|
|
|
options->rekey_interval = -1;
|
2000-10-16 05:14:42 +04:00
|
|
|
options->allow_tcp_forwarding = -1;
|
2008-05-19 08:57:41 +04:00
|
|
|
options->allow_agent_forwarding = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->num_allow_users = 0;
|
|
|
|
options->num_deny_users = 0;
|
|
|
|
options->num_allow_groups = 0;
|
|
|
|
options->num_deny_groups = 0;
|
2000-04-12 14:17:38 +04:00
|
|
|
options->ciphers = NULL;
|
2001-02-15 06:01:59 +03:00
|
|
|
options->macs = NULL;
|
2010-09-24 16:11:14 +04:00
|
|
|
options->kex_algorithms = NULL;
|
2000-04-12 14:17:38 +04:00
|
|
|
options->protocol = SSH_PROTO_UNKNOWN;
|
- 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 06:03:14 +04:00
|
|
|
options->gateway_ports = -1;
|
2000-06-18 08:50:44 +04:00
|
|
|
options->num_subsystems = 0;
|
2000-08-18 07:59:06 +04:00
|
|
|
options->max_startups_begin = -1;
|
|
|
|
options->max_startups_rate = -1;
|
2000-07-11 11:31:38 +04:00
|
|
|
options->max_startups = -1;
|
2004-05-24 04:36:23 +04:00
|
|
|
options->max_authtries = -1;
|
2008-05-19 09:34:50 +04:00
|
|
|
options->max_sessions = -1;
|
2001-01-09 03:35:42 +03:00
|
|
|
options->banner = NULL;
|
2003-06-03 04:25:48 +04:00
|
|
|
options->use_dns = -1;
|
2001-04-14 03:28:01 +04:00
|
|
|
options->client_alive_interval = -1;
|
|
|
|
options->client_alive_count_max = -1;
|
2011-05-29 15:39:36 +04:00
|
|
|
options->num_authkeys_files = 0;
|
2004-05-02 16:11:30 +04:00
|
|
|
options->num_accept_env = 0;
|
2005-12-13 11:29:02 +03:00
|
|
|
options->permit_tun = -1;
|
2006-07-24 08:08:13 +04:00
|
|
|
options->num_permitted_opens = -1;
|
2006-07-24 08:06:47 +04:00
|
|
|
options->adm_forced_command = NULL;
|
2008-02-10 14:40:12 +03:00
|
|
|
options->chroot_directory = NULL;
|
2012-10-31 01:58:58 +04:00
|
|
|
options->authorized_keys_command = NULL;
|
|
|
|
options->authorized_keys_command_user = NULL;
|
2008-11-05 08:20:46 +03:00
|
|
|
options->zero_knowledge_password_authentication = -1;
|
2010-03-04 13:53:35 +03:00
|
|
|
options->revoked_keys_file = NULL;
|
|
|
|
options->trusted_user_ca_keys = NULL;
|
2010-05-10 05:58:03 +04:00
|
|
|
options->authorized_principals_file = NULL;
|
2010-11-20 07:19:38 +03:00
|
|
|
options->ip_qos_interactive = -1;
|
|
|
|
options->ip_qos_bulk = -1;
|
2012-04-22 05:24:43 +04:00
|
|
|
options->version_addendum = NULL;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
fill_default_server_options(ServerOptions *options)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
if (options->use_pam == -1)
|
2003-09-23 16:12:38 +04:00
|
|
|
options->use_pam = 0;
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Standard Options */
|
2000-11-13 14:57:25 +03:00
|
|
|
if (options->protocol == SSH_PROTO_UNKNOWN)
|
2009-10-11 14:51:08 +04:00
|
|
|
options->protocol = SSH_PROTO_2;
|
2000-11-13 14:57:25 +03:00
|
|
|
if (options->num_host_key_files == 0) {
|
|
|
|
/* fill default hostkeys for protocols */
|
|
|
|
if (options->protocol & SSH_PROTO_1)
|
2002-01-22 15:19:11 +03:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_KEY_FILE;
|
|
|
|
if (options->protocol & SSH_PROTO_2) {
|
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_RSA_KEY_FILE;
|
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_DSA_KEY_FILE;
|
2010-11-11 06:17:02 +03:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-09-10 05:15:33 +04:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_ECDSA_KEY_FILE;
|
2010-11-11 06:17:02 +03:00
|
|
|
#endif
|
2002-01-22 15:19:11 +03:00
|
|
|
}
|
2000-11-13 14:57:25 +03:00
|
|
|
}
|
2010-02-26 23:55:05 +03:00
|
|
|
/* No certificates by default */
|
2000-01-14 07:45:46 +03:00
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
|
|
|
if (options->listen_addrs == NULL)
|
2001-04-13 03:39:26 +04:00
|
|
|
add_listen_addr(options, NULL, 0);
|
2000-05-02 03:23:45 +04:00
|
|
|
if (options->pid_file == NULL)
|
2001-01-22 08:34:40 +03:00
|
|
|
options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->server_key_bits == -1)
|
2008-07-02 16:35:43 +04:00
|
|
|
options->server_key_bits = 1024;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->login_grace_time == -1)
|
2002-09-05 08:35:14 +04:00
|
|
|
options->login_grace_time = 120;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->key_regeneration_time == -1)
|
|
|
|
options->key_regeneration_time = 3600;
|
2001-02-15 06:08:27 +03:00
|
|
|
if (options->permit_root_login == PERMIT_NOT_SET)
|
|
|
|
options->permit_root_login = PERMIT_YES;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->ignore_rhosts == -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 13:27:49 +03:00
|
|
|
options->ignore_rhosts = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->ignore_user_known_hosts == -1)
|
|
|
|
options->ignore_user_known_hosts = 0;
|
|
|
|
if (options->print_motd == -1)
|
|
|
|
options->print_motd = 1;
|
2001-03-26 09:45:53 +04:00
|
|
|
if (options->print_lastlog == -1)
|
|
|
|
options->print_lastlog = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->x11_forwarding == -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 13:27:49 +03:00
|
|
|
options->x11_forwarding = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->x11_display_offset == -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 13:27:49 +03:00
|
|
|
options->x11_display_offset = 10;
|
2002-02-05 04:11:34 +03:00
|
|
|
if (options->x11_use_localhost == -1)
|
|
|
|
options->x11_use_localhost = 1;
|
2000-06-07 13:55:44 +04:00
|
|
|
if (options->xauth_location == NULL)
|
2001-06-09 05:48:01 +04:00
|
|
|
options->xauth_location = _PATH_XAUTH;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->strict_modes == -1)
|
|
|
|
options->strict_modes = 1;
|
2003-12-17 08:31:10 +03:00
|
|
|
if (options->tcp_keep_alive == -1)
|
|
|
|
options->tcp_keep_alive = 1;
|
2002-02-05 04:26:34 +03:00
|
|
|
if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
|
1999-11-24 16:26:21 +03:00
|
|
|
options->log_facility = SYSLOG_FACILITY_AUTH;
|
2002-02-05 04:26:34 +03:00
|
|
|
if (options->log_level == SYSLOG_LEVEL_NOT_SET)
|
2001-01-19 07:26:52 +03:00
|
|
|
options->log_level = SYSLOG_LEVEL_INFO;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->rhosts_rsa_authentication == -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 13:27:49 +03:00
|
|
|
options->rhosts_rsa_authentication = 0;
|
2001-04-13 03:34:34 +04:00
|
|
|
if (options->hostbased_authentication == -1)
|
|
|
|
options->hostbased_authentication = 0;
|
|
|
|
if (options->hostbased_uses_name_from_packet_only == -1)
|
|
|
|
options->hostbased_uses_name_from_packet_only = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->rsa_authentication == -1)
|
|
|
|
options->rsa_authentication = 1;
|
2000-11-13 14:57:25 +03:00
|
|
|
if (options->pubkey_authentication == -1)
|
|
|
|
options->pubkey_authentication = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->kerberos_authentication == -1)
|
2002-04-23 15:04:51 +04:00
|
|
|
options->kerberos_authentication = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->kerberos_or_local_passwd == -1)
|
|
|
|
options->kerberos_or_local_passwd = 1;
|
|
|
|
if (options->kerberos_ticket_cleanup == -1)
|
|
|
|
options->kerberos_ticket_cleanup = 1;
|
2003-12-31 03:37:34 +03:00
|
|
|
if (options->kerberos_get_afs_token == -1)
|
|
|
|
options->kerberos_get_afs_token = 0;
|
2003-08-26 05:49:55 +04:00
|
|
|
if (options->gss_authentication == -1)
|
|
|
|
options->gss_authentication = 0;
|
|
|
|
if (options->gss_cleanup_creds == -1)
|
|
|
|
options->gss_cleanup_creds = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->password_authentication == -1)
|
|
|
|
options->password_authentication = 1;
|
2000-10-14 09:23:11 +04:00
|
|
|
if (options->kbd_interactive_authentication == -1)
|
|
|
|
options->kbd_interactive_authentication = 0;
|
2001-06-05 22:56:16 +04:00
|
|
|
if (options->challenge_response_authentication == -1)
|
|
|
|
options->challenge_response_authentication = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->permit_empty_passwd == -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 13:27:49 +03:00
|
|
|
options->permit_empty_passwd = 0;
|
2002-08-01 05:28:38 +04:00
|
|
|
if (options->permit_user_env == -1)
|
|
|
|
options->permit_user_env = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->use_login == -1)
|
|
|
|
options->use_login = 0;
|
2002-06-21 05:09:47 +04:00
|
|
|
if (options->compression == -1)
|
2005-07-26 15:54:56 +04:00
|
|
|
options->compression = COMP_DELAYED;
|
2013-05-16 14:29:28 +04:00
|
|
|
if (options->rekey_limit == -1)
|
|
|
|
options->rekey_limit = 0;
|
|
|
|
if (options->rekey_interval == -1)
|
|
|
|
options->rekey_interval = 0;
|
2000-10-16 05:14:42 +04:00
|
|
|
if (options->allow_tcp_forwarding == -1)
|
2012-12-03 02:50:54 +04:00
|
|
|
options->allow_tcp_forwarding = FORWARD_ALLOW;
|
2008-05-19 08:57:41 +04:00
|
|
|
if (options->allow_agent_forwarding == -1)
|
|
|
|
options->allow_agent_forwarding = 1;
|
- 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 06:03:14 +04:00
|
|
|
if (options->gateway_ports == -1)
|
|
|
|
options->gateway_ports = 0;
|
2000-07-11 11:31:38 +04:00
|
|
|
if (options->max_startups == -1)
|
2013-02-12 04:02:08 +04:00
|
|
|
options->max_startups = 100;
|
2000-08-18 07:59:06 +04:00
|
|
|
if (options->max_startups_rate == -1)
|
2013-02-12 04:02:08 +04:00
|
|
|
options->max_startups_rate = 30; /* 30% */
|
2000-08-18 07:59:06 +04:00
|
|
|
if (options->max_startups_begin == -1)
|
2013-02-12 04:02:08 +04:00
|
|
|
options->max_startups_begin = 10;
|
2004-05-24 04:36:23 +04:00
|
|
|
if (options->max_authtries == -1)
|
|
|
|
options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
|
2008-05-19 09:34:50 +04:00
|
|
|
if (options->max_sessions == -1)
|
|
|
|
options->max_sessions = DEFAULT_SESSIONS_MAX;
|
2003-06-03 04:25:48 +04:00
|
|
|
if (options->use_dns == -1)
|
|
|
|
options->use_dns = 1;
|
2001-04-14 03:28:01 +04:00
|
|
|
if (options->client_alive_interval == -1)
|
2001-12-21 06:45:46 +03:00
|
|
|
options->client_alive_interval = 0;
|
2001-04-14 03:28:01 +04:00
|
|
|
if (options->client_alive_count_max == -1)
|
|
|
|
options->client_alive_count_max = 3;
|
2011-05-29 15:39:36 +04:00
|
|
|
if (options->num_authkeys_files == 0) {
|
|
|
|
options->authorized_keys_files[options->num_authkeys_files++] =
|
|
|
|
xstrdup(_PATH_SSH_USER_PERMITTED_KEYS);
|
|
|
|
options->authorized_keys_files[options->num_authkeys_files++] =
|
|
|
|
xstrdup(_PATH_SSH_USER_PERMITTED_KEYS2);
|
|
|
|
}
|
2005-12-13 11:29:02 +03:00
|
|
|
if (options->permit_tun == -1)
|
2005-12-13 11:33:19 +03:00
|
|
|
options->permit_tun = SSH_TUNMODE_NO;
|
2008-11-05 08:20:46 +03:00
|
|
|
if (options->zero_knowledge_password_authentication == -1)
|
|
|
|
options->zero_knowledge_password_authentication = 0;
|
2010-11-20 07:19:38 +03: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;
|
2012-04-22 05:24:43 +04:00
|
|
|
if (options->version_addendum == NULL)
|
|
|
|
options->version_addendum = xstrdup("");
|
2002-06-06 23:47:11 +04:00
|
|
|
/* Turn privilege separation on by default */
|
2002-03-22 05:30:41 +03:00
|
|
|
if (use_privsep == -1)
|
2012-07-31 06:21:34 +04:00
|
|
|
use_privsep = PRIVSEP_NOSANDBOX;
|
2002-06-21 10:20:44 +04:00
|
|
|
|
2002-07-15 00:36:49 +04:00
|
|
|
#ifndef HAVE_MMAP
|
2002-06-21 10:20:44 +04:00
|
|
|
if (use_privsep && options->compression == 1) {
|
|
|
|
error("This platform does not support both privilege "
|
|
|
|
"separation and compression");
|
|
|
|
error("Compression disabled");
|
|
|
|
options->compression = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Keyword tokens. */
|
1999-11-24 16:26:21 +03:00
|
|
|
typedef enum {
|
|
|
|
sBadOption, /* == unknown option */
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
sUsePAM,
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Standard Options */
|
1999-11-24 16:26:21 +03:00
|
|
|
sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
|
|
|
|
sPermitRootLogin, sLogFacility, sLogLevel,
|
2003-08-13 14:37:05 +04:00
|
|
|
sRhostsRSAAuthentication, sRSAAuthentication,
|
1999-11-24 16:26:21 +03:00
|
|
|
sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
|
2003-12-31 03:37:34 +03:00
|
|
|
sKerberosGetAFSToken,
|
2003-08-02 16:24:49 +04:00
|
|
|
sKerberosTgtPassing, sChallengeResponseAuthentication,
|
2005-01-20 02:57:56 +03:00
|
|
|
sPasswordAuthentication, sKbdInteractiveAuthentication,
|
|
|
|
sListenAddress, sAddressFamily,
|
2001-03-26 09:45:53 +04:00
|
|
|
sPrintMotd, sPrintLastLog, sIgnoreRhosts,
|
2002-02-05 04:11:34 +03:00
|
|
|
sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
|
2003-12-17 08:31:10 +03:00
|
|
|
sStrictModes, sEmptyPasswd, sTCPKeepAlive,
|
2002-08-01 05:28:38 +04:00
|
|
|
sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
|
2013-05-16 14:29:28 +04:00
|
|
|
sRekeyLimit, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
|
2001-02-15 06:01:59 +03:00
|
|
|
sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
|
2004-05-24 04:36:23 +04:00
|
|
|
sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
|
2008-05-19 09:34:50 +04:00
|
|
|
sMaxStartups, sMaxAuthTries, sMaxSessions,
|
2003-06-03 04:25:48 +04:00
|
|
|
sBanner, sUseDNS, sHostbasedAuthentication,
|
2001-12-21 06:45:46 +03:00
|
|
|
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
|
2011-05-20 12:57:14 +04:00
|
|
|
sClientAliveCountMax, sAuthorizedKeysFile,
|
2005-12-13 11:29:02 +03:00
|
|
|
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
|
2008-02-10 14:40:12 +03:00
|
|
|
sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
|
2010-01-10 02:31:12 +03:00
|
|
|
sUsePrivilegeSeparation, sAllowAgentForwarding,
|
2010-02-26 23:55:05 +03:00
|
|
|
sZeroKnowledgePasswordAuthentication, sHostCertificate,
|
2010-05-10 05:58:03 +04:00
|
|
|
sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
|
2012-04-22 05:24:43 +04:00
|
|
|
sKexAlgorithms, sIPQoS, sVersionAddendum,
|
2012-10-31 01:58:58 +04:00
|
|
|
sAuthorizedKeysCommand, sAuthorizedKeysCommandUser,
|
2012-11-04 16:21:40 +04:00
|
|
|
sAuthenticationMethods,
|
2003-05-16 05:38:32 +04:00
|
|
|
sDeprecated, sUnsupported
|
1999-10-27 07:42:43 +04:00
|
|
|
} ServerOpCodes;
|
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
|
|
|
|
#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
|
|
|
|
#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
|
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Textual representation of the tokens. */
|
1999-11-24 16:26:21 +03:00
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
ServerOpCodes opcode;
|
2006-07-12 16:34:17 +04:00
|
|
|
u_int flags;
|
1999-11-24 16:26:21 +03:00
|
|
|
} keywords[] = {
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-16 05:42:35 +04:00
|
|
|
#ifdef USE_PAM
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "usepam", sUsePAM, SSHCFG_GLOBAL },
|
2003-05-16 05:42:35 +04:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "usepam", sUnsupported, SSHCFG_GLOBAL },
|
2003-05-16 05:42:35 +04:00
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Standard Options */
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "port", sPort, SSHCFG_GLOBAL },
|
|
|
|
{ "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
|
|
|
|
{ "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
|
|
|
|
{ "pidfile", sPidFile, SSHCFG_GLOBAL },
|
|
|
|
{ "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
|
|
|
|
{ "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
|
|
|
|
{ "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
|
2008-01-01 12:36:56 +03:00
|
|
|
{ "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
|
|
|
|
{ "loglevel", sLogLevel, SSHCFG_GLOBAL },
|
|
|
|
{ "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
|
|
|
|
{ "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
|
2010-06-26 03:38:45 +04:00
|
|
|
{ "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
|
|
|
|
{ "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
|
2009-06-21 14:26:17 +04:00
|
|
|
{ "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
|
2003-08-02 16:24:49 +04:00
|
|
|
#ifdef KRB5
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
|
2004-01-23 14:03:10 +03:00
|
|
|
#ifdef USE_AFS
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
|
2004-01-05 14:36:51 +03:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2004-01-05 14:36:51 +03:00
|
|
|
#endif
|
2003-05-16 05:38:32 +04:00
|
|
|
#else
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "kerberosauthentication", sUnsupported, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2003-05-16 05:38:32 +04:00
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#else
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "gssapiauthentication", sUnsupported, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#endif
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
|
|
|
|
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
|
2007-03-01 13:31:28 +03:00
|
|
|
{ "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
|
2008-11-05 08:20:46 +03:00
|
|
|
#ifdef JPAKE
|
|
|
|
{ "zeroknowledgepasswordauthentication", sZeroKnowledgePasswordAuthentication, SSHCFG_ALL },
|
|
|
|
#else
|
|
|
|
{ "zeroknowledgepasswordauthentication", sUnsupported, SSHCFG_ALL },
|
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "checkmail", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "listenaddress", sListenAddress, SSHCFG_GLOBAL },
|
|
|
|
{ "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
|
|
|
|
{ "printmotd", sPrintMotd, SSHCFG_GLOBAL },
|
|
|
|
{ "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
|
|
|
|
{ "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
|
|
|
|
{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
|
2006-07-24 08:05:48 +04:00
|
|
|
{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
|
|
|
|
{ "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
|
|
|
|
{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
|
|
|
|
{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
|
2008-11-03 11:23:10 +03:00
|
|
|
{ "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
|
|
|
|
{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
|
|
|
|
{ "compression", sCompression, SSHCFG_GLOBAL },
|
2013-05-16 14:29:28 +04:00
|
|
|
{ "rekeylimit", sRekeyLimit, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
|
|
|
|
{ "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
|
|
|
|
{ "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
|
2008-05-19 08:57:41 +04:00
|
|
|
{ "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
|
2012-06-20 15:53:58 +04:00
|
|
|
{ "allowusers", sAllowUsers, SSHCFG_ALL },
|
|
|
|
{ "denyusers", sDenyUsers, SSHCFG_ALL },
|
|
|
|
{ "allowgroups", sAllowGroups, SSHCFG_ALL },
|
|
|
|
{ "denygroups", sDenyGroups, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "ciphers", sCiphers, SSHCFG_GLOBAL },
|
|
|
|
{ "macs", sMacs, SSHCFG_GLOBAL },
|
|
|
|
{ "protocol", sProtocol, SSHCFG_GLOBAL },
|
|
|
|
{ "gatewayports", sGatewayPorts, SSHCFG_ALL },
|
|
|
|
{ "subsystem", sSubsystem, SSHCFG_GLOBAL },
|
|
|
|
{ "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
|
2008-06-16 01:56:20 +04:00
|
|
|
{ "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
|
2008-05-19 09:34:50 +04:00
|
|
|
{ "maxsessions", sMaxSessions, SSHCFG_ALL },
|
2007-02-19 14:25:37 +03:00
|
|
|
{ "banner", sBanner, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "usedns", sUseDNS, SSHCFG_GLOBAL },
|
|
|
|
{ "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
|
|
|
|
{ "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
|
2010-06-26 03:38:45 +04:00
|
|
|
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
|
2011-05-29 15:39:36 +04:00
|
|
|
{ "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
|
2009-06-21 14:26:17 +04:00
|
|
|
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
|
2012-06-20 15:53:58 +04:00
|
|
|
{ "acceptenv", sAcceptEnv, SSHCFG_ALL },
|
2010-06-26 03:38:45 +04:00
|
|
|
{ "permittunnel", sPermitTunnel, SSHCFG_ALL },
|
2009-06-21 14:26:17 +04:00
|
|
|
{ "match", sMatch, SSHCFG_ALL },
|
2006-07-24 08:04:00 +04:00
|
|
|
{ "permitopen", sPermitOpen, SSHCFG_ALL },
|
2006-07-24 08:06:47 +04:00
|
|
|
{ "forcecommand", sForceCommand, SSHCFG_ALL },
|
2008-02-10 14:40:12 +03:00
|
|
|
{ "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
|
2010-02-26 23:55:05 +03:00
|
|
|
{ "hostcertificate", sHostCertificate, SSHCFG_GLOBAL },
|
2010-03-04 13:53:35 +03:00
|
|
|
{ "revokedkeys", sRevokedKeys, SSHCFG_ALL },
|
|
|
|
{ "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
|
2010-06-26 03:38:45 +04:00
|
|
|
{ "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
|
2010-09-24 16:11:14 +04:00
|
|
|
{ "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL },
|
2010-11-20 07:19:38 +03:00
|
|
|
{ "ipqos", sIPQoS, SSHCFG_ALL },
|
2012-10-31 01:58:58 +04:00
|
|
|
{ "authorizedkeyscommand", sAuthorizedKeysCommand, SSHCFG_ALL },
|
|
|
|
{ "authorizedkeyscommanduser", sAuthorizedKeysCommandUser, SSHCFG_ALL },
|
2012-04-22 05:24:43 +04:00
|
|
|
{ "versionaddendum", sVersionAddendum, SSHCFG_GLOBAL },
|
2012-11-04 16:21:40 +04:00
|
|
|
{ "authenticationmethods", sAuthenticationMethods, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ NULL, sBadOption, 0 }
|
1999-10-27 07:42:43 +04:00
|
|
|
};
|
|
|
|
|
2008-06-10 17:01:51 +04:00
|
|
|
static struct {
|
|
|
|
int val;
|
|
|
|
char *text;
|
|
|
|
} tunmode_desc[] = {
|
|
|
|
{ SSH_TUNMODE_NO, "no" },
|
|
|
|
{ SSH_TUNMODE_POINTOPOINT, "point-to-point" },
|
|
|
|
{ SSH_TUNMODE_ETHERNET, "ethernet" },
|
|
|
|
{ SSH_TUNMODE_YES, "yes" },
|
|
|
|
{ -1, NULL }
|
|
|
|
};
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
2001-04-02 22:20:03 +04:00
|
|
|
* Returns the number of the token pointed to by cp or sBadOption.
|
1999-11-25 03:54:57 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
static ServerOpCodes
|
1999-11-24 16:26:21 +03:00
|
|
|
parse_token(const char *cp, const char *filename,
|
2006-07-12 16:34:17 +04:00
|
|
|
int linenum, u_int *flags)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2000-12-22 04:43:59 +03:00
|
|
|
u_int i;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
for (i = 0; keywords[i].name; i++)
|
2006-07-12 16:34:17 +04:00
|
|
|
if (strcasecmp(cp, keywords[i].name) == 0) {
|
|
|
|
*flags = keywords[i].flags;
|
1999-11-24 16:26:21 +03:00
|
|
|
return keywords[i].opcode;
|
2006-07-12 16:34:17 +04:00
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-04-16 06:13:26 +04:00
|
|
|
error("%s: line %d: Bad configuration option: %s",
|
|
|
|
filename, linenum, cp);
|
1999-11-24 16:26:21 +03:00
|
|
|
return sBadOption;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2010-01-13 14:44:29 +03:00
|
|
|
char *
|
|
|
|
derelativise_path(const char *path)
|
|
|
|
{
|
2010-03-26 02:40:04 +03:00
|
|
|
char *expanded, *ret, cwd[MAXPATHLEN];
|
2010-01-13 14:44:29 +03:00
|
|
|
|
|
|
|
expanded = tilde_expand_filename(path, getuid());
|
|
|
|
if (*expanded == '/')
|
|
|
|
return expanded;
|
2010-03-26 02:40:04 +03:00
|
|
|
if (getcwd(cwd, sizeof(cwd)) == NULL)
|
2010-01-13 14:44:29 +03:00
|
|
|
fatal("%s: getcwd: %s", __func__, strerror(errno));
|
|
|
|
xasprintf(&ret, "%s/%s", cwd, expanded);
|
|
|
|
xfree(expanded);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static void
|
2009-01-28 08:31:22 +03:00
|
|
|
add_listen_addr(ServerOptions *options, char *addr, int port)
|
2000-01-14 07:45:46 +03:00
|
|
|
{
|
2005-06-17 06:59:34 +04:00
|
|
|
u_int i;
|
2000-01-14 07:45:46 +03:00
|
|
|
|
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
2005-01-20 02:57:56 +03:00
|
|
|
if (options->address_family == -1)
|
|
|
|
options->address_family = AF_UNSPEC;
|
2001-04-13 03:39:26 +04:00
|
|
|
if (port == 0)
|
2001-04-07 21:25:48 +04:00
|
|
|
for (i = 0; i < options->num_ports; i++)
|
|
|
|
add_one_listen_addr(options, addr, options->ports[i]);
|
|
|
|
else
|
2001-04-13 03:39:26 +04:00
|
|
|
add_one_listen_addr(options, addr, port);
|
2001-04-07 21:25:48 +04:00
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static void
|
2009-01-28 08:31:22 +03:00
|
|
|
add_one_listen_addr(ServerOptions *options, char *addr, int port)
|
2001-04-07 21:25:48 +04:00
|
|
|
{
|
|
|
|
struct addrinfo hints, *ai, *aitop;
|
|
|
|
char strport[NI_MAXSERV];
|
|
|
|
int gaierr;
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
2005-01-20 02:57:56 +03:00
|
|
|
hints.ai_family = options->address_family;
|
2001-04-07 21:25:48 +04:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
|
2009-01-28 08:31:22 +03:00
|
|
|
snprintf(strport, sizeof strport, "%d", port);
|
2001-04-07 21:25:48 +04:00
|
|
|
if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
|
|
|
|
fatal("bad addr or host: %s (%s)",
|
|
|
|
addr ? addr : "<NULL>",
|
2007-12-28 18:43:51 +03:00
|
|
|
ssh_gai_strerror(gaierr));
|
2001-04-07 21:25:48 +04:00
|
|
|
for (ai = aitop; ai->ai_next; ai = ai->ai_next)
|
|
|
|
;
|
|
|
|
ai->ai_next = options->listen_addrs;
|
|
|
|
options->listen_addrs = aitop;
|
2000-01-14 07:45:46 +03:00
|
|
|
}
|
|
|
|
|
2012-05-19 13:37:01 +04:00
|
|
|
struct connection_info *
|
|
|
|
get_connection_info(int populate, int use_dns)
|
|
|
|
{
|
|
|
|
static struct connection_info ci;
|
|
|
|
|
|
|
|
if (!populate)
|
|
|
|
return &ci;
|
|
|
|
ci.host = get_canonical_hostname(use_dns);
|
|
|
|
ci.address = get_remote_ipaddr();
|
|
|
|
ci.laddress = get_local_ipaddr(packet_get_connection_in());
|
|
|
|
ci.lport = get_local_port();
|
|
|
|
return &ci;
|
|
|
|
}
|
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
/*
|
|
|
|
* The strategy for the Match blocks is that the config file is parsed twice.
|
|
|
|
*
|
|
|
|
* The first time is at startup. activep is initialized to 1 and the
|
|
|
|
* directives in the global context are processed and acted on. Hitting a
|
|
|
|
* Match directive unsets activep and the directives inside the block are
|
|
|
|
* checked for syntax only.
|
|
|
|
*
|
|
|
|
* The second time is after a connection has been established but before
|
|
|
|
* authentication. activep is initialized to 2 and global config directives
|
|
|
|
* are ignored since they have already been processed. If the criteria in a
|
|
|
|
* Match block is met, activep is set and the subsequent directives
|
|
|
|
* processed and actioned until EOF or another Match block unsets it. Any
|
|
|
|
* options set are copied into the main server config.
|
|
|
|
*
|
|
|
|
* Potential additions/improvements:
|
|
|
|
* - Add Match support for pre-kex directives, eg Protocol, Ciphers.
|
|
|
|
*
|
|
|
|
* - Add a Tag directive (idea from David Leonard) ala pf, eg:
|
|
|
|
* Match Address 192.168.0.*
|
|
|
|
* Tag trusted
|
|
|
|
* Match Group wheel
|
|
|
|
* Tag trusted
|
|
|
|
* Match Tag trusted
|
|
|
|
* AllowTcpForwarding yes
|
|
|
|
* GatewayPorts clientspecified
|
|
|
|
* [...]
|
|
|
|
*
|
|
|
|
* - Add a PermittedChannelRequests directive
|
|
|
|
* Match Group shell
|
|
|
|
* PermittedChannelRequests session,forwarded-tcpip
|
|
|
|
*/
|
|
|
|
|
2006-08-18 18:23:15 +04:00
|
|
|
static int
|
|
|
|
match_cfg_line_group(const char *grps, int line, const char *user)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
struct passwd *pw;
|
|
|
|
|
|
|
|
if (user == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if ((pw = getpwnam(user)) == NULL) {
|
|
|
|
debug("Can't match group at line %d because user %.100s does "
|
|
|
|
"not exist", line, user);
|
|
|
|
} else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
|
|
|
|
debug("Can't Match group because user %.100s not in any group "
|
|
|
|
"at line %d", user, line);
|
2008-07-04 07:51:12 +04:00
|
|
|
} else if (ga_match_pattern_list(grps) != 1) {
|
|
|
|
debug("user %.100s does not match group list %.100s at line %d",
|
|
|
|
user, grps, line);
|
2006-08-18 18:23:15 +04:00
|
|
|
} else {
|
2008-07-04 07:51:12 +04:00
|
|
|
debug("user %.100s matched group list %.100s at line %d", user,
|
|
|
|
grps, line);
|
2006-08-18 18:23:15 +04:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
ga_free();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-05-19 13:37:01 +04:00
|
|
|
/*
|
2012-09-17 07:25:06 +04:00
|
|
|
* All of the attributes on a single Match line are ANDed together, so we need
|
|
|
|
* to check every * attribute and set the result to zero if any attribute does
|
|
|
|
* not match.
|
2012-05-19 13:37:01 +04:00
|
|
|
*/
|
2006-07-12 16:34:17 +04:00
|
|
|
static int
|
2012-05-19 13:37:01 +04:00
|
|
|
match_cfg_line(char **condition, int line, struct connection_info *ci)
|
2006-07-12 16:34:17 +04:00
|
|
|
{
|
2012-05-19 13:37:01 +04:00
|
|
|
int result = 1, port;
|
2006-07-12 16:34:17 +04:00
|
|
|
char *arg, *attrib, *cp = *condition;
|
|
|
|
size_t len;
|
|
|
|
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci == NULL)
|
2006-07-12 16:34:17 +04:00
|
|
|
debug3("checking syntax for 'Match %s'", cp);
|
|
|
|
else
|
2012-05-19 13:37:01 +04:00
|
|
|
debug3("checking match for '%s' user %s host %s addr %s "
|
|
|
|
"laddr %s lport %d", cp, ci->user ? ci->user : "(null)",
|
|
|
|
ci->host ? ci->host : "(null)",
|
|
|
|
ci->address ? ci->address : "(null)",
|
|
|
|
ci->laddress ? ci->laddress : "(null)", ci->lport);
|
2006-07-12 16:34:17 +04:00
|
|
|
|
|
|
|
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, "user") == 0) {
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci == NULL || ci->user == NULL) {
|
2006-07-12 16:34:17 +04:00
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2012-05-19 13:37:01 +04:00
|
|
|
if (match_pattern_list(ci->user, arg, len, 0) != 1)
|
2006-07-12 16:34:17 +04:00
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("user %.100s matched 'User %.100s' at "
|
2012-05-19 13:37:01 +04:00
|
|
|
"line %d", ci->user, arg, line);
|
2006-08-18 18:23:15 +04:00
|
|
|
} else if (strcasecmp(attrib, "group") == 0) {
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci == NULL || ci->user == NULL) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (match_cfg_line_group(arg, line, ci->user)) {
|
2006-08-18 18:23:15 +04:00
|
|
|
case -1:
|
|
|
|
return -1;
|
|
|
|
case 0:
|
|
|
|
result = 0;
|
|
|
|
}
|
2006-07-12 16:34:17 +04:00
|
|
|
} else if (strcasecmp(attrib, "host") == 0) {
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci == NULL || ci->host == NULL) {
|
2006-07-12 16:34:17 +04:00
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2012-05-19 13:37:01 +04:00
|
|
|
if (match_hostname(ci->host, arg, len) != 1)
|
2006-07-12 16:34:17 +04:00
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("connection from %.100s matched 'Host "
|
2012-05-19 13:37:01 +04:00
|
|
|
"%.100s' at line %d", ci->host, arg, line);
|
2006-07-12 16:34:17 +04:00
|
|
|
} else if (strcasecmp(attrib, "address") == 0) {
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci == NULL || ci->address == NULL) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (addr_match_list(ci->address, arg)) {
|
2008-06-10 16:59:10 +04:00
|
|
|
case 1:
|
2006-07-12 16:34:17 +04:00
|
|
|
debug("connection from %.100s matched 'Address "
|
2012-05-19 13:37:01 +04:00
|
|
|
"%.100s' at line %d", ci->address, arg, line);
|
2008-06-10 16:59:10 +04:00
|
|
|
break;
|
|
|
|
case 0:
|
2008-06-11 03:34:46 +04:00
|
|
|
case -1:
|
2008-06-10 16:59:10 +04:00
|
|
|
result = 0;
|
|
|
|
break;
|
2008-06-11 03:34:46 +04:00
|
|
|
case -2:
|
2008-06-10 16:59:10 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2012-05-19 13:37:01 +04:00
|
|
|
} else if (strcasecmp(attrib, "localaddress") == 0){
|
|
|
|
if (ci == NULL || ci->laddress == NULL) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (addr_match_list(ci->laddress, arg)) {
|
|
|
|
case 1:
|
|
|
|
debug("connection from %.100s matched "
|
|
|
|
"'LocalAddress %.100s' at line %d",
|
|
|
|
ci->laddress, arg, line);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case -1:
|
|
|
|
result = 0;
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else if (strcasecmp(attrib, "localport") == 0) {
|
|
|
|
if ((port = a2port(arg)) == -1) {
|
|
|
|
error("Invalid LocalPort '%s' on Match line",
|
|
|
|
arg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (ci == NULL || ci->lport == 0) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* TODO support port lists */
|
|
|
|
if (port == ci->lport)
|
|
|
|
debug("connection from %.100s matched "
|
|
|
|
"'LocalPort %d' at line %d",
|
|
|
|
ci->laddress, port, line);
|
|
|
|
else
|
|
|
|
result = 0;
|
2006-07-12 16:34:17 +04:00
|
|
|
} else {
|
|
|
|
error("Unsupported Match attribute %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2012-05-19 13:37:01 +04:00
|
|
|
if (ci != NULL)
|
2006-07-12 16:34:17 +04:00
|
|
|
debug3("match %sfound", result ? "" : "not ");
|
|
|
|
*condition = cp;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-07-24 08:06:47 +04:00
|
|
|
#define WHITESPACE " \t\r\n"
|
|
|
|
|
2011-06-20 08:43:11 +04:00
|
|
|
/* Multistate option parsing */
|
|
|
|
struct multistate {
|
|
|
|
char *key;
|
|
|
|
int value;
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_addressfamily[] = {
|
|
|
|
{ "inet", AF_INET },
|
|
|
|
{ "inet6", AF_INET6 },
|
|
|
|
{ "any", AF_UNSPEC },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_permitrootlogin[] = {
|
|
|
|
{ "without-password", PERMIT_NO_PASSWD },
|
|
|
|
{ "forced-commands-only", PERMIT_FORCED_ONLY },
|
|
|
|
{ "yes", PERMIT_YES },
|
|
|
|
{ "no", PERMIT_NO },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_compression[] = {
|
|
|
|
{ "delayed", COMP_DELAYED },
|
|
|
|
{ "yes", COMP_ZLIB },
|
|
|
|
{ "no", COMP_NONE },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_gatewayports[] = {
|
|
|
|
{ "clientspecified", 2 },
|
|
|
|
{ "yes", 1 },
|
|
|
|
{ "no", 0 },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2011-06-23 02:30:03 +04:00
|
|
|
static const struct multistate multistate_privsep[] = {
|
2012-07-31 06:21:34 +04:00
|
|
|
{ "yes", PRIVSEP_NOSANDBOX },
|
|
|
|
{ "sandbox", PRIVSEP_ON },
|
|
|
|
{ "nosandbox", PRIVSEP_NOSANDBOX },
|
2011-06-23 02:30:03 +04:00
|
|
|
{ "no", PRIVSEP_OFF },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2012-12-03 02:50:54 +04:00
|
|
|
static const struct multistate multistate_tcpfwd[] = {
|
|
|
|
{ "yes", FORWARD_ALLOW },
|
|
|
|
{ "all", FORWARD_ALLOW },
|
|
|
|
{ "no", FORWARD_DENY },
|
|
|
|
{ "remote", FORWARD_REMOTE },
|
|
|
|
{ "local", FORWARD_LOCAL },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2011-06-20 08:43:11 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
int
|
|
|
|
process_server_config_line(ServerOptions *options, char *line,
|
2012-05-19 13:37:01 +04:00
|
|
|
const char *filename, int linenum, int *activep,
|
|
|
|
struct connection_info *connectinfo)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2013-05-16 14:29:28 +04:00
|
|
|
char *cp, **charptr, *arg, *p, *endofnumber;
|
2013-05-16 14:48:14 +04:00
|
|
|
int cmdline = 0, *intptr, value, value2, n, port;
|
2008-01-01 12:32:26 +03:00
|
|
|
SyslogFacility *log_facility_ptr;
|
|
|
|
LogLevel *log_level_ptr;
|
1999-11-24 16:26:21 +03:00
|
|
|
ServerOpCodes opcode;
|
2006-07-12 16:34:17 +04:00
|
|
|
u_int i, flags = 0;
|
2006-07-10 14:36:47 +04:00
|
|
|
size_t len;
|
2013-05-16 14:48:14 +04:00
|
|
|
long long val64;
|
2011-06-20 08:43:11 +04:00
|
|
|
const struct multistate *multistate_ptr;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
cp = line;
|
2006-03-26 06:54:37 +04:00
|
|
|
if ((arg = strdelim(&cp)) == NULL)
|
2006-03-26 06:53:32 +04:00
|
|
|
return 0;
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Ignore leading whitespace */
|
|
|
|
if (*arg == '\0')
|
2000-07-15 08:14:16 +04:00
|
|
|
arg = strdelim(&cp);
|
2001-12-06 21:22:17 +03:00
|
|
|
if (!arg || !*arg || *arg == '#')
|
|
|
|
return 0;
|
|
|
|
intptr = NULL;
|
|
|
|
charptr = NULL;
|
2006-07-12 16:34:17 +04:00
|
|
|
opcode = parse_token(arg, filename, linenum, &flags);
|
|
|
|
|
|
|
|
if (activep == NULL) { /* We are processing a command line directive */
|
|
|
|
cmdline = 1;
|
|
|
|
activep = &cmdline;
|
|
|
|
}
|
|
|
|
if (*activep && opcode != sMatch)
|
|
|
|
debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
|
|
|
|
if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
|
2012-05-19 13:37:01 +04:00
|
|
|
if (connectinfo == NULL) {
|
2006-07-12 16:34:17 +04:00
|
|
|
fatal("%s line %d: Directive '%s' is not allowed "
|
|
|
|
"within a Match block", filename, linenum, arg);
|
|
|
|
} else { /* this is a directive we have already processed */
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
switch (opcode) {
|
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
case sUsePAM:
|
|
|
|
intptr = &options->use_pam;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
2000-01-14 07:45:46 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Standard Options */
|
|
|
|
case sBadOption:
|
|
|
|
return -1;
|
|
|
|
case sPort:
|
|
|
|
/* ignore ports from configfile if cmdline specifies ports */
|
|
|
|
if (options->ports_from_cmdline)
|
|
|
|
return 0;
|
|
|
|
if (options->listen_addrs != NULL)
|
|
|
|
fatal("%s line %d: ports must be specified before "
|
2002-01-22 15:35:09 +03:00
|
|
|
"ListenAddress.", filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
if (options->num_ports >= MAX_PORTS)
|
|
|
|
fatal("%s line %d: too many ports.",
|
|
|
|
filename, linenum);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing port number.",
|
|
|
|
filename, linenum);
|
|
|
|
options->ports[options->num_ports++] = a2port(arg);
|
2009-01-28 08:31:22 +03:00
|
|
|
if (options->ports[options->num_ports-1] <= 0)
|
2001-12-06 21:22:17 +03:00
|
|
|
fatal("%s line %d: Badly formatted port number.",
|
|
|
|
filename, linenum);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sServerKeyBits:
|
|
|
|
intptr = &options->server_key_bits;
|
2008-05-19 09:34:50 +04:00
|
|
|
parse_int:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing integer value.",
|
|
|
|
filename, linenum);
|
|
|
|
value = atoi(arg);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *intptr == -1)
|
2001-12-06 21:22:17 +03:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sLoginGraceTime:
|
|
|
|
intptr = &options->login_grace_time;
|
2008-05-19 09:34:50 +04:00
|
|
|
parse_time:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
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);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sKeyRegenerationTime:
|
|
|
|
intptr = &options->key_regeneration_time;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case sListenAddress:
|
|
|
|
arg = strdelim(&cp);
|
2005-03-01 13:24:33 +03:00
|
|
|
if (arg == NULL || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing address",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2005-08-12 16:11:37 +04:00
|
|
|
/* check for bare IPv6 address: no "[]" and 2 or more ":" */
|
|
|
|
if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
|
|
|
|
&& strchr(p+1, ':') != NULL) {
|
|
|
|
add_listen_addr(options, arg, 0);
|
|
|
|
break;
|
|
|
|
}
|
2005-03-01 13:24:33 +03:00
|
|
|
p = hpdelim(&arg);
|
|
|
|
if (p == NULL)
|
|
|
|
fatal("%s line %d: bad address:port usage",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2005-03-01 13:24:33 +03:00
|
|
|
p = cleanhostname(p);
|
|
|
|
if (arg == NULL)
|
|
|
|
port = 0;
|
2009-01-28 08:31:22 +03:00
|
|
|
else if ((port = a2port(arg)) <= 0)
|
2005-03-01 13:24:33 +03:00
|
|
|
fatal("%s line %d: bad port number", filename, linenum);
|
|
|
|
|
|
|
|
add_listen_addr(options, p, port);
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
break;
|
|
|
|
|
2005-01-20 02:57:56 +03:00
|
|
|
case sAddressFamily:
|
2011-06-20 08:43:11 +04:00
|
|
|
intptr = &options->address_family;
|
|
|
|
multistate_ptr = multistate_addressfamily;
|
|
|
|
if (options->listen_addrs != NULL)
|
|
|
|
fatal("%s line %d: address family must be specified "
|
|
|
|
"before ListenAddress.", filename, linenum);
|
|
|
|
parse_multistate:
|
2005-01-20 02:57:56 +03:00
|
|
|
arg = strdelim(&cp);
|
2005-05-26 06:11:56 +04:00
|
|
|
if (!arg || *arg == '\0')
|
2011-06-20 08:43:11 +04:00
|
|
|
fatal("%s line %d: missing argument.",
|
2005-05-26 06:11:56 +04:00
|
|
|
filename, linenum);
|
2011-06-20 08:43:11 +04:00
|
|
|
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\".",
|
2005-01-20 02:57:56 +03:00
|
|
|
filename, linenum, arg);
|
2011-06-20 08:43:11 +04:00
|
|
|
if (*activep && *intptr == -1)
|
2005-01-20 02:57:56 +03:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sHostKeyFile:
|
|
|
|
intptr = &options->num_host_key_files;
|
|
|
|
if (*intptr >= MAX_HOSTKEYS)
|
|
|
|
fatal("%s line %d: too many host keys specified (max %d).",
|
|
|
|
filename, linenum, MAX_HOSTKEYS);
|
|
|
|
charptr = &options->host_key_files[*intptr];
|
2008-05-19 09:34:50 +04:00
|
|
|
parse_filename:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *charptr == NULL) {
|
2010-01-13 14:44:29 +03:00
|
|
|
*charptr = derelativise_path(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
/* increase optional counter */
|
|
|
|
if (intptr != NULL)
|
|
|
|
*intptr = *intptr + 1;
|
|
|
|
}
|
|
|
|
break;
|
2000-05-02 03:23:45 +04:00
|
|
|
|
2010-02-26 23:55:05 +03:00
|
|
|
case sHostCertificate:
|
|
|
|
intptr = &options->num_host_cert_files;
|
|
|
|
if (*intptr >= MAX_HOSTKEYS)
|
|
|
|
fatal("%s line %d: too many host certificates "
|
|
|
|
"specified (max %d).", filename, linenum,
|
|
|
|
MAX_HOSTCERTS);
|
|
|
|
charptr = &options->host_cert_files[*intptr];
|
|
|
|
goto parse_filename;
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPidFile:
|
|
|
|
charptr = &options->pid_file;
|
|
|
|
goto parse_filename;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPermitRootLogin:
|
|
|
|
intptr = &options->permit_root_login;
|
2011-06-20 08:43:11 +04:00
|
|
|
multistate_ptr = multistate_permitrootlogin;
|
|
|
|
goto parse_multistate;
|
2001-12-06 21:22:17 +03:00
|
|
|
|
|
|
|
case sIgnoreRhosts:
|
|
|
|
intptr = &options->ignore_rhosts;
|
2008-05-19 09:34:50 +04:00
|
|
|
parse_flag:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing yes/no argument.",
|
|
|
|
filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcmp(arg, "yes") == 0)
|
|
|
|
value = 1;
|
|
|
|
else if (strcmp(arg, "no") == 0)
|
|
|
|
value = 0;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/no argument: %s",
|
|
|
|
filename, linenum, arg);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *intptr == -1)
|
2001-12-06 21:22:17 +03:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sIgnoreUserKnownHosts:
|
|
|
|
intptr = &options->ignore_user_known_hosts;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sRhostsRSAAuthentication:
|
|
|
|
intptr = &options->rhosts_rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sHostbasedAuthentication:
|
|
|
|
intptr = &options->hostbased_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sHostbasedUsesNameFromPacketOnly:
|
|
|
|
intptr = &options->hostbased_uses_name_from_packet_only;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sRSAAuthentication:
|
|
|
|
intptr = &options->rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sPubkeyAuthentication:
|
|
|
|
intptr = &options->pubkey_authentication;
|
|
|
|
goto parse_flag;
|
2003-05-15 06:05:28 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosAuthentication:
|
|
|
|
intptr = &options->kerberos_authentication;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosOrLocalPasswd:
|
|
|
|
intptr = &options->kerberos_or_local_passwd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosTicketCleanup:
|
|
|
|
intptr = &options->kerberos_ticket_cleanup;
|
|
|
|
goto parse_flag;
|
2003-05-15 06:05:28 +04:00
|
|
|
|
2003-12-31 03:37:34 +03:00
|
|
|
case sKerberosGetAFSToken:
|
|
|
|
intptr = &options->kerberos_get_afs_token;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
case sGssAuthentication:
|
|
|
|
intptr = &options->gss_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sGssCleanupCreds:
|
|
|
|
intptr = &options->gss_cleanup_creds;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPasswordAuthentication:
|
|
|
|
intptr = &options->password_authentication;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2008-11-05 08:20:46 +03:00
|
|
|
case sZeroKnowledgePasswordAuthentication:
|
|
|
|
intptr = &options->zero_knowledge_password_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKbdInteractiveAuthentication:
|
|
|
|
intptr = &options->kbd_interactive_authentication;
|
|
|
|
goto parse_flag;
|
2001-04-13 03:34:34 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sChallengeResponseAuthentication:
|
|
|
|
intptr = &options->challenge_response_authentication;
|
|
|
|
goto parse_flag;
|
2001-04-13 03:34:34 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPrintMotd:
|
|
|
|
intptr = &options->print_motd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPrintLastLog:
|
|
|
|
intptr = &options->print_lastlog;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sX11Forwarding:
|
|
|
|
intptr = &options->x11_forwarding;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sX11DisplayOffset:
|
|
|
|
intptr = &options->x11_display_offset;
|
|
|
|
goto parse_int;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2002-02-05 04:11:34 +03:00
|
|
|
case sX11UseLocalhost:
|
|
|
|
intptr = &options->x11_use_localhost;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sXAuthLocation:
|
|
|
|
charptr = &options->xauth_location;
|
|
|
|
goto parse_filename;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sStrictModes:
|
|
|
|
intptr = &options->strict_modes;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2003-12-17 08:31:10 +03:00
|
|
|
case sTCPKeepAlive:
|
|
|
|
intptr = &options->tcp_keep_alive;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
2000-10-16 05:14:42 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sEmptyPasswd:
|
|
|
|
intptr = &options->permit_empty_passwd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2002-08-01 05:28:38 +04:00
|
|
|
case sPermitUserEnvironment:
|
|
|
|
intptr = &options->permit_user_env;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sUseLogin:
|
|
|
|
intptr = &options->use_login;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2002-06-21 05:09:47 +04:00
|
|
|
case sCompression:
|
|
|
|
intptr = &options->compression;
|
2011-06-20 08:43:11 +04:00
|
|
|
multistate_ptr = multistate_compression;
|
|
|
|
goto parse_multistate;
|
2002-06-21 05:09:47 +04:00
|
|
|
|
2013-05-16 14:29:28 +04:00
|
|
|
case sRekeyLimit:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename,
|
|
|
|
linenum);
|
|
|
|
if (strcmp(arg, "default") == 0) {
|
|
|
|
val64 = 0;
|
|
|
|
} else {
|
2013-05-16 14:33:10 +04: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 14:29:28 +04:00
|
|
|
fatal("%.200s line %d: RekeyLimit too large",
|
|
|
|
filename, linenum);
|
|
|
|
if (val64 != 0 && val64 < 16)
|
|
|
|
fatal("%.200s line %d: RekeyLimit too small",
|
|
|
|
filename, linenum);
|
|
|
|
}
|
|
|
|
if (*activep && options->rekey_limit == -1)
|
|
|
|
options->rekey_limit = (u_int32_t)val64;
|
|
|
|
if (cp != NULL) { /* optional rekey interval present */
|
|
|
|
if (strcmp(cp, "none") == 0) {
|
|
|
|
(void)strdelim(&cp); /* discard */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
intptr = &options->rekey_interval;
|
|
|
|
goto parse_time;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sGatewayPorts:
|
|
|
|
intptr = &options->gateway_ports;
|
2011-06-20 08:43:11 +04:00
|
|
|
multistate_ptr = multistate_gatewayports;
|
|
|
|
goto parse_multistate;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2003-06-03 04:25:48 +04:00
|
|
|
case sUseDNS:
|
|
|
|
intptr = &options->use_dns;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sLogFacility:
|
2008-01-01 12:32:26 +03:00
|
|
|
log_facility_ptr = &options->log_facility;
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_facility_number(arg);
|
2002-02-05 04:26:34 +03:00
|
|
|
if (value == SYSLOG_FACILITY_NOT_SET)
|
2001-12-06 21:22:17 +03:00
|
|
|
fatal("%.200s line %d: unsupported log facility '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2008-01-01 12:32:26 +03:00
|
|
|
if (*log_facility_ptr == -1)
|
|
|
|
*log_facility_ptr = (SyslogFacility) value;
|
2001-12-06 21:22:17 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case sLogLevel:
|
2008-01-01 12:32:26 +03:00
|
|
|
log_level_ptr = &options->log_level;
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_level_number(arg);
|
2002-02-05 04:26:34 +03:00
|
|
|
if (value == SYSLOG_LEVEL_NOT_SET)
|
2001-12-06 21:22:17 +03:00
|
|
|
fatal("%.200s line %d: unsupported log level '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2008-01-01 12:32:26 +03:00
|
|
|
if (*log_level_ptr == -1)
|
|
|
|
*log_level_ptr = (LogLevel) value;
|
2001-12-06 21:22:17 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case sAllowTcpForwarding:
|
|
|
|
intptr = &options->allow_tcp_forwarding;
|
2012-12-03 02:50:54 +04:00
|
|
|
multistate_ptr = multistate_tcpfwd;
|
|
|
|
goto parse_multistate;
|
2001-12-06 21:22:17 +03:00
|
|
|
|
2008-05-19 08:57:41 +04:00
|
|
|
case sAllowAgentForwarding:
|
|
|
|
intptr = &options->allow_agent_forwarding;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2002-03-22 05:30:41 +03:00
|
|
|
case sUsePrivilegeSeparation:
|
|
|
|
intptr = &use_privsep;
|
2011-06-23 02:30:03 +04:00
|
|
|
multistate_ptr = multistate_privsep;
|
|
|
|
goto parse_multistate;
|
2002-03-22 05:30:41 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sAllowUsers:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_allow_users >= MAX_ALLOW_USERS)
|
|
|
|
fatal("%s line %d: too many allow users.",
|
|
|
|
filename, linenum);
|
2012-06-20 15:53:58 +04:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-24 01:29:23 +04:00
|
|
|
options->allow_users[options->num_allow_users++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-04-12 14:17:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDenyUsers:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_deny_users >= MAX_DENY_USERS)
|
2006-08-05 05:38:40 +04:00
|
|
|
fatal("%s line %d: too many deny users.",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2012-06-20 15:53:58 +04:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-24 01:29:23 +04:00
|
|
|
options->deny_users[options->num_deny_users++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2001-02-15 06:01:59 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sAllowGroups:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
|
|
|
|
fatal("%s line %d: too many allow groups.",
|
|
|
|
filename, linenum);
|
2012-06-20 15:53:58 +04:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-24 01:29:23 +04:00
|
|
|
options->allow_groups[options->num_allow_groups++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-04-12 14:17:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDenyGroups:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_deny_groups >= MAX_DENY_GROUPS)
|
|
|
|
fatal("%s line %d: too many deny groups.",
|
|
|
|
filename, linenum);
|
2012-06-20 15:53:58 +04:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
|
|
|
options->deny_groups[options->num_deny_groups++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-06-18 08:50:44 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sCiphers:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!ciphers_valid(arg))
|
|
|
|
fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (options->ciphers == NULL)
|
|
|
|
options->ciphers = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sMacs:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!mac_valid(arg))
|
|
|
|
fatal("%s line %d: Bad SSH2 mac spec '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (options->macs == NULL)
|
|
|
|
options->macs = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2010-09-24 16:11:14 +04:00
|
|
|
case sKexAlgorithms:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.",
|
|
|
|
filename, linenum);
|
|
|
|
if (!kex_names_valid(arg))
|
|
|
|
fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (options->kex_algorithms == NULL)
|
|
|
|
options->kex_algorithms = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sProtocol:
|
|
|
|
intptr = &options->protocol;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
value = proto_spec(arg);
|
|
|
|
if (value == SSH_PROTO_UNKNOWN)
|
|
|
|
fatal("%s line %d: Bad protocol spec '%s'.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2001-12-06 21:22:17 +03:00
|
|
|
if (*intptr == SSH_PROTO_UNKNOWN)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sSubsystem:
|
|
|
|
if (options->num_subsystems >= MAX_SUBSYSTEMS) {
|
|
|
|
fatal("%s line %d: too many subsystems defined.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem name.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (!*activep) {
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
}
|
2001-12-06 21:22:17 +03:00
|
|
|
for (i = 0; i < options->num_subsystems; i++)
|
|
|
|
if (strcmp(arg, options->subsystem_name[i]) == 0)
|
|
|
|
fatal("%s line %d: Subsystem '%s' already defined.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum, arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
options->subsystem_name[options->num_subsystems] = xstrdup(arg);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem command.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
options->subsystem_command[options->num_subsystems] = xstrdup(arg);
|
2006-07-10 14:36:47 +04:00
|
|
|
|
|
|
|
/* Collect arguments (separate to executable) */
|
|
|
|
p = xstrdup(arg);
|
|
|
|
len = strlen(p) + 1;
|
|
|
|
while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
|
|
|
|
len += 1 + strlen(arg);
|
|
|
|
p = xrealloc(p, 1, len);
|
|
|
|
strlcat(p, " ", len);
|
|
|
|
strlcat(p, arg, len);
|
|
|
|
}
|
|
|
|
options->subsystem_args[options->num_subsystems] = p;
|
2001-12-06 21:22:17 +03:00
|
|
|
options->num_subsystems++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sMaxStartups:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing MaxStartups spec.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
if ((n = sscanf(arg, "%d:%d:%d",
|
|
|
|
&options->max_startups_begin,
|
|
|
|
&options->max_startups_rate,
|
|
|
|
&options->max_startups)) == 3) {
|
|
|
|
if (options->max_startups_begin >
|
|
|
|
options->max_startups ||
|
|
|
|
options->max_startups_rate > 100 ||
|
|
|
|
options->max_startups_rate < 1)
|
2000-08-18 07:59:06 +04:00
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
2001-07-14 06:17:33 +04:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
} else if (n != 1)
|
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
|
|
|
filename, linenum);
|
|
|
|
else
|
|
|
|
options->max_startups = options->max_startups_begin;
|
|
|
|
break;
|
|
|
|
|
2004-05-24 04:36:23 +04:00
|
|
|
case sMaxAuthTries:
|
|
|
|
intptr = &options->max_authtries;
|
|
|
|
goto parse_int;
|
|
|
|
|
2008-05-19 09:34:50 +04:00
|
|
|
case sMaxSessions:
|
|
|
|
intptr = &options->max_sessions;
|
|
|
|
goto parse_int;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sBanner:
|
|
|
|
charptr = &options->banner;
|
|
|
|
goto parse_filename;
|
2008-02-10 14:40:12 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
/*
|
|
|
|
* These options can contain %X options expanded at
|
|
|
|
* connect time, so that you can specify paths like:
|
|
|
|
*
|
|
|
|
* AuthorizedKeysFile /etc/ssh_keys/%u
|
|
|
|
*/
|
|
|
|
case sAuthorizedKeysFile:
|
2011-05-29 15:39:36 +04:00
|
|
|
if (*activep && options->num_authkeys_files == 0) {
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_authkeys_files >=
|
|
|
|
MAX_AUTHKEYS_FILES)
|
|
|
|
fatal("%s line %d: "
|
|
|
|
"too many authorized keys files.",
|
|
|
|
filename, linenum);
|
|
|
|
options->authorized_keys_files[
|
|
|
|
options->num_authkeys_files++] =
|
|
|
|
tilde_expand_filename(arg, getuid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2010-05-10 05:58:03 +04:00
|
|
|
case sAuthorizedPrincipalsFile:
|
|
|
|
charptr = &options->authorized_principals_file;
|
2010-03-21 21:52:26 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *charptr == NULL) {
|
2010-03-21 21:53:04 +03:00
|
|
|
*charptr = tilde_expand_filename(arg, getuid());
|
2010-03-21 21:52:26 +03:00
|
|
|
/* increase optional counter */
|
|
|
|
if (intptr != NULL)
|
|
|
|
*intptr = *intptr + 1;
|
|
|
|
}
|
|
|
|
break;
|
2001-12-06 21:22:17 +03:00
|
|
|
|
|
|
|
case sClientAliveInterval:
|
|
|
|
intptr = &options->client_alive_interval;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case sClientAliveCountMax:
|
|
|
|
intptr = &options->client_alive_count_max;
|
|
|
|
goto parse_int;
|
|
|
|
|
2004-05-02 16:11:30 +04:00
|
|
|
case sAcceptEnv:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (strchr(arg, '=') != NULL)
|
|
|
|
fatal("%s line %d: Invalid environment name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (options->num_accept_env >= MAX_ACCEPT_ENV)
|
|
|
|
fatal("%s line %d: too many allow env.",
|
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (!*activep)
|
2012-06-20 15:53:58 +04:00
|
|
|
continue;
|
2004-05-02 16:11:30 +04:00
|
|
|
options->accept_env[options->num_accept_env++] =
|
|
|
|
xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-12-13 11:29:02 +03:00
|
|
|
case sPermitTunnel:
|
|
|
|
intptr = &options->permit_tun;
|
2005-12-13 11:33:19 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing yes/point-to-point/"
|
|
|
|
"ethernet/no argument.", filename, linenum);
|
2008-06-10 17:01:51 +04:00
|
|
|
value = -1;
|
|
|
|
for (i = 0; tunmode_desc[i].val != -1; i++)
|
|
|
|
if (strcmp(tunmode_desc[i].text, arg) == 0) {
|
|
|
|
value = tunmode_desc[i].val;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (value == -1)
|
2005-12-13 11:33:19 +03:00
|
|
|
fatal("%s line %d: Bad yes/point-to-point/ethernet/"
|
|
|
|
"no argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
2005-12-13 11:29:02 +03:00
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
case sMatch:
|
|
|
|
if (cmdline)
|
|
|
|
fatal("Match directive not supported as a command-line "
|
|
|
|
"option");
|
2012-05-19 13:37:01 +04:00
|
|
|
value = match_cfg_line(&cp, linenum, connectinfo);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (value < 0)
|
|
|
|
fatal("%s line %d: Bad Match condition", filename,
|
|
|
|
linenum);
|
|
|
|
*activep = value;
|
|
|
|
break;
|
|
|
|
|
2006-07-24 08:04:00 +04:00
|
|
|
case sPermitOpen:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing PermitOpen specification",
|
|
|
|
filename, linenum);
|
2007-01-05 08:29:02 +03:00
|
|
|
n = options->num_permitted_opens; /* modified later */
|
2006-07-24 08:04:00 +04:00
|
|
|
if (strcmp(arg, "any") == 0) {
|
2007-01-05 08:29:02 +03:00
|
|
|
if (*activep && n == -1) {
|
2006-07-24 08:04:00 +04:00
|
|
|
channel_clear_adm_permitted_opens();
|
2006-07-24 08:08:13 +04:00
|
|
|
options->num_permitted_opens = 0;
|
|
|
|
}
|
2006-07-24 08:04:00 +04:00
|
|
|
break;
|
|
|
|
}
|
2012-04-22 05:18:53 +04:00
|
|
|
if (strcmp(arg, "none") == 0) {
|
|
|
|
if (*activep && n == -1) {
|
|
|
|
options->num_permitted_opens = 1;
|
|
|
|
channel_disable_adm_local_opens();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-01-05 08:28:36 +03:00
|
|
|
if (*activep && n == -1)
|
|
|
|
channel_clear_adm_permitted_opens();
|
2006-07-24 08:08:13 +04:00
|
|
|
for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
|
|
|
|
p = hpdelim(&arg);
|
|
|
|
if (p == NULL)
|
|
|
|
fatal("%s line %d: missing host in PermitOpen",
|
|
|
|
filename, linenum);
|
|
|
|
p = cleanhostname(p);
|
2011-10-02 11:57:35 +04:00
|
|
|
if (arg == NULL || ((port = permitopen_port(arg)) < 0))
|
2006-07-24 08:08:13 +04:00
|
|
|
fatal("%s line %d: bad port number in "
|
|
|
|
"PermitOpen", filename, linenum);
|
2007-01-05 08:28:36 +03:00
|
|
|
if (*activep && n == -1)
|
2006-07-24 08:08:13 +04:00
|
|
|
options->num_permitted_opens =
|
|
|
|
channel_add_adm_permitted_opens(p, port);
|
|
|
|
}
|
2006-07-24 08:04:00 +04:00
|
|
|
break;
|
|
|
|
|
2006-07-24 08:06:47 +04:00
|
|
|
case sForceCommand:
|
|
|
|
if (cp == NULL)
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename,
|
|
|
|
linenum);
|
|
|
|
len = strspn(cp, WHITESPACE);
|
|
|
|
if (*activep && options->adm_forced_command == NULL)
|
|
|
|
options->adm_forced_command = xstrdup(cp + len);
|
|
|
|
return 0;
|
|
|
|
|
2008-02-10 14:40:12 +03:00
|
|
|
case sChrootDirectory:
|
|
|
|
charptr = &options->chroot_directory;
|
2008-02-10 14:48:55 +03:00
|
|
|
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *charptr == NULL)
|
|
|
|
*charptr = xstrdup(arg);
|
|
|
|
break;
|
2008-02-10 14:40:12 +03:00
|
|
|
|
2010-03-04 13:53:35 +03:00
|
|
|
case sTrustedUserCAKeys:
|
|
|
|
charptr = &options->trusted_user_ca_keys;
|
|
|
|
goto parse_filename;
|
|
|
|
|
|
|
|
case sRevokedKeys:
|
|
|
|
charptr = &options->revoked_keys_file;
|
|
|
|
goto parse_filename;
|
|
|
|
|
2010-11-20 07:19:38 +03:00
|
|
|
case sIPQoS:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if ((value = parse_ipqos(arg)) == -1)
|
|
|
|
fatal("%s line %d: Bad IPQoS value: %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
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;
|
|
|
|
|
2012-04-22 05:24:43 +04:00
|
|
|
case sVersionAddendum:
|
|
|
|
if (cp == NULL)
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename,
|
|
|
|
linenum);
|
|
|
|
len = strspn(cp, WHITESPACE);
|
|
|
|
if (*activep && options->version_addendum == NULL) {
|
|
|
|
if (strcasecmp(cp + len, "none") == 0)
|
|
|
|
options->version_addendum = xstrdup("");
|
|
|
|
else if (strchr(cp + len, '\r') != NULL)
|
|
|
|
fatal("%.200s line %d: Invalid argument",
|
|
|
|
filename, linenum);
|
|
|
|
else
|
|
|
|
options->version_addendum = xstrdup(cp + len);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2012-10-31 01:58:58 +04:00
|
|
|
case sAuthorizedKeysCommand:
|
|
|
|
len = strspn(cp, WHITESPACE);
|
|
|
|
if (*activep && options->authorized_keys_command == NULL) {
|
|
|
|
if (cp[len] != '/' && strcasecmp(cp + len, "none") != 0)
|
|
|
|
fatal("%.200s line %d: AuthorizedKeysCommand "
|
|
|
|
"must be an absolute path",
|
|
|
|
filename, linenum);
|
|
|
|
options->authorized_keys_command = xstrdup(cp + len);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case sAuthorizedKeysCommandUser:
|
|
|
|
charptr = &options->authorized_keys_command_user;
|
|
|
|
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (*activep && *charptr == NULL)
|
|
|
|
*charptr = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2012-11-04 16:21:40 +04:00
|
|
|
case sAuthenticationMethods:
|
|
|
|
if (*activep && options->num_auth_methods == 0) {
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_auth_methods >=
|
|
|
|
MAX_AUTH_METHODS)
|
|
|
|
fatal("%s line %d: "
|
|
|
|
"too many authentication methods.",
|
|
|
|
filename, linenum);
|
|
|
|
if (auth2_methods_valid(arg, 0) != 0)
|
|
|
|
fatal("%s line %d: invalid "
|
|
|
|
"authentication method list.",
|
|
|
|
filename, linenum);
|
|
|
|
options->auth_methods[
|
|
|
|
options->num_auth_methods++] = xstrdup(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDeprecated:
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("%s line %d: Deprecated option %s",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
2003-05-16 05:38:32 +04:00
|
|
|
case sUnsupported:
|
|
|
|
logit("%s line %d: Unsupported option %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
default:
|
|
|
|
fatal("%s line %d: Missing handler for opcode %s (%d)",
|
|
|
|
filename, linenum, arg, opcode);
|
|
|
|
}
|
|
|
|
if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
|
|
|
|
fatal("%s line %d: garbage at end of line; \"%.200s\".",
|
|
|
|
filename, linenum, arg);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-07-11 11:31:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Reads the server configuration file. */
|
2001-09-12 20:32:14 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
void
|
2004-06-25 07:33:20 +04:00
|
|
|
load_server_config(const char *filename, Buffer *conf)
|
2001-12-06 21:22:17 +03:00
|
|
|
{
|
2012-07-31 06:22:37 +04:00
|
|
|
char line[4096], *cp;
|
2002-06-24 01:29:23 +04:00
|
|
|
FILE *f;
|
2012-07-31 06:22:37 +04:00
|
|
|
int lineno = 0;
|
2001-12-06 21:22:17 +03:00
|
|
|
|
2004-06-25 07:33:20 +04:00
|
|
|
debug2("%s: filename %s", __func__, filename);
|
|
|
|
if ((f = fopen(filename, "r")) == NULL) {
|
2001-12-06 21:22:17 +03:00
|
|
|
perror(filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-06-25 07:33:20 +04:00
|
|
|
buffer_clear(conf);
|
2001-12-06 21:22:17 +03:00
|
|
|
while (fgets(line, sizeof(line), f)) {
|
2012-07-31 06:22:37 +04:00
|
|
|
lineno++;
|
|
|
|
if (strlen(line) == sizeof(line) - 1)
|
|
|
|
fatal("%s line %d too long", filename, lineno);
|
2004-06-25 07:33:20 +04:00
|
|
|
/*
|
|
|
|
* Trim out comments and strip whitespace
|
2004-07-17 10:12:08 +04:00
|
|
|
* NB - preserve newlines, they are needed to reproduce
|
2004-06-25 07:33:20 +04:00
|
|
|
* line numbers later for error messages
|
|
|
|
*/
|
|
|
|
if ((cp = strchr(line, '#')) != NULL)
|
|
|
|
memcpy(cp, "\n", 2);
|
|
|
|
cp = line + strspn(line, " \t\r");
|
|
|
|
|
|
|
|
buffer_append(conf, cp, strlen(cp));
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2004-06-25 07:33:20 +04:00
|
|
|
buffer_append(conf, "\0", 1);
|
1999-11-24 16:26:21 +03:00
|
|
|
fclose(f);
|
2004-06-25 07:33:20 +04:00
|
|
|
debug2("%s: done config len = %d", __func__, buffer_len(conf));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-05-19 13:37:01 +04:00
|
|
|
parse_server_match_config(ServerOptions *options,
|
|
|
|
struct connection_info *connectinfo)
|
2006-07-12 16:34:17 +04:00
|
|
|
{
|
|
|
|
ServerOptions mo;
|
|
|
|
|
|
|
|
initialize_server_options(&mo);
|
2012-05-19 13:37:01 +04:00
|
|
|
parse_server_config(&mo, "reprocess config", &cfg, connectinfo);
|
2007-02-19 14:25:37 +03:00
|
|
|
copy_set_server_options(options, &mo, 0);
|
2006-07-12 16:34:17 +04:00
|
|
|
}
|
|
|
|
|
2012-05-19 13:37:01 +04:00
|
|
|
int parse_server_match_testspec(struct connection_info *ci, char *spec)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
while ((p = strsep(&spec, ",")) && *p != '\0') {
|
|
|
|
if (strncmp(p, "addr=", 5) == 0) {
|
|
|
|
ci->address = xstrdup(p + 5);
|
|
|
|
} else if (strncmp(p, "host=", 5) == 0) {
|
|
|
|
ci->host = xstrdup(p + 5);
|
|
|
|
} else if (strncmp(p, "user=", 5) == 0) {
|
|
|
|
ci->user = xstrdup(p + 5);
|
|
|
|
} else if (strncmp(p, "laddr=", 6) == 0) {
|
|
|
|
ci->laddress = xstrdup(p + 6);
|
|
|
|
} else if (strncmp(p, "lport=", 6) == 0) {
|
|
|
|
ci->lport = a2port(p + 6);
|
|
|
|
if (ci->lport == -1) {
|
|
|
|
fprintf(stderr, "Invalid port '%s' in test mode"
|
|
|
|
" specification %s\n", p+6, p);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid test mode specification %s\n",
|
|
|
|
p);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* returns 1 for a complete spec, 0 for partial spec and -1 for an
|
|
|
|
* empty spec.
|
|
|
|
*/
|
|
|
|
int server_match_spec_complete(struct connection_info *ci)
|
|
|
|
{
|
|
|
|
if (ci->user && ci->host && ci->address)
|
|
|
|
return 1; /* complete */
|
|
|
|
if (!ci->user && !ci->host && !ci->address)
|
|
|
|
return -1; /* empty */
|
|
|
|
return 0; /* partial */
|
|
|
|
}
|
|
|
|
|
2007-02-19 14:25:37 +03:00
|
|
|
/* Helper macros */
|
|
|
|
#define M_CP_INTOPT(n) do {\
|
|
|
|
if (src->n != -1) \
|
|
|
|
dst->n = src->n; \
|
|
|
|
} while (0)
|
|
|
|
#define M_CP_STROPT(n) do {\
|
|
|
|
if (src->n != NULL) { \
|
|
|
|
if (dst->n != NULL) \
|
|
|
|
xfree(dst->n); \
|
|
|
|
dst->n = src->n; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2011-05-29 15:39:36 +04:00
|
|
|
#define M_CP_STRARRAYOPT(n, num_n) do {\
|
|
|
|
if (src->num_n != 0) { \
|
|
|
|
for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
|
|
|
|
dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2007-02-19 14:25:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy any supported values that are set.
|
|
|
|
*
|
2009-06-21 11:54:47 +04:00
|
|
|
* If the preauth flag is set, we do not bother copying the string or
|
2007-02-19 14:25:37 +03:00
|
|
|
* array values that are not used pre-authentication, because any that we
|
|
|
|
* do use must be explictly sent in mm_getpwnamallow().
|
|
|
|
*/
|
2006-07-12 16:34:17 +04:00
|
|
|
void
|
2007-02-19 14:25:37 +03:00
|
|
|
copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
|
2006-07-12 16:34:17 +04:00
|
|
|
{
|
2007-02-19 14:25:37 +03:00
|
|
|
M_CP_INTOPT(password_authentication);
|
|
|
|
M_CP_INTOPT(gss_authentication);
|
|
|
|
M_CP_INTOPT(rsa_authentication);
|
|
|
|
M_CP_INTOPT(pubkey_authentication);
|
|
|
|
M_CP_INTOPT(kerberos_authentication);
|
|
|
|
M_CP_INTOPT(hostbased_authentication);
|
2010-06-26 03:38:45 +04:00
|
|
|
M_CP_INTOPT(hostbased_uses_name_from_packet_only);
|
2007-02-19 14:25:37 +03:00
|
|
|
M_CP_INTOPT(kbd_interactive_authentication);
|
2008-11-05 08:20:46 +03:00
|
|
|
M_CP_INTOPT(zero_knowledge_password_authentication);
|
2012-10-31 01:58:58 +04:00
|
|
|
M_CP_STROPT(authorized_keys_command);
|
|
|
|
M_CP_STROPT(authorized_keys_command_user);
|
2008-01-01 12:36:56 +03:00
|
|
|
M_CP_INTOPT(permit_root_login);
|
2008-11-03 11:23:10 +03:00
|
|
|
M_CP_INTOPT(permit_empty_passwd);
|
2007-02-19 14:25:37 +03:00
|
|
|
|
|
|
|
M_CP_INTOPT(allow_tcp_forwarding);
|
2008-05-19 08:57:41 +04:00
|
|
|
M_CP_INTOPT(allow_agent_forwarding);
|
2010-06-26 03:38:45 +04:00
|
|
|
M_CP_INTOPT(permit_tun);
|
2007-02-19 14:25:37 +03:00
|
|
|
M_CP_INTOPT(gateway_ports);
|
|
|
|
M_CP_INTOPT(x11_display_offset);
|
|
|
|
M_CP_INTOPT(x11_forwarding);
|
|
|
|
M_CP_INTOPT(x11_use_localhost);
|
2008-05-19 09:34:50 +04:00
|
|
|
M_CP_INTOPT(max_sessions);
|
2008-06-16 01:56:20 +04:00
|
|
|
M_CP_INTOPT(max_authtries);
|
2010-11-20 07:19:38 +03:00
|
|
|
M_CP_INTOPT(ip_qos_interactive);
|
|
|
|
M_CP_INTOPT(ip_qos_bulk);
|
2013-05-16 14:29:28 +04:00
|
|
|
M_CP_INTOPT(rekey_limit);
|
|
|
|
M_CP_INTOPT(rekey_interval);
|
2007-02-19 14:25:37 +03:00
|
|
|
|
2011-05-20 13:04:14 +04:00
|
|
|
/* See comment in servconf.h */
|
|
|
|
COPY_MATCH_STRING_OPTS();
|
2011-05-20 13:03:31 +04:00
|
|
|
|
2011-05-20 13:03:49 +04:00
|
|
|
/*
|
|
|
|
* The only things that should be below this point are string options
|
|
|
|
* which are only used after authentication.
|
|
|
|
*/
|
2011-05-20 13:03:31 +04:00
|
|
|
if (preauth)
|
|
|
|
return;
|
2011-05-29 15:39:36 +04:00
|
|
|
|
2011-05-20 13:03:31 +04:00
|
|
|
M_CP_STROPT(adm_forced_command);
|
|
|
|
M_CP_STROPT(chroot_directory);
|
2006-07-12 16:34:17 +04:00
|
|
|
}
|
|
|
|
|
2007-02-19 14:25:37 +03:00
|
|
|
#undef M_CP_INTOPT
|
|
|
|
#undef M_CP_STROPT
|
2011-05-29 15:39:36 +04:00
|
|
|
#undef M_CP_STRARRAYOPT
|
2007-02-19 14:25:37 +03:00
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
void
|
|
|
|
parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
|
2012-05-19 13:37:01 +04:00
|
|
|
struct connection_info *connectinfo)
|
2004-06-25 07:33:20 +04:00
|
|
|
{
|
2006-07-12 16:34:17 +04:00
|
|
|
int active, linenum, bad_options = 0;
|
2004-08-12 16:41:44 +04:00
|
|
|
char *cp, *obuf, *cbuf;
|
2004-06-25 07:33:20 +04:00
|
|
|
|
|
|
|
debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
|
|
|
|
|
2004-08-12 16:41:44 +04:00
|
|
|
obuf = cbuf = xstrdup(buffer_ptr(conf));
|
2012-05-19 13:37:01 +04:00
|
|
|
active = connectinfo ? 0 : 1;
|
2004-08-13 15:30:24 +04:00
|
|
|
linenum = 1;
|
2005-03-14 15:08:12 +03:00
|
|
|
while ((cp = strsep(&cbuf, "\n")) != NULL) {
|
2004-06-25 07:33:20 +04:00
|
|
|
if (process_server_config_line(options, cp, filename,
|
2012-05-19 13:37:01 +04:00
|
|
|
linenum++, &active, connectinfo) != 0)
|
2004-06-25 07:33:20 +04:00
|
|
|
bad_options++;
|
|
|
|
}
|
2004-08-12 16:41:44 +04:00
|
|
|
xfree(obuf);
|
2001-04-16 06:13:26 +04:00
|
|
|
if (bad_options > 0)
|
|
|
|
fatal("%s: terminating, %d bad configuration options",
|
|
|
|
filename, bad_options);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2008-06-10 17:01:51 +04:00
|
|
|
|
|
|
|
static const char *
|
2011-06-23 02:20:30 +04:00
|
|
|
fmt_multistate_int(int val, const struct multistate *m)
|
2008-06-10 17:01:51 +04:00
|
|
|
{
|
2011-06-23 02:20:30 +04:00
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; m[i].key != NULL; i++) {
|
|
|
|
if (m[i].value == val)
|
|
|
|
return m[i].key;
|
2008-06-10 17:01:51 +04:00
|
|
|
}
|
2011-06-23 02:20:30 +04:00
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
fmt_intarg(ServerOpCodes code, int val)
|
|
|
|
{
|
|
|
|
if (val == -1)
|
|
|
|
return "unset";
|
|
|
|
switch (code) {
|
|
|
|
case sAddressFamily:
|
|
|
|
return fmt_multistate_int(val, multistate_addressfamily);
|
|
|
|
case sPermitRootLogin:
|
|
|
|
return fmt_multistate_int(val, multistate_permitrootlogin);
|
|
|
|
case sGatewayPorts:
|
|
|
|
return fmt_multistate_int(val, multistate_gatewayports);
|
|
|
|
case sCompression:
|
|
|
|
return fmt_multistate_int(val, multistate_compression);
|
2011-06-23 02:30:03 +04:00
|
|
|
case sUsePrivilegeSeparation:
|
|
|
|
return fmt_multistate_int(val, multistate_privsep);
|
2012-12-03 02:50:54 +04:00
|
|
|
case sAllowTcpForwarding:
|
|
|
|
return fmt_multistate_int(val, multistate_tcpfwd);
|
2011-06-23 02:20:30 +04:00
|
|
|
case sProtocol:
|
2008-06-10 17:01:51 +04:00
|
|
|
switch (val) {
|
|
|
|
case SSH_PROTO_1:
|
|
|
|
return "1";
|
|
|
|
case SSH_PROTO_2:
|
|
|
|
return "2";
|
|
|
|
case (SSH_PROTO_1|SSH_PROTO_2):
|
|
|
|
return "2,1";
|
|
|
|
default:
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
2011-06-23 02:20:30 +04:00
|
|
|
default:
|
|
|
|
switch (val) {
|
|
|
|
case 0:
|
|
|
|
return "no";
|
|
|
|
case 1:
|
|
|
|
return "yes";
|
|
|
|
default:
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
2008-06-10 17:01:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
lookup_opcode_name(ServerOpCodes code)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; keywords[i].name != NULL; i++)
|
|
|
|
if (keywords[i].opcode == code)
|
|
|
|
return(keywords[i].name);
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_cfg_int(ServerOpCodes code, int val)
|
|
|
|
{
|
|
|
|
printf("%s %d\n", lookup_opcode_name(code), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_cfg_fmtint(ServerOpCodes code, int val)
|
|
|
|
{
|
|
|
|
printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_cfg_string(ServerOpCodes code, const char *val)
|
|
|
|
{
|
|
|
|
if (val == NULL)
|
|
|
|
return;
|
|
|
|
printf("%s %s\n", lookup_opcode_name(code), val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
2011-05-29 15:39:36 +04:00
|
|
|
printf("%s %s\n", lookup_opcode_name(code), vals[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
printf("%s", lookup_opcode_name(code));
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
printf(" %s", vals[i]);
|
|
|
|
printf("\n");
|
2008-06-10 17:01:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dump_config(ServerOptions *o)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
int ret;
|
|
|
|
struct addrinfo *ai;
|
|
|
|
char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
|
|
|
|
|
|
|
|
/* these are usually at the top of the config */
|
|
|
|
for (i = 0; i < o->num_ports; i++)
|
|
|
|
printf("port %d\n", o->ports[i]);
|
|
|
|
dump_cfg_fmtint(sProtocol, o->protocol);
|
|
|
|
dump_cfg_fmtint(sAddressFamily, o->address_family);
|
|
|
|
|
|
|
|
/* ListenAddress must be after Port */
|
|
|
|
for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
|
|
|
|
if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
|
|
|
|
sizeof(addr), port, sizeof(port),
|
|
|
|
NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
|
|
|
|
error("getnameinfo failed: %.100s",
|
|
|
|
(ret != EAI_SYSTEM) ? gai_strerror(ret) :
|
|
|
|
strerror(errno));
|
|
|
|
} else {
|
|
|
|
if (ai->ai_family == AF_INET6)
|
|
|
|
printf("listenaddress [%s]:%s\n", addr, port);
|
|
|
|
else
|
|
|
|
printf("listenaddress %s:%s\n", addr, port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* integer arguments */
|
2008-07-23 11:42:29 +04:00
|
|
|
#ifdef USE_PAM
|
|
|
|
dump_cfg_int(sUsePAM, o->use_pam);
|
|
|
|
#endif
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_int(sServerKeyBits, o->server_key_bits);
|
|
|
|
dump_cfg_int(sLoginGraceTime, o->login_grace_time);
|
|
|
|
dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
|
|
|
|
dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
|
|
|
|
dump_cfg_int(sMaxAuthTries, o->max_authtries);
|
2008-11-05 08:12:11 +03:00
|
|
|
dump_cfg_int(sMaxSessions, o->max_sessions);
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
|
|
|
|
dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
|
|
|
|
|
|
|
|
/* formatted integer arguments */
|
|
|
|
dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
|
|
|
|
dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
|
|
|
|
dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
|
|
|
|
dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
|
|
|
|
dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
|
|
|
|
dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
|
|
|
|
o->hostbased_uses_name_from_packet_only);
|
|
|
|
dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
|
|
|
|
dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
|
2008-07-23 11:40:04 +04:00
|
|
|
#ifdef KRB5
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
|
|
|
|
dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
|
|
|
|
dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
|
2008-07-23 11:40:04 +04:00
|
|
|
# ifdef USE_AFS
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
|
2008-07-23 11:40:04 +04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef GSSAPI
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
|
|
|
|
dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
|
2008-11-05 08:20:46 +03:00
|
|
|
#endif
|
|
|
|
#ifdef JPAKE
|
|
|
|
dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
|
|
|
|
o->zero_knowledge_password_authentication);
|
2008-07-23 11:40:04 +04:00
|
|
|
#endif
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
|
|
|
|
dump_cfg_fmtint(sKbdInteractiveAuthentication,
|
|
|
|
o->kbd_interactive_authentication);
|
|
|
|
dump_cfg_fmtint(sChallengeResponseAuthentication,
|
|
|
|
o->challenge_response_authentication);
|
|
|
|
dump_cfg_fmtint(sPrintMotd, o->print_motd);
|
|
|
|
dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
|
|
|
|
dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
|
|
|
|
dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
|
|
|
|
dump_cfg_fmtint(sStrictModes, o->strict_modes);
|
|
|
|
dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
|
|
|
|
dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
|
|
|
|
dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
|
|
|
|
dump_cfg_fmtint(sUseLogin, o->use_login);
|
|
|
|
dump_cfg_fmtint(sCompression, o->compression);
|
|
|
|
dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
|
|
|
|
dump_cfg_fmtint(sUseDNS, o->use_dns);
|
|
|
|
dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
|
|
|
|
dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
|
|
|
|
|
|
|
|
/* string arguments */
|
|
|
|
dump_cfg_string(sPidFile, o->pid_file);
|
|
|
|
dump_cfg_string(sXAuthLocation, o->xauth_location);
|
|
|
|
dump_cfg_string(sCiphers, o->ciphers);
|
|
|
|
dump_cfg_string(sMacs, o->macs);
|
|
|
|
dump_cfg_string(sBanner, o->banner);
|
|
|
|
dump_cfg_string(sForceCommand, o->adm_forced_command);
|
2010-01-10 11:26:43 +03:00
|
|
|
dump_cfg_string(sChrootDirectory, o->chroot_directory);
|
2010-03-04 13:53:35 +03:00
|
|
|
dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
|
|
|
|
dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
|
2010-05-10 05:58:03 +04:00
|
|
|
dump_cfg_string(sAuthorizedPrincipalsFile,
|
|
|
|
o->authorized_principals_file);
|
2012-04-22 05:24:43 +04:00
|
|
|
dump_cfg_string(sVersionAddendum, o->version_addendum);
|
2012-10-31 01:58:58 +04:00
|
|
|
dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
|
|
|
|
dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
|
2008-06-10 17:01:51 +04:00
|
|
|
|
|
|
|
/* string arguments requiring a lookup */
|
|
|
|
dump_cfg_string(sLogLevel, log_level_name(o->log_level));
|
|
|
|
dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
|
|
|
|
|
|
|
|
/* string array arguments */
|
2011-05-29 15:39:36 +04:00
|
|
|
dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
|
|
|
|
o->authorized_keys_files);
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
|
|
|
|
o->host_key_files);
|
2010-02-26 23:55:05 +03:00
|
|
|
dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
|
|
|
|
o->host_cert_files);
|
2008-06-10 17:01:51 +04:00
|
|
|
dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
|
|
|
|
dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
|
|
|
|
dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
|
|
|
|
dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
|
|
|
|
dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
|
2012-11-04 16:21:40 +04:00
|
|
|
dump_cfg_strarray_oneline(sAuthenticationMethods,
|
|
|
|
o->num_auth_methods, o->auth_methods);
|
2008-06-10 17:01:51 +04:00
|
|
|
|
|
|
|
/* other arguments */
|
|
|
|
for (i = 0; i < o->num_subsystems; i++)
|
|
|
|
printf("subsystem %s %s\n", o->subsystem_name[i],
|
|
|
|
o->subsystem_args[i]);
|
|
|
|
|
|
|
|
printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
|
|
|
|
o->max_startups_rate, o->max_startups);
|
|
|
|
|
|
|
|
for (i = 0; tunmode_desc[i].val != -1; i++)
|
|
|
|
if (tunmode_desc[i].val == o->permit_tun) {
|
|
|
|
s = tunmode_desc[i].text;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
dump_cfg_string(sPermitTunnel, s);
|
|
|
|
|
2011-05-05 08:14:34 +04:00
|
|
|
printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
|
|
|
|
printf("%s\n", iptos2str(o->ip_qos_bulk));
|
2010-11-20 07:19:38 +03:00
|
|
|
|
2013-05-16 14:29:28 +04:00
|
|
|
printf("rekeylimit %lld %d\n", o->rekey_limit, o->rekey_interval);
|
|
|
|
|
2008-06-10 17:01:51 +04:00
|
|
|
channel_print_adm_permitted_opens();
|
|
|
|
}
|