2012-08-29 15:55:54 +00:00
|
|
|
|
2014-03-22 15:23:38 +00:00
|
|
|
/* $OpenBSD: servconf.c,v 1.249 2014/01/29 06:18:35 djm Exp $ */
|
2011-08-03 19:14:22 +00:00
|
|
|
/* $FreeBSD$ */
|
2000-02-24 14:29:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-05-15 05:24:25 +00:00
|
|
|
*
|
2000-09-10 09:35:38 +00: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".
|
2000-02-24 14:29:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
2006-09-30 13:38:06 +00:00
|
|
|
__RCSID("$FreeBSD$");
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2006-09-30 13:38:06 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2011-02-17 11:47:40 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
|
2013-09-18 17:27:38 +00:00
|
|
|
#include <ctype.h>
|
2006-09-30 13:38:06 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
2008-07-23 09:33:08 +00:00
|
|
|
#include <errno.h>
|
2013-09-18 17:27:38 +00:00
|
|
|
#ifdef HAVE_UTIL_H
|
|
|
|
#include <util.h>
|
|
|
|
#endif
|
2006-09-30 13:38:06 +00:00
|
|
|
|
2008-07-23 09:33:08 +00:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
2006-09-30 13:38:06 +00:00
|
|
|
#include "xmalloc.h"
|
2000-02-24 14:29:47 +00:00
|
|
|
#include "ssh.h"
|
2001-05-04 04:14:23 +00:00
|
|
|
#include "log.h"
|
2006-09-30 13:38:06 +00:00
|
|
|
#include "buffer.h"
|
2000-02-24 14:29:47 +00:00
|
|
|
#include "servconf.h"
|
2000-05-15 05:24:25 +00:00
|
|
|
#include "compat.h"
|
2001-05-04 04:14:23 +00:00
|
|
|
#include "pathnames.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "cipher.h"
|
2006-09-30 13:38:06 +00:00
|
|
|
#include "key.h"
|
2001-05-04 04:14:23 +00:00
|
|
|
#include "kex.h"
|
|
|
|
#include "mac.h"
|
2006-09-30 13:38:06 +00:00
|
|
|
#include "match.h"
|
|
|
|
#include "channels.h"
|
|
|
|
#include "groupaccess.h"
|
2012-08-29 15:55:54 +00:00
|
|
|
#include "canohost.h"
|
|
|
|
#include "packet.h"
|
2013-03-22 11:19:48 +00:00
|
|
|
#include "hostfile.h"
|
|
|
|
#include "auth.h"
|
2010-03-09 19:16:43 +00:00
|
|
|
#include "version.h"
|
2001-05-04 04:14:23 +00:00
|
|
|
|
2009-02-24 18:49:27 +00:00
|
|
|
static void add_listen_addr(ServerOptions *, char *, int);
|
|
|
|
static void add_one_listen_addr(ServerOptions *, char *, int);
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-06-23 16:09:08 +00:00
|
|
|
/* Use of privilege separation or not */
|
|
|
|
extern int use_privsep;
|
2006-09-30 13:38:06 +00:00
|
|
|
extern Buffer cfg;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
|
|
|
/* Initializes the server options to their default values. */
|
|
|
|
|
2000-05-15 05:24:25 +00:00
|
|
|
void
|
2000-02-24 14:29:47 +00:00
|
|
|
initialize_server_options(ServerOptions *options)
|
|
|
|
{
|
|
|
|
memset(options, 0, sizeof(*options));
|
2002-06-27 22:42:11 +00:00
|
|
|
|
|
|
|
/* Portable-specific options */
|
2004-01-07 11:16:27 +00:00
|
|
|
options->use_pam = -1;
|
2002-06-27 22:42:11 +00:00
|
|
|
|
|
|
|
/* Standard Options */
|
2000-02-24 14:29:47 +00:00
|
|
|
options->num_ports = 0;
|
|
|
|
options->ports_from_cmdline = 0;
|
|
|
|
options->listen_addrs = NULL;
|
2005-06-05 15:46:09 +00:00
|
|
|
options->address_family = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->num_host_key_files = 0;
|
2010-03-08 11:19:52 +00:00
|
|
|
options->num_host_cert_files = 0;
|
2013-09-18 17:27:38 +00:00
|
|
|
options->host_key_agent = NULL;
|
2000-05-15 05:24:25 +00:00
|
|
|
options->pid_file = NULL;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->server_key_bits = -1;
|
|
|
|
options->login_grace_time = -1;
|
|
|
|
options->key_regeneration_time = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->permit_root_login = PERMIT_NOT_SET;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->ignore_rhosts = -1;
|
|
|
|
options->ignore_user_known_hosts = -1;
|
|
|
|
options->print_motd = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->print_lastlog = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->x11_forwarding = -1;
|
|
|
|
options->x11_display_offset = -1;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->x11_use_localhost = -1;
|
2014-01-30 10:56:49 +00:00
|
|
|
options->permit_tty = -1;
|
2000-09-10 09:35:38 +00:00
|
|
|
options->xauth_location = NULL;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->strict_modes = -1;
|
2004-02-26 10:52:33 +00:00
|
|
|
options->tcp_keep_alive = -1;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->log_facility = SYSLOG_FACILITY_NOT_SET;
|
|
|
|
options->log_level = SYSLOG_LEVEL_NOT_SET;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->rhosts_rsa_authentication = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->hostbased_authentication = -1;
|
|
|
|
options->hostbased_uses_name_from_packet_only = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->rsa_authentication = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->pubkey_authentication = -1;
|
2001-03-04 02:22:04 +00:00
|
|
|
options->kerberos_authentication = -1;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->kerberos_or_local_passwd = -1;
|
|
|
|
options->kerberos_ticket_cleanup = -1;
|
2004-02-26 10:52:33 +00:00
|
|
|
options->kerberos_get_afs_token = -1;
|
2004-01-07 11:16:27 +00:00
|
|
|
options->gss_authentication=-1;
|
|
|
|
options->gss_cleanup_creds = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->password_authentication = -1;
|
2000-12-05 02:55:12 +00:00
|
|
|
options->kbd_interactive_authentication = -1;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->challenge_response_authentication = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->permit_empty_passwd = -1;
|
2002-10-29 10:16:02 +00:00
|
|
|
options->permit_user_env = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->use_login = -1;
|
2002-06-23 16:09:08 +00:00
|
|
|
options->compression = -1;
|
2013-09-18 17:27:38 +00:00
|
|
|
options->rekey_limit = -1;
|
|
|
|
options->rekey_interval = -1;
|
2000-12-05 02:55:12 +00:00
|
|
|
options->allow_tcp_forwarding = -1;
|
2008-07-23 09:33:08 +00:00
|
|
|
options->allow_agent_forwarding = -1;
|
2000-02-24 14:29:47 +00:00
|
|
|
options->num_allow_users = 0;
|
|
|
|
options->num_deny_users = 0;
|
|
|
|
options->num_allow_groups = 0;
|
|
|
|
options->num_deny_groups = 0;
|
2000-05-15 05:24:25 +00:00
|
|
|
options->ciphers = NULL;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->macs = NULL;
|
2011-02-17 11:47:40 +00:00
|
|
|
options->kex_algorithms = NULL;
|
2000-05-15 05:24:25 +00:00
|
|
|
options->protocol = SSH_PROTO_UNKNOWN;
|
|
|
|
options->gateway_ports = -1;
|
2000-09-10 09:35:38 +00:00
|
|
|
options->num_subsystems = 0;
|
|
|
|
options->max_startups_begin = -1;
|
|
|
|
options->max_startups_rate = -1;
|
|
|
|
options->max_startups = -1;
|
2004-10-28 16:11:31 +00:00
|
|
|
options->max_authtries = -1;
|
2008-07-23 09:33:08 +00:00
|
|
|
options->max_sessions = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->banner = NULL;
|
2004-01-07 11:16:27 +00:00
|
|
|
options->use_dns = -1;
|
2001-05-04 04:14:23 +00:00
|
|
|
options->client_alive_interval = -1;
|
|
|
|
options->client_alive_count_max = -1;
|
2011-09-28 08:14:41 +00:00
|
|
|
options->num_authkeys_files = 0;
|
2004-10-28 16:11:31 +00:00
|
|
|
options->num_accept_env = 0;
|
2006-03-22 20:41:37 +00:00
|
|
|
options->permit_tun = -1;
|
2006-09-30 13:38:06 +00:00
|
|
|
options->num_permitted_opens = -1;
|
|
|
|
options->adm_forced_command = NULL;
|
2008-07-23 09:28:49 +00:00
|
|
|
options->chroot_directory = NULL;
|
2013-03-22 11:19:48 +00:00
|
|
|
options->authorized_keys_command = NULL;
|
|
|
|
options->authorized_keys_command_user = NULL;
|
2010-03-08 11:19:52 +00:00
|
|
|
options->revoked_keys_file = NULL;
|
|
|
|
options->trusted_user_ca_keys = NULL;
|
2010-11-08 10:45:44 +00:00
|
|
|
options->authorized_principals_file = NULL;
|
2011-02-17 11:47:40 +00:00
|
|
|
options->ip_qos_interactive = -1;
|
|
|
|
options->ip_qos_bulk = -1;
|
2012-08-29 15:55:54 +00:00
|
|
|
options->version_addendum = NULL;
|
2011-08-03 19:14:22 +00:00
|
|
|
options->hpn_disabled = -1;
|
|
|
|
options->hpn_buffer_size = -1;
|
|
|
|
options->tcp_rcv_buf_poll = -1;
|
|
|
|
#ifdef NONE_CIPHER_ENABLED
|
|
|
|
options->none_enabled = -1;
|
|
|
|
#endif
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 05:24:25 +00:00
|
|
|
void
|
2000-02-24 14:29:47 +00:00
|
|
|
fill_default_server_options(ServerOptions *options)
|
|
|
|
{
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Portable-specific options */
|
2004-01-07 11:16:27 +00:00
|
|
|
if (options->use_pam == -1)
|
2004-01-09 08:07:12 +00:00
|
|
|
options->use_pam = 1;
|
2002-06-27 22:42:11 +00:00
|
|
|
|
|
|
|
/* Standard Options */
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->protocol == SSH_PROTO_UNKNOWN)
|
2004-02-26 10:24:07 +00:00
|
|
|
options->protocol = SSH_PROTO_2;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->num_host_key_files == 0) {
|
|
|
|
/* fill default hostkeys for protocols */
|
|
|
|
if (options->protocol & SSH_PROTO_1)
|
2002-03-18 10:09:43 +00:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_KEY_FILE;
|
|
|
|
if (options->protocol & SSH_PROTO_2) {
|
2002-03-18 09:55:03 +00:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
2012-02-13 11:59:59 +00:00
|
|
|
_PATH_HOST_RSA_KEY_FILE;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_DSA_KEY_FILE;
|
2011-02-17 11:47:40 +00:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_ECDSA_KEY_FILE;
|
|
|
|
#endif
|
2014-01-30 10:56:49 +00:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_ED25519_KEY_FILE;
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
2001-05-04 04:14:23 +00:00
|
|
|
}
|
2010-03-08 11:19:52 +00:00
|
|
|
/* No certificates by default */
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
|
|
|
if (options->listen_addrs == NULL)
|
2001-05-04 04:14:23 +00:00
|
|
|
add_listen_addr(options, NULL, 0);
|
2000-05-15 05:24:25 +00:00
|
|
|
if (options->pid_file == NULL)
|
2001-05-04 04:14:23 +00:00
|
|
|
options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->server_key_bits == -1)
|
2008-07-23 09:33:08 +00:00
|
|
|
options->server_key_bits = 1024;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->login_grace_time == -1)
|
2002-06-29 10:51:56 +00:00
|
|
|
options->login_grace_time = 120;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->key_regeneration_time == -1)
|
|
|
|
options->key_regeneration_time = 3600;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->permit_root_login == PERMIT_NOT_SET)
|
2002-06-29 10:51:56 +00:00
|
|
|
options->permit_root_login = PERMIT_NO;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->ignore_rhosts == -1)
|
2000-02-28 19:03:50 +00:00
|
|
|
options->ignore_rhosts = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->ignore_user_known_hosts == -1)
|
|
|
|
options->ignore_user_known_hosts = 0;
|
|
|
|
if (options->print_motd == -1)
|
|
|
|
options->print_motd = 1;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->print_lastlog == -1)
|
|
|
|
options->print_lastlog = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->x11_forwarding == -1)
|
2002-06-29 10:51:56 +00:00
|
|
|
options->x11_forwarding = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->x11_display_offset == -1)
|
2000-02-28 19:03:50 +00:00
|
|
|
options->x11_display_offset = 10;
|
2002-03-18 10:09:43 +00:00
|
|
|
if (options->x11_use_localhost == -1)
|
|
|
|
options->x11_use_localhost = 1;
|
2000-09-10 09:35:38 +00:00
|
|
|
if (options->xauth_location == NULL)
|
2002-03-18 10:09:43 +00:00
|
|
|
options->xauth_location = _PATH_XAUTH;
|
2014-01-30 10:56:49 +00:00
|
|
|
if (options->permit_tty == -1)
|
|
|
|
options->permit_tty = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->strict_modes == -1)
|
|
|
|
options->strict_modes = 1;
|
2004-02-26 10:52:33 +00:00
|
|
|
if (options->tcp_keep_alive == -1)
|
|
|
|
options->tcp_keep_alive = 1;
|
2002-03-18 10:09:43 +00:00
|
|
|
if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
|
2000-02-24 14:29:47 +00:00
|
|
|
options->log_facility = SYSLOG_FACILITY_AUTH;
|
2002-03-18 10:09:43 +00:00
|
|
|
if (options->log_level == SYSLOG_LEVEL_NOT_SET)
|
2000-02-24 14:29:47 +00:00
|
|
|
options->log_level = SYSLOG_LEVEL_INFO;
|
|
|
|
if (options->rhosts_rsa_authentication == -1)
|
2000-02-28 19:03:50 +00:00
|
|
|
options->rhosts_rsa_authentication = 0;
|
2001-05-04 04:14:23 +00: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;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->rsa_authentication == -1)
|
|
|
|
options->rsa_authentication = 1;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->pubkey_authentication == -1)
|
|
|
|
options->pubkey_authentication = 1;
|
2002-06-27 22:42:11 +00:00
|
|
|
if (options->kerberos_authentication == -1)
|
2004-01-07 11:16:27 +00:00
|
|
|
options->kerberos_authentication = 0;
|
2002-03-18 10:09:43 +00: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;
|
2004-02-26 10:52:33 +00:00
|
|
|
if (options->kerberos_get_afs_token == -1)
|
|
|
|
options->kerberos_get_afs_token = 0;
|
2004-01-07 11:16:27 +00:00
|
|
|
if (options->gss_authentication == -1)
|
|
|
|
options->gss_authentication = 0;
|
|
|
|
if (options->gss_cleanup_creds == -1)
|
|
|
|
options->gss_cleanup_creds = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->password_authentication == -1)
|
2004-02-19 15:53:31 +00:00
|
|
|
options->password_authentication = 0;
|
2000-12-05 02:55:12 +00:00
|
|
|
if (options->kbd_interactive_authentication == -1)
|
|
|
|
options->kbd_interactive_authentication = 0;
|
2002-03-18 10:09:43 +00:00
|
|
|
if (options->challenge_response_authentication == -1)
|
2002-04-25 16:53:25 +00:00
|
|
|
options->challenge_response_authentication = 1;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->permit_empty_passwd == -1)
|
2000-02-28 19:03:50 +00:00
|
|
|
options->permit_empty_passwd = 0;
|
2002-10-29 10:16:02 +00:00
|
|
|
if (options->permit_user_env == -1)
|
|
|
|
options->permit_user_env = 0;
|
2000-02-24 14:29:47 +00:00
|
|
|
if (options->use_login == -1)
|
|
|
|
options->use_login = 0;
|
2002-06-23 16:09:08 +00:00
|
|
|
if (options->compression == -1)
|
2005-09-03 07:04:25 +00:00
|
|
|
options->compression = COMP_DELAYED;
|
2013-09-18 17:27:38 +00:00
|
|
|
if (options->rekey_limit == -1)
|
|
|
|
options->rekey_limit = 0;
|
|
|
|
if (options->rekey_interval == -1)
|
|
|
|
options->rekey_interval = 0;
|
2000-12-05 02:55:12 +00:00
|
|
|
if (options->allow_tcp_forwarding == -1)
|
2013-03-22 11:19:48 +00:00
|
|
|
options->allow_tcp_forwarding = FORWARD_ALLOW;
|
2008-07-23 09:33:08 +00:00
|
|
|
if (options->allow_agent_forwarding == -1)
|
|
|
|
options->allow_agent_forwarding = 1;
|
2000-05-15 05:24:25 +00:00
|
|
|
if (options->gateway_ports == -1)
|
|
|
|
options->gateway_ports = 0;
|
2000-09-10 09:35:38 +00:00
|
|
|
if (options->max_startups == -1)
|
2013-03-22 11:19:48 +00:00
|
|
|
options->max_startups = 100;
|
2000-09-10 09:35:38 +00:00
|
|
|
if (options->max_startups_rate == -1)
|
2013-03-22 11:19:48 +00:00
|
|
|
options->max_startups_rate = 30; /* 30% */
|
2000-09-10 09:35:38 +00:00
|
|
|
if (options->max_startups_begin == -1)
|
2013-03-22 11:19:48 +00:00
|
|
|
options->max_startups_begin = 10;
|
2004-10-28 16:11:31 +00:00
|
|
|
if (options->max_authtries == -1)
|
|
|
|
options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
|
2008-07-23 09:33:08 +00:00
|
|
|
if (options->max_sessions == -1)
|
|
|
|
options->max_sessions = DEFAULT_SESSIONS_MAX;
|
2004-01-07 11:16:27 +00:00
|
|
|
if (options->use_dns == -1)
|
|
|
|
options->use_dns = 1;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->client_alive_interval == -1)
|
2002-03-18 10:09:43 +00:00
|
|
|
options->client_alive_interval = 0;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (options->client_alive_count_max == -1)
|
|
|
|
options->client_alive_count_max = 3;
|
2011-09-28 08:14:41 +00: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);
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
2006-03-22 20:41:37 +00:00
|
|
|
if (options->permit_tun == -1)
|
|
|
|
options->permit_tun = SSH_TUNMODE_NO;
|
2011-02-17 11:47:40 +00: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-08-29 15:55:54 +00:00
|
|
|
if (options->version_addendum == NULL)
|
2012-09-03 16:51:41 +00:00
|
|
|
options->version_addendum = xstrdup(SSH_VERSION_FREEBSD);
|
2002-06-23 14:01:54 +00:00
|
|
|
/* Turn privilege separation on by default */
|
|
|
|
if (use_privsep == -1)
|
2014-02-01 00:07:16 +00:00
|
|
|
use_privsep = PRIVSEP_ON;
|
2002-06-27 22:31:32 +00:00
|
|
|
|
2002-10-29 09:43:00 +00:00
|
|
|
#ifndef HAVE_MMAP
|
2002-06-27 22:31:32 +00: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
|
|
|
|
|
2012-02-13 11:59:59 +00:00
|
|
|
if (options->hpn_disabled == -1)
|
2011-08-03 19:14:22 +00:00
|
|
|
options->hpn_disabled = 0;
|
|
|
|
if (options->hpn_buffer_size == -1) {
|
|
|
|
/*
|
|
|
|
* HPN buffer size option not explicitly set. Try to figure
|
|
|
|
* out what value to use or resort to default.
|
|
|
|
*/
|
|
|
|
options->hpn_buffer_size = CHAN_SES_WINDOW_DEFAULT;
|
|
|
|
if (!options->hpn_disabled) {
|
|
|
|
sock_get_rcvbuf(&options->hpn_buffer_size, 0);
|
|
|
|
debug ("HPN Buffer Size: %d", options->hpn_buffer_size);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* In the case that the user sets both values in a
|
|
|
|
* contradictory manner hpn_disabled overrrides hpn_buffer_size.
|
|
|
|
*/
|
|
|
|
if (options->hpn_disabled <= 0) {
|
|
|
|
u_int maxlen;
|
|
|
|
|
|
|
|
maxlen = buffer_get_max_len();
|
|
|
|
if (options->hpn_buffer_size == 0)
|
|
|
|
options->hpn_buffer_size = 1;
|
|
|
|
/* Limit the maximum buffer to BUFFER_MAX_LEN. */
|
|
|
|
if (options->hpn_buffer_size > maxlen / 1024)
|
|
|
|
options->hpn_buffer_size = maxlen;
|
|
|
|
else
|
|
|
|
options->hpn_buffer_size *= 1024;
|
2012-09-03 16:51:41 +00:00
|
|
|
} else {
|
2011-08-03 19:14:22 +00:00
|
|
|
options->hpn_buffer_size = CHAN_TCP_WINDOW_DEFAULT;
|
2012-09-03 16:51:41 +00:00
|
|
|
}
|
2011-08-03 19:14:22 +00:00
|
|
|
}
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Keyword tokens. */
|
|
|
|
typedef enum {
|
|
|
|
sBadOption, /* == unknown option */
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Portable-specific options */
|
2004-01-07 11:16:27 +00:00
|
|
|
sUsePAM,
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Standard Options */
|
2000-02-24 14:29:47 +00:00
|
|
|
sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
|
|
|
|
sPermitRootLogin, sLogFacility, sLogLevel,
|
2004-01-07 11:16:27 +00:00
|
|
|
sRhostsRSAAuthentication, sRSAAuthentication,
|
2002-03-18 10:09:43 +00:00
|
|
|
sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
|
2004-02-26 10:52:33 +00:00
|
|
|
sKerberosGetAFSToken,
|
2004-01-07 11:16:27 +00:00
|
|
|
sKerberosTgtPassing, sChallengeResponseAuthentication,
|
2005-06-05 15:46:09 +00:00
|
|
|
sPasswordAuthentication, sKbdInteractiveAuthentication,
|
|
|
|
sListenAddress, sAddressFamily,
|
2001-05-04 04:14:23 +00:00
|
|
|
sPrintMotd, sPrintLastLog, sIgnoreRhosts,
|
2002-03-18 10:09:43 +00:00
|
|
|
sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
|
2014-01-30 10:56:49 +00:00
|
|
|
sPermitTTY, sStrictModes, sEmptyPasswd, sTCPKeepAlive,
|
2002-10-29 10:16:02 +00:00
|
|
|
sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
|
2013-09-18 17:27:38 +00:00
|
|
|
sRekeyLimit, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
|
2001-05-04 04:14:23 +00:00
|
|
|
sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
|
2004-10-28 16:11:31 +00:00
|
|
|
sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
|
2008-07-23 09:33:08 +00:00
|
|
|
sMaxStartups, sMaxAuthTries, sMaxSessions,
|
2004-01-07 11:16:27 +00:00
|
|
|
sBanner, sUseDNS, sHostbasedAuthentication,
|
2002-03-18 10:09:43 +00:00
|
|
|
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
|
2011-09-28 08:14:41 +00:00
|
|
|
sClientAliveCountMax, sAuthorizedKeysFile,
|
2006-03-22 20:41:37 +00:00
|
|
|
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
|
2008-07-23 09:28:49 +00:00
|
|
|
sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
|
2008-07-23 09:33:08 +00:00
|
|
|
sUsePrivilegeSeparation, sAllowAgentForwarding,
|
2014-03-22 15:23:38 +00:00
|
|
|
sHostCertificate,
|
2010-11-08 10:45:44 +00:00
|
|
|
sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
|
2012-08-29 15:55:54 +00:00
|
|
|
sKexAlgorithms, sIPQoS, sVersionAddendum,
|
2013-03-22 11:19:48 +00:00
|
|
|
sAuthorizedKeysCommand, sAuthorizedKeysCommandUser,
|
2013-09-18 17:27:38 +00:00
|
|
|
sAuthenticationMethods, sHostKeyAgent,
|
2011-08-03 19:14:22 +00:00
|
|
|
sHPNDisabled, sHPNBufferSize, sTcpRcvBufPoll,
|
|
|
|
#ifdef NONE_CIPHER_ENABLED
|
|
|
|
sNoneEnabled,
|
|
|
|
#endif
|
2004-01-07 11:16:27 +00:00
|
|
|
sDeprecated, sUnsupported
|
2000-02-24 14:29:47 +00:00
|
|
|
} ServerOpCodes;
|
|
|
|
|
2006-09-30 13:38:06 +00: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)
|
|
|
|
|
2000-02-24 14:29:47 +00:00
|
|
|
/* Textual representation of the tokens. */
|
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
ServerOpCodes opcode;
|
2006-09-30 13:38:06 +00:00
|
|
|
u_int flags;
|
2000-02-24 14:29:47 +00:00
|
|
|
} keywords[] = {
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Portable-specific options */
|
2004-01-07 11:16:27 +00:00
|
|
|
#ifdef USE_PAM
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "usepam", sUsePAM, SSHCFG_GLOBAL },
|
2004-01-07 11:16:27 +00:00
|
|
|
#else
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "usepam", sUnsupported, SSHCFG_GLOBAL },
|
2002-06-29 10:51:56 +00:00
|
|
|
#endif
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Standard Options */
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "port", sPort, SSHCFG_GLOBAL },
|
|
|
|
{ "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
|
|
|
|
{ "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
|
2013-09-18 17:27:38 +00:00
|
|
|
{ "hostkeyagent", sHostKeyAgent, SSHCFG_GLOBAL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "pidfile", sPidFile, SSHCFG_GLOBAL },
|
|
|
|
{ "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
|
|
|
|
{ "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
|
|
|
|
{ "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
|
2008-07-23 09:28:49 +00:00
|
|
|
{ "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
|
|
|
|
{ "loglevel", sLogLevel, SSHCFG_GLOBAL },
|
|
|
|
{ "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
|
|
|
|
{ "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
|
2010-11-08 10:45:44 +00:00
|
|
|
{ "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
|
|
|
|
{ "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
|
2009-10-01 15:19:37 +00:00
|
|
|
{ "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
|
2004-01-07 11:16:27 +00:00
|
|
|
#ifdef KRB5
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
|
2004-02-26 10:52:33 +00:00
|
|
|
#ifdef USE_AFS
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
|
2004-02-26 10:52:33 +00:00
|
|
|
#else
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2004-02-26 10:52:33 +00:00
|
|
|
#endif
|
2004-01-07 11:16:27 +00:00
|
|
|
#else
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "kerberosauthentication", sUnsupported, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2001-03-04 02:22:04 +00:00
|
|
|
#endif
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
|
2004-01-07 11:16:27 +00:00
|
|
|
#ifdef GSSAPI
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
|
2004-01-07 11:16:27 +00:00
|
|
|
#else
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "gssapiauthentication", sUnsupported, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
|
2000-02-24 14:29:47 +00:00
|
|
|
#endif
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
|
|
|
|
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
|
|
|
|
{ "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 },
|
|
|
|
{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
|
|
|
|
{ "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
|
|
|
|
{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
|
|
|
|
{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
|
|
|
|
{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
|
2009-02-24 18:49:27 +00:00
|
|
|
{ "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
|
|
|
|
{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
|
|
|
|
{ "compression", sCompression, SSHCFG_GLOBAL },
|
2013-09-18 17:27:38 +00:00
|
|
|
{ "rekeylimit", sRekeyLimit, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
|
|
|
|
{ "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
|
|
|
|
{ "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
|
2008-07-23 09:33:08 +00:00
|
|
|
{ "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
|
2012-08-29 15:55:54 +00:00
|
|
|
{ "allowusers", sAllowUsers, SSHCFG_ALL },
|
|
|
|
{ "denyusers", sDenyUsers, SSHCFG_ALL },
|
|
|
|
{ "allowgroups", sAllowGroups, SSHCFG_ALL },
|
|
|
|
{ "denygroups", sDenyGroups, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00: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-07-23 09:33:08 +00:00
|
|
|
{ "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
|
|
|
|
{ "maxsessions", sMaxSessions, SSHCFG_ALL },
|
2008-07-23 09:15:38 +00:00
|
|
|
{ "banner", sBanner, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "usedns", sUseDNS, SSHCFG_GLOBAL },
|
|
|
|
{ "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
|
|
|
|
{ "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
|
2010-11-08 10:45:44 +00:00
|
|
|
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
|
2011-09-28 08:14:41 +00:00
|
|
|
{ "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
|
2009-10-01 15:19:37 +00:00
|
|
|
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
|
2012-08-29 15:55:54 +00:00
|
|
|
{ "acceptenv", sAcceptEnv, SSHCFG_ALL },
|
2010-11-08 10:45:44 +00:00
|
|
|
{ "permittunnel", sPermitTunnel, SSHCFG_ALL },
|
2014-01-30 10:56:49 +00:00
|
|
|
{ "permittty", sPermitTTY, SSHCFG_ALL },
|
2009-10-01 15:19:37 +00:00
|
|
|
{ "match", sMatch, SSHCFG_ALL },
|
2006-09-30 13:38:06 +00:00
|
|
|
{ "permitopen", sPermitOpen, SSHCFG_ALL },
|
|
|
|
{ "forcecommand", sForceCommand, SSHCFG_ALL },
|
2008-07-23 09:28:49 +00:00
|
|
|
{ "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
|
2010-03-08 11:19:52 +00:00
|
|
|
{ "hostcertificate", sHostCertificate, SSHCFG_GLOBAL },
|
|
|
|
{ "revokedkeys", sRevokedKeys, SSHCFG_ALL },
|
|
|
|
{ "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
|
2010-11-08 10:45:44 +00:00
|
|
|
{ "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
|
2011-02-17 11:47:40 +00:00
|
|
|
{ "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL },
|
|
|
|
{ "ipqos", sIPQoS, SSHCFG_ALL },
|
2013-03-22 11:19:48 +00:00
|
|
|
{ "authorizedkeyscommand", sAuthorizedKeysCommand, SSHCFG_ALL },
|
|
|
|
{ "authorizedkeyscommanduser", sAuthorizedKeysCommandUser, SSHCFG_ALL },
|
2012-08-29 15:55:54 +00:00
|
|
|
{ "versionaddendum", sVersionAddendum, SSHCFG_GLOBAL },
|
2013-03-22 11:19:48 +00:00
|
|
|
{ "authenticationmethods", sAuthenticationMethods, SSHCFG_ALL },
|
2011-08-03 19:14:22 +00:00
|
|
|
{ "hpndisabled", sHPNDisabled, SSHCFG_ALL },
|
|
|
|
{ "hpnbuffersize", sHPNBufferSize, SSHCFG_ALL },
|
|
|
|
{ "tcprcvbufpoll", sTcpRcvBufPoll, SSHCFG_ALL },
|
|
|
|
#ifdef NONE_CIPHER_ENABLED
|
|
|
|
{ "noneenabled", sNoneEnabled, SSHCFG_ALL },
|
|
|
|
#endif
|
2006-09-30 13:38:06 +00:00
|
|
|
{ NULL, sBadOption, 0 }
|
2000-02-24 14:29:47 +00:00
|
|
|
};
|
|
|
|
|
2008-07-23 09:33:08 +00: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 }
|
|
|
|
};
|
|
|
|
|
2000-02-24 14:29:47 +00:00
|
|
|
/*
|
2001-05-04 04:14:23 +00:00
|
|
|
* Returns the number of the token pointed to by cp or sBadOption.
|
2000-02-24 14:29:47 +00:00
|
|
|
*/
|
|
|
|
|
2000-05-15 05:24:25 +00:00
|
|
|
static ServerOpCodes
|
2000-02-24 14:29:47 +00:00
|
|
|
parse_token(const char *cp, const char *filename,
|
2006-09-30 13:38:06 +00:00
|
|
|
int linenum, u_int *flags)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2001-05-04 04:14:23 +00:00
|
|
|
u_int i;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
|
|
|
for (i = 0; keywords[i].name; i++)
|
2006-09-30 13:38:06 +00:00
|
|
|
if (strcasecmp(cp, keywords[i].name) == 0) {
|
|
|
|
*flags = keywords[i].flags;
|
2000-02-24 14:29:47 +00:00
|
|
|
return keywords[i].opcode;
|
2006-09-30 13:38:06 +00:00
|
|
|
}
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2001-05-04 04:14:23 +00:00
|
|
|
error("%s: line %d: Bad configuration option: %s",
|
|
|
|
filename, linenum, cp);
|
2000-02-24 14:29:47 +00:00
|
|
|
return sBadOption;
|
|
|
|
}
|
|
|
|
|
2010-03-08 11:19:52 +00:00
|
|
|
char *
|
|
|
|
derelativise_path(const char *path)
|
|
|
|
{
|
2010-04-28 08:37:00 +00:00
|
|
|
char *expanded, *ret, cwd[MAXPATHLEN];
|
2010-03-08 11:19:52 +00:00
|
|
|
|
|
|
|
expanded = tilde_expand_filename(path, getuid());
|
|
|
|
if (*expanded == '/')
|
|
|
|
return expanded;
|
2010-04-28 08:37:00 +00:00
|
|
|
if (getcwd(cwd, sizeof(cwd)) == NULL)
|
2010-03-08 11:19:52 +00:00
|
|
|
fatal("%s: getcwd: %s", __func__, strerror(errno));
|
|
|
|
xasprintf(&ret, "%s/%s", cwd, expanded);
|
2013-09-18 17:27:38 +00:00
|
|
|
free(expanded);
|
2010-03-08 11:19:52 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
static void
|
2009-02-24 18:49:27 +00:00
|
|
|
add_listen_addr(ServerOptions *options, char *addr, int port)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2005-09-03 07:04:25 +00:00
|
|
|
u_int i;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
2005-06-05 15:46:09 +00:00
|
|
|
if (options->address_family == -1)
|
|
|
|
options->address_family = AF_UNSPEC;
|
2001-05-04 04:14:23 +00:00
|
|
|
if (port == 0)
|
|
|
|
for (i = 0; i < options->num_ports; i++)
|
|
|
|
add_one_listen_addr(options, addr, options->ports[i]);
|
|
|
|
else
|
|
|
|
add_one_listen_addr(options, addr, port);
|
|
|
|
}
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
static void
|
2009-02-24 18:49:27 +00:00
|
|
|
add_one_listen_addr(ServerOptions *options, char *addr, int port)
|
2001-05-04 04:14:23 +00:00
|
|
|
{
|
|
|
|
struct addrinfo hints, *ai, *aitop;
|
|
|
|
char strport[NI_MAXSERV];
|
|
|
|
int gaierr;
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
2005-06-05 15:46:09 +00:00
|
|
|
hints.ai_family = options->address_family;
|
2001-05-04 04:14:23 +00:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
|
2009-02-24 18:49:27 +00:00
|
|
|
snprintf(strport, sizeof strport, "%d", port);
|
2001-05-04 04:14:23 +00:00
|
|
|
if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
|
|
|
|
fatal("bad addr or host: %s (%s)",
|
|
|
|
addr ? addr : "<NULL>",
|
2008-07-23 09:28:49 +00:00
|
|
|
ssh_gai_strerror(gaierr));
|
2001-05-04 04:14:23 +00:00
|
|
|
for (ai = aitop; ai->ai_next; ai = ai->ai_next)
|
|
|
|
;
|
|
|
|
ai->ai_next = options->listen_addrs;
|
|
|
|
options->listen_addrs = aitop;
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2012-08-29 15:55:54 +00: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-09-30 13:38:06 +00: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
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-23 09:33:08 +00: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-09-30 13:38:06 +00:00
|
|
|
} else {
|
2008-07-23 09:33:08 +00:00
|
|
|
debug("user %.100s matched group list %.100s at line %d", user,
|
|
|
|
grps, line);
|
2006-09-30 13:38:06 +00:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
ga_free();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-08-29 15:55:54 +00:00
|
|
|
/*
|
2013-03-22 11:19:48 +00:00
|
|
|
* All of the attributes on a single Match line are ANDed together, so we need
|
2014-01-30 10:56:49 +00:00
|
|
|
* to check every attribute and set the result to zero if any attribute does
|
2013-03-22 11:19:48 +00:00
|
|
|
* not match.
|
2012-08-29 15:55:54 +00:00
|
|
|
*/
|
2006-09-30 13:38:06 +00:00
|
|
|
static int
|
2012-08-29 15:55:54 +00:00
|
|
|
match_cfg_line(char **condition, int line, struct connection_info *ci)
|
2006-09-30 13:38:06 +00:00
|
|
|
{
|
2014-01-30 10:56:49 +00:00
|
|
|
int result = 1, attributes = 0, port;
|
2006-09-30 13:38:06 +00:00
|
|
|
char *arg, *attrib, *cp = *condition;
|
|
|
|
size_t len;
|
|
|
|
|
2012-08-29 15:55:54 +00:00
|
|
|
if (ci == NULL)
|
2006-09-30 13:38:06 +00:00
|
|
|
debug3("checking syntax for 'Match %s'", cp);
|
|
|
|
else
|
2012-08-29 15:55:54 +00: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-09-30 13:38:06 +00:00
|
|
|
|
|
|
|
while ((attrib = strdelim(&cp)) && *attrib != '\0') {
|
2014-01-30 10:56:49 +00:00
|
|
|
attributes++;
|
|
|
|
if (strcasecmp(attrib, "all") == 0) {
|
|
|
|
if (attributes != 1 ||
|
|
|
|
((arg = strdelim(&cp)) != NULL && *arg != '\0')) {
|
|
|
|
error("'all' cannot be combined with other "
|
|
|
|
"Match attributes");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*condition = cp;
|
|
|
|
return 1;
|
|
|
|
}
|
2006-09-30 13:38:06 +00:00
|
|
|
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-08-29 15:55:54 +00:00
|
|
|
if (ci == NULL || ci->user == NULL) {
|
2006-09-30 13:38:06 +00:00
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2012-08-29 15:55:54 +00:00
|
|
|
if (match_pattern_list(ci->user, arg, len, 0) != 1)
|
2006-09-30 13:38:06 +00:00
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("user %.100s matched 'User %.100s' at "
|
2012-08-29 15:55:54 +00:00
|
|
|
"line %d", ci->user, arg, line);
|
2006-09-30 13:38:06 +00:00
|
|
|
} else if (strcasecmp(attrib, "group") == 0) {
|
2012-08-29 15:55:54 +00:00
|
|
|
if (ci == NULL || ci->user == NULL) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (match_cfg_line_group(arg, line, ci->user)) {
|
2006-09-30 13:38:06 +00:00
|
|
|
case -1:
|
|
|
|
return -1;
|
|
|
|
case 0:
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
} else if (strcasecmp(attrib, "host") == 0) {
|
2012-08-29 15:55:54 +00:00
|
|
|
if (ci == NULL || ci->host == NULL) {
|
2006-09-30 13:38:06 +00:00
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2012-08-29 15:55:54 +00:00
|
|
|
if (match_hostname(ci->host, arg, len) != 1)
|
2006-09-30 13:38:06 +00:00
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("connection from %.100s matched 'Host "
|
2012-08-29 15:55:54 +00:00
|
|
|
"%.100s' at line %d", ci->host, arg, line);
|
2006-09-30 13:38:06 +00:00
|
|
|
} else if (strcasecmp(attrib, "address") == 0) {
|
2012-08-29 15:55:54 +00:00
|
|
|
if (ci == NULL || ci->address == NULL) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (addr_match_list(ci->address, arg)) {
|
2008-07-23 09:33:08 +00:00
|
|
|
case 1:
|
2006-09-30 13:38:06 +00:00
|
|
|
debug("connection from %.100s matched 'Address "
|
2012-08-29 15:55:54 +00:00
|
|
|
"%.100s' at line %d", ci->address, arg, line);
|
2008-07-23 09:33:08 +00:00
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case -1:
|
|
|
|
result = 0;
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-29 15:55:54 +00: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-09-30 13:38:06 +00:00
|
|
|
} else {
|
|
|
|
error("Unsupported Match attribute %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-01-30 10:56:49 +00:00
|
|
|
if (attributes == 0) {
|
|
|
|
error("One or more attributes required for Match");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-29 15:55:54 +00:00
|
|
|
if (ci != NULL)
|
2006-09-30 13:38:06 +00:00
|
|
|
debug3("match %sfound", result ? "" : "not ");
|
|
|
|
*condition = cp;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define WHITESPACE " \t\r\n"
|
|
|
|
|
2011-09-28 08:14:41 +00: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 }
|
|
|
|
};
|
|
|
|
static const struct multistate multistate_privsep[] = {
|
2012-08-29 15:55:54 +00:00
|
|
|
{ "yes", PRIVSEP_NOSANDBOX },
|
|
|
|
{ "sandbox", PRIVSEP_ON },
|
|
|
|
{ "nosandbox", PRIVSEP_NOSANDBOX },
|
2011-09-28 08:14:41 +00:00
|
|
|
{ "no", PRIVSEP_OFF },
|
|
|
|
{ NULL, -1 }
|
|
|
|
};
|
2013-03-22 11:19:48 +00: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-09-28 08:14:41 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
int
|
|
|
|
process_server_config_line(ServerOptions *options, char *line,
|
2012-08-29 15:55:54 +00:00
|
|
|
const char *filename, int linenum, int *activep,
|
|
|
|
struct connection_info *connectinfo)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2001-05-04 04:14:23 +00:00
|
|
|
char *cp, **charptr, *arg, *p;
|
2013-09-18 17:27:38 +00:00
|
|
|
int cmdline = 0, *intptr, value, value2, n, port;
|
2008-07-23 09:28:49 +00:00
|
|
|
SyslogFacility *log_facility_ptr;
|
|
|
|
LogLevel *log_level_ptr;
|
2000-02-24 14:29:47 +00:00
|
|
|
ServerOpCodes opcode;
|
2006-09-30 13:38:06 +00:00
|
|
|
u_int i, flags = 0;
|
|
|
|
size_t len;
|
2013-09-18 17:27:38 +00:00
|
|
|
long long val64;
|
2011-09-28 08:14:41 +00:00
|
|
|
const struct multistate *multistate_ptr;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
cp = line;
|
2006-09-30 13:38:06 +00:00
|
|
|
if ((arg = strdelim(&cp)) == NULL)
|
|
|
|
return 0;
|
2002-03-18 10:09:43 +00:00
|
|
|
/* Ignore leading whitespace */
|
|
|
|
if (*arg == '\0')
|
2000-09-10 09:35:38 +00:00
|
|
|
arg = strdelim(&cp);
|
2002-03-18 10:09:43 +00:00
|
|
|
if (!arg || !*arg || *arg == '#')
|
|
|
|
return 0;
|
|
|
|
intptr = NULL;
|
|
|
|
charptr = NULL;
|
2006-09-30 13:38:06 +00: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-08-29 15:55:54 +00:00
|
|
|
if (connectinfo == NULL) {
|
2006-09-30 13:38:06 +00: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
switch (opcode) {
|
2002-06-27 22:42:11 +00:00
|
|
|
/* Portable-specific options */
|
2004-01-07 11:16:27 +00:00
|
|
|
case sUsePAM:
|
|
|
|
intptr = &options->use_pam;
|
2002-06-27 22:42:11 +00:00
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
/* Standard Options */
|
2002-03-18 10:09:43 +00:00
|
|
|
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 "
|
|
|
|
"ListenAddress.", filename, linenum);
|
|
|
|
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-02-24 18:49:27 +00:00
|
|
|
if (options->ports[options->num_ports-1] <= 0)
|
2002-03-18 10:09:43 +00:00
|
|
|
fatal("%s line %d: Badly formatted port number.",
|
|
|
|
filename, linenum);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sServerKeyBits:
|
|
|
|
intptr = &options->server_key_bits;
|
2008-07-23 09:33:08 +00:00
|
|
|
parse_int:
|
2002-03-18 10:09:43 +00:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing integer value.",
|
|
|
|
filename, linenum);
|
|
|
|
value = atoi(arg);
|
2006-09-30 13:38:06 +00:00
|
|
|
if (*activep && *intptr == -1)
|
2002-03-18 10:09:43 +00:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sLoginGraceTime:
|
|
|
|
intptr = &options->login_grace_time;
|
2008-07-23 09:33:08 +00:00
|
|
|
parse_time:
|
2002-03-18 10:09:43 +00: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-06-05 15:46:09 +00:00
|
|
|
if (arg == NULL || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing address",
|
2002-03-18 10:09:43 +00:00
|
|
|
filename, linenum);
|
2005-09-03 07:04:25 +00: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-06-05 15:46:09 +00:00
|
|
|
p = hpdelim(&arg);
|
|
|
|
if (p == NULL)
|
|
|
|
fatal("%s line %d: bad address:port usage",
|
|
|
|
filename, linenum);
|
|
|
|
p = cleanhostname(p);
|
|
|
|
if (arg == NULL)
|
|
|
|
port = 0;
|
2009-02-24 18:49:27 +00:00
|
|
|
else if ((port = a2port(arg)) <= 0)
|
2005-06-05 15:46:09 +00:00
|
|
|
fatal("%s line %d: bad port number", filename, linenum);
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2005-06-05 15:46:09 +00:00
|
|
|
add_listen_addr(options, p, port);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sAddressFamily:
|
2011-09-28 08:14:41 +00: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-06-05 15:46:09 +00:00
|
|
|
arg = strdelim(&cp);
|
2005-09-03 07:04:25 +00:00
|
|
|
if (!arg || *arg == '\0')
|
2011-09-28 08:14:41 +00:00
|
|
|
fatal("%s line %d: missing argument.",
|
2005-09-03 07:04:25 +00:00
|
|
|
filename, linenum);
|
2011-09-28 08:14:41 +00: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-06-05 15:46:09 +00:00
|
|
|
filename, linenum, arg);
|
2011-09-28 08:14:41 +00:00
|
|
|
if (*activep && *intptr == -1)
|
2005-06-05 15:46:09 +00:00
|
|
|
*intptr = value;
|
2002-03-18 10:09:43 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
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-07-23 09:33:08 +00:00
|
|
|
parse_filename:
|
2002-03-18 10:09:43 +00:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
2006-09-30 13:38:06 +00:00
|
|
|
if (*activep && *charptr == NULL) {
|
2010-03-08 11:19:52 +00:00
|
|
|
*charptr = derelativise_path(arg);
|
2002-03-18 10:09:43 +00:00
|
|
|
/* increase optional counter */
|
|
|
|
if (intptr != NULL)
|
|
|
|
*intptr = *intptr + 1;
|
|
|
|
}
|
|
|
|
break;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2013-09-18 17:27:38 +00:00
|
|
|
case sHostKeyAgent:
|
|
|
|
charptr = &options->host_key_agent;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing socket name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *charptr == NULL)
|
|
|
|
*charptr = !strcmp(arg, SSH_AUTHSOCKET_ENV_NAME) ?
|
|
|
|
xstrdup(arg) : derelativise_path(arg);
|
|
|
|
break;
|
|
|
|
|
2010-03-08 11:19:52 +00: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;
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sPidFile:
|
|
|
|
charptr = &options->pid_file;
|
|
|
|
goto parse_filename;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sPermitRootLogin:
|
|
|
|
intptr = &options->permit_root_login;
|
2011-09-28 08:14:41 +00:00
|
|
|
multistate_ptr = multistate_permitrootlogin;
|
|
|
|
goto parse_multistate;
|
2002-03-18 10:09:43 +00:00
|
|
|
|
|
|
|
case sIgnoreRhosts:
|
|
|
|
intptr = &options->ignore_rhosts;
|
2008-07-23 09:33:08 +00:00
|
|
|
parse_flag:
|
2002-03-18 10:09:43 +00: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-09-30 13:38:06 +00:00
|
|
|
if (*activep && *intptr == -1)
|
2002-03-18 10:09:43 +00: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;
|
2004-01-07 11:16:27 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sKerberosAuthentication:
|
|
|
|
intptr = &options->kerberos_authentication;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sKerberosOrLocalPasswd:
|
|
|
|
intptr = &options->kerberos_or_local_passwd;
|
|
|
|
goto parse_flag;
|
2000-05-15 05:24:25 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sKerberosTicketCleanup:
|
|
|
|
intptr = &options->kerberos_ticket_cleanup;
|
|
|
|
goto parse_flag;
|
2004-01-07 11:16:27 +00:00
|
|
|
|
2004-02-26 10:52:33 +00:00
|
|
|
case sKerberosGetAFSToken:
|
|
|
|
intptr = &options->kerberos_get_afs_token;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2004-01-07 11:16:27 +00:00
|
|
|
case sGssAuthentication:
|
|
|
|
intptr = &options->gss_authentication;
|
2002-03-18 10:09:43 +00:00
|
|
|
goto parse_flag;
|
2004-01-07 11:16:27 +00:00
|
|
|
|
|
|
|
case sGssCleanupCreds:
|
|
|
|
intptr = &options->gss_cleanup_creds;
|
2002-03-18 10:09:43 +00:00
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sPasswordAuthentication:
|
|
|
|
intptr = &options->password_authentication;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sKbdInteractiveAuthentication:
|
|
|
|
intptr = &options->kbd_interactive_authentication;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sChallengeResponseAuthentication:
|
|
|
|
intptr = &options->challenge_response_authentication;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sPrintMotd:
|
|
|
|
intptr = &options->print_motd;
|
|
|
|
goto parse_flag;
|
2001-05-04 04:14:23 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sPrintLastLog:
|
|
|
|
intptr = &options->print_lastlog;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sX11Forwarding:
|
|
|
|
intptr = &options->x11_forwarding;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sX11DisplayOffset:
|
|
|
|
intptr = &options->x11_display_offset;
|
|
|
|
goto parse_int;
|
2001-05-04 04:14:23 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sX11UseLocalhost:
|
|
|
|
intptr = &options->x11_use_localhost;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sXAuthLocation:
|
|
|
|
charptr = &options->xauth_location;
|
|
|
|
goto parse_filename;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2014-01-30 10:56:49 +00:00
|
|
|
case sPermitTTY:
|
|
|
|
intptr = &options->permit_tty;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sStrictModes:
|
|
|
|
intptr = &options->strict_modes;
|
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2004-02-26 10:52:33 +00:00
|
|
|
case sTCPKeepAlive:
|
|
|
|
intptr = &options->tcp_keep_alive;
|
2002-03-18 10:09:43 +00:00
|
|
|
goto parse_flag;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sEmptyPasswd:
|
|
|
|
intptr = &options->permit_empty_passwd;
|
|
|
|
goto parse_flag;
|
2000-05-15 05:24:25 +00:00
|
|
|
|
2002-10-29 10:16:02 +00:00
|
|
|
case sPermitUserEnvironment:
|
|
|
|
intptr = &options->permit_user_env;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sUseLogin:
|
|
|
|
intptr = &options->use_login;
|
|
|
|
goto parse_flag;
|
2001-05-04 04:14:23 +00:00
|
|
|
|
2002-06-23 16:09:08 +00:00
|
|
|
case sCompression:
|
|
|
|
intptr = &options->compression;
|
2011-09-28 08:14:41 +00:00
|
|
|
multistate_ptr = multistate_compression;
|
|
|
|
goto parse_multistate;
|
2002-06-23 16:09:08 +00:00
|
|
|
|
2013-09-18 17:27:38 +00: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 {
|
|
|
|
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)
|
|
|
|
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;
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sGatewayPorts:
|
|
|
|
intptr = &options->gateway_ports;
|
2011-09-28 08:14:41 +00:00
|
|
|
multistate_ptr = multistate_gatewayports;
|
|
|
|
goto parse_multistate;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2004-01-07 11:16:27 +00:00
|
|
|
case sUseDNS:
|
|
|
|
intptr = &options->use_dns;
|
2002-03-18 10:09:43 +00:00
|
|
|
goto parse_flag;
|
2000-12-05 02:55:12 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sLogFacility:
|
2008-07-23 09:28:49 +00:00
|
|
|
log_facility_ptr = &options->log_facility;
|
2002-03-18 10:09:43 +00:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_facility_number(arg);
|
|
|
|
if (value == SYSLOG_FACILITY_NOT_SET)
|
|
|
|
fatal("%.200s line %d: unsupported log facility '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2008-07-23 09:28:49 +00:00
|
|
|
if (*log_facility_ptr == -1)
|
|
|
|
*log_facility_ptr = (SyslogFacility) value;
|
2002-03-18 10:09:43 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case sLogLevel:
|
2008-07-23 09:28:49 +00:00
|
|
|
log_level_ptr = &options->log_level;
|
2002-03-18 10:09:43 +00:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_level_number(arg);
|
|
|
|
if (value == SYSLOG_LEVEL_NOT_SET)
|
|
|
|
fatal("%.200s line %d: unsupported log level '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2008-07-23 09:28:49 +00:00
|
|
|
if (*log_level_ptr == -1)
|
|
|
|
*log_level_ptr = (LogLevel) value;
|
2002-03-18 10:09:43 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case sAllowTcpForwarding:
|
|
|
|
intptr = &options->allow_tcp_forwarding;
|
2013-03-22 11:19:48 +00:00
|
|
|
multistate_ptr = multistate_tcpfwd;
|
|
|
|
goto parse_multistate;
|
2002-03-18 10:09:43 +00:00
|
|
|
|
2008-07-23 09:33:08 +00:00
|
|
|
case sAllowAgentForwarding:
|
|
|
|
intptr = &options->allow_agent_forwarding;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2002-06-23 16:09:08 +00:00
|
|
|
case sUsePrivilegeSeparation:
|
|
|
|
intptr = &use_privsep;
|
2011-09-28 08:14:41 +00:00
|
|
|
multistate_ptr = multistate_privsep;
|
|
|
|
goto parse_multistate;
|
2002-06-23 16:09:08 +00:00
|
|
|
|
2002-03-18 10:09:43 +00: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-08-29 15:55:54 +00:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-29 11:48:59 +00:00
|
|
|
options->allow_users[options->num_allow_users++] =
|
|
|
|
xstrdup(arg);
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sDenyUsers:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_deny_users >= MAX_DENY_USERS)
|
2006-09-30 13:38:06 +00:00
|
|
|
fatal("%s line %d: too many deny users.",
|
2002-03-18 10:09:43 +00:00
|
|
|
filename, linenum);
|
2012-08-29 15:55:54 +00:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-29 11:48:59 +00:00
|
|
|
options->deny_users[options->num_deny_users++] =
|
|
|
|
xstrdup(arg);
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2002-03-18 10:09:43 +00: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-08-29 15:55:54 +00:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
2002-06-29 11:48:59 +00:00
|
|
|
options->allow_groups[options->num_allow_groups++] =
|
|
|
|
xstrdup(arg);
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-05-15 05:24:25 +00:00
|
|
|
|
2002-03-18 10:09:43 +00: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-08-29 15:55:54 +00:00
|
|
|
if (!*activep)
|
|
|
|
continue;
|
|
|
|
options->deny_groups[options->num_deny_groups++] =
|
|
|
|
xstrdup(arg);
|
2002-03-18 10:09:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-05-04 04:14:23 +00:00
|
|
|
|
2002-03-18 10:09:43 +00: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;
|
|
|
|
|
2011-02-17 11:47:40 +00: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;
|
|
|
|
|
2002-03-18 10:09:43 +00: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'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (*intptr == SSH_PROTO_UNKNOWN)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sSubsystem:
|
|
|
|
if (options->num_subsystems >= MAX_SUBSYSTEMS) {
|
|
|
|
fatal("%s line %d: too many subsystems defined.",
|
|
|
|
filename, linenum);
|
|
|
|
}
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem name.",
|
|
|
|
filename, linenum);
|
2006-09-30 13:38:06 +00:00
|
|
|
if (!*activep) {
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
}
|
2002-03-18 10:09:43 +00: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.",
|
|
|
|
filename, linenum, arg);
|
|
|
|
options->subsystem_name[options->num_subsystems] = xstrdup(arg);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem command.",
|
|
|
|
filename, linenum);
|
|
|
|
options->subsystem_command[options->num_subsystems] = xstrdup(arg);
|
2006-09-30 13:38:06 +00: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;
|
2002-03-18 10:09:43 +00:00
|
|
|
options->num_subsystems++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sMaxStartups:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing MaxStartups spec.",
|
|
|
|
filename, linenum);
|
|
|
|
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)
|
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
|
|
|
filename, linenum);
|
|
|
|
} else if (n != 1)
|
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
|
|
|
filename, linenum);
|
|
|
|
else
|
|
|
|
options->max_startups = options->max_startups_begin;
|
|
|
|
break;
|
|
|
|
|
2004-10-28 16:11:31 +00:00
|
|
|
case sMaxAuthTries:
|
|
|
|
intptr = &options->max_authtries;
|
|
|
|
goto parse_int;
|
|
|
|
|
2008-07-23 09:33:08 +00:00
|
|
|
case sMaxSessions:
|
|
|
|
intptr = &options->max_sessions;
|
|
|
|
goto parse_int;
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sBanner:
|
|
|
|
charptr = &options->banner;
|
|
|
|
goto parse_filename;
|
2008-07-23 09:28:49 +00:00
|
|
|
|
2002-03-18 10:09:43 +00: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-09-28 08:14:41 +00: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-11-08 10:45:44 +00:00
|
|
|
case sAuthorizedPrincipalsFile:
|
|
|
|
charptr = &options->authorized_principals_file;
|
2010-04-28 08:37:00 +00:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *charptr == NULL) {
|
|
|
|
*charptr = tilde_expand_filename(arg, getuid());
|
|
|
|
/* increase optional counter */
|
|
|
|
if (intptr != NULL)
|
|
|
|
*intptr = *intptr + 1;
|
|
|
|
}
|
|
|
|
break;
|
2002-03-18 10:09:43 +00:00
|
|
|
|
|
|
|
case sClientAliveInterval:
|
|
|
|
intptr = &options->client_alive_interval;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case sClientAliveCountMax:
|
|
|
|
intptr = &options->client_alive_count_max;
|
|
|
|
goto parse_int;
|
|
|
|
|
2004-10-28 16:11:31 +00: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-09-30 13:38:06 +00:00
|
|
|
if (!*activep)
|
2012-08-29 15:55:54 +00:00
|
|
|
continue;
|
2004-10-28 16:11:31 +00:00
|
|
|
options->accept_env[options->num_accept_env++] =
|
|
|
|
xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-03-22 20:41:37 +00:00
|
|
|
case sPermitTunnel:
|
|
|
|
intptr = &options->permit_tun;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing yes/point-to-point/"
|
|
|
|
"ethernet/no argument.", filename, linenum);
|
2008-07-23 09:33:08 +00: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)
|
2006-03-22 20:41:37 +00:00
|
|
|
fatal("%s line %d: Bad yes/point-to-point/ethernet/"
|
|
|
|
"no argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
2006-09-30 13:38:06 +00:00
|
|
|
case sMatch:
|
|
|
|
if (cmdline)
|
|
|
|
fatal("Match directive not supported as a command-line "
|
|
|
|
"option");
|
2012-08-29 15:55:54 +00:00
|
|
|
value = match_cfg_line(&cp, linenum, connectinfo);
|
2006-09-30 13:38:06 +00:00
|
|
|
if (value < 0)
|
|
|
|
fatal("%s line %d: Bad Match condition", filename,
|
|
|
|
linenum);
|
|
|
|
*activep = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sPermitOpen:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing PermitOpen specification",
|
|
|
|
filename, linenum);
|
2008-07-23 09:15:38 +00:00
|
|
|
n = options->num_permitted_opens; /* modified later */
|
2006-09-30 13:38:06 +00:00
|
|
|
if (strcmp(arg, "any") == 0) {
|
2008-07-23 09:15:38 +00:00
|
|
|
if (*activep && n == -1) {
|
2006-09-30 13:38:06 +00:00
|
|
|
channel_clear_adm_permitted_opens();
|
|
|
|
options->num_permitted_opens = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-08-29 15:55:54 +00:00
|
|
|
if (strcmp(arg, "none") == 0) {
|
|
|
|
if (*activep && n == -1) {
|
|
|
|
options->num_permitted_opens = 1;
|
|
|
|
channel_disable_adm_local_opens();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-07-23 09:15:38 +00:00
|
|
|
if (*activep && n == -1)
|
|
|
|
channel_clear_adm_permitted_opens();
|
2006-09-30 13:38:06 +00: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);
|
2012-08-29 15:46:01 +00:00
|
|
|
if (arg == NULL || ((port = permitopen_port(arg)) < 0))
|
2006-09-30 13:38:06 +00:00
|
|
|
fatal("%s line %d: bad port number in "
|
|
|
|
"PermitOpen", filename, linenum);
|
2008-07-23 09:15:38 +00:00
|
|
|
if (*activep && n == -1)
|
2006-09-30 13:38:06 +00:00
|
|
|
options->num_permitted_opens =
|
|
|
|
channel_add_adm_permitted_opens(p, port);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
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-07-23 09:28:49 +00:00
|
|
|
case sChrootDirectory:
|
|
|
|
charptr = &options->chroot_directory;
|
|
|
|
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*activep && *charptr == NULL)
|
|
|
|
*charptr = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
2010-03-08 11:19:52 +00:00
|
|
|
case sTrustedUserCAKeys:
|
|
|
|
charptr = &options->trusted_user_ca_keys;
|
|
|
|
goto parse_filename;
|
|
|
|
|
|
|
|
case sRevokedKeys:
|
|
|
|
charptr = &options->revoked_keys_file;
|
|
|
|
goto parse_filename;
|
|
|
|
|
2011-02-17 11:47:40 +00: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;
|
|
|
|
|
2002-06-29 10:49:57 +00:00
|
|
|
case sVersionAddendum:
|
2012-08-29 15:55:54 +00:00
|
|
|
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;
|
2002-06-29 10:49:57 +00:00
|
|
|
|
2013-03-22 11:19:48 +00: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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2011-08-03 19:14:22 +00:00
|
|
|
case sHPNDisabled:
|
|
|
|
intptr = &options->hpn_disabled;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sHPNBufferSize:
|
|
|
|
intptr = &options->hpn_buffer_size;
|
|
|
|
goto parse_int;
|
|
|
|
|
|
|
|
case sTcpRcvBufPoll:
|
|
|
|
intptr = &options->tcp_rcv_buf_poll;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
#ifdef NONE_CIPHER_ENABLED
|
|
|
|
case sNoneEnabled:
|
|
|
|
intptr = &options->none_enabled;
|
|
|
|
goto parse_flag;
|
|
|
|
#endif
|
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
case sDeprecated:
|
2004-01-07 11:16:27 +00:00
|
|
|
logit("%s line %d: Deprecated option %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sUnsupported:
|
|
|
|
logit("%s line %d: Unsupported option %s",
|
2002-03-18 10:09:43 +00:00
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
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-02-24 15:29:42 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
/* Reads the server configuration file. */
|
2000-09-10 09:35:38 +00:00
|
|
|
|
2002-03-18 10:09:43 +00:00
|
|
|
void
|
2004-10-28 16:11:31 +00:00
|
|
|
load_server_config(const char *filename, Buffer *conf)
|
2002-03-18 10:09:43 +00:00
|
|
|
{
|
2012-08-29 15:55:54 +00:00
|
|
|
char line[4096], *cp;
|
2002-06-29 11:48:59 +00:00
|
|
|
FILE *f;
|
2012-08-29 15:55:54 +00:00
|
|
|
int lineno = 0;
|
2001-05-03 00:29:28 +00:00
|
|
|
|
2004-10-28 16:11:31 +00:00
|
|
|
debug2("%s: filename %s", __func__, filename);
|
|
|
|
if ((f = fopen(filename, "r")) == NULL) {
|
2002-03-18 10:09:43 +00:00
|
|
|
perror(filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-10-28 16:11:31 +00:00
|
|
|
buffer_clear(conf);
|
2002-03-18 10:09:43 +00:00
|
|
|
while (fgets(line, sizeof(line), f)) {
|
2012-08-29 15:55:54 +00:00
|
|
|
lineno++;
|
|
|
|
if (strlen(line) == sizeof(line) - 1)
|
|
|
|
fatal("%s line %d too long", filename, lineno);
|
2004-10-28 16:11:31 +00:00
|
|
|
/*
|
|
|
|
* Trim out comments and strip whitespace
|
|
|
|
* NB - preserve newlines, they are needed to reproduce
|
|
|
|
* 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));
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
2004-10-28 16:11:31 +00:00
|
|
|
buffer_append(conf, "\0", 1);
|
2000-02-24 14:29:47 +00:00
|
|
|
fclose(f);
|
2004-10-28 16:11:31 +00:00
|
|
|
debug2("%s: done config len = %d", __func__, buffer_len(conf));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-29 15:55:54 +00:00
|
|
|
parse_server_match_config(ServerOptions *options,
|
|
|
|
struct connection_info *connectinfo)
|
2006-09-30 13:38:06 +00:00
|
|
|
{
|
|
|
|
ServerOptions mo;
|
|
|
|
|
|
|
|
initialize_server_options(&mo);
|
2012-08-29 15:55:54 +00:00
|
|
|
parse_server_config(&mo, "reprocess config", &cfg, connectinfo);
|
2008-07-23 09:15:38 +00:00
|
|
|
copy_set_server_options(options, &mo, 0);
|
2006-09-30 13:38:06 +00:00
|
|
|
}
|
|
|
|
|
2012-08-29 15:55:54 +00: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 */
|
|
|
|
}
|
|
|
|
|
2008-07-23 09:15:38 +00:00
|
|
|
/*
|
|
|
|
* Copy any supported values that are set.
|
|
|
|
*
|
2009-10-01 15:19:37 +00:00
|
|
|
* If the preauth flag is set, we do not bother copying the string or
|
2008-07-23 09:15:38 +00:00
|
|
|
* array values that are not used pre-authentication, because any that we
|
|
|
|
* do use must be explictly sent in mm_getpwnamallow().
|
|
|
|
*/
|
2006-09-30 13:38:06 +00:00
|
|
|
void
|
2008-07-23 09:15:38 +00:00
|
|
|
copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
|
2006-09-30 13:38:06 +00:00
|
|
|
{
|
2014-01-30 10:56:49 +00:00
|
|
|
#define M_CP_INTOPT(n) do {\
|
|
|
|
if (src->n != -1) \
|
|
|
|
dst->n = src->n; \
|
|
|
|
} while (0)
|
|
|
|
|
2008-07-23 09:15:38 +00: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-11-08 10:45:44 +00:00
|
|
|
M_CP_INTOPT(hostbased_uses_name_from_packet_only);
|
2008-07-23 09:15:38 +00:00
|
|
|
M_CP_INTOPT(kbd_interactive_authentication);
|
2008-07-23 09:28:49 +00:00
|
|
|
M_CP_INTOPT(permit_root_login);
|
2009-02-24 18:49:27 +00:00
|
|
|
M_CP_INTOPT(permit_empty_passwd);
|
2008-07-23 09:15:38 +00:00
|
|
|
|
|
|
|
M_CP_INTOPT(allow_tcp_forwarding);
|
2008-07-23 09:33:08 +00:00
|
|
|
M_CP_INTOPT(allow_agent_forwarding);
|
2010-11-08 10:45:44 +00:00
|
|
|
M_CP_INTOPT(permit_tun);
|
2008-07-23 09:15:38 +00:00
|
|
|
M_CP_INTOPT(gateway_ports);
|
|
|
|
M_CP_INTOPT(x11_display_offset);
|
|
|
|
M_CP_INTOPT(x11_forwarding);
|
|
|
|
M_CP_INTOPT(x11_use_localhost);
|
2014-01-30 10:56:49 +00:00
|
|
|
M_CP_INTOPT(permit_tty);
|
2008-07-23 09:33:08 +00:00
|
|
|
M_CP_INTOPT(max_sessions);
|
|
|
|
M_CP_INTOPT(max_authtries);
|
2011-02-17 11:47:40 +00:00
|
|
|
M_CP_INTOPT(ip_qos_interactive);
|
|
|
|
M_CP_INTOPT(ip_qos_bulk);
|
2013-09-18 17:27:38 +00:00
|
|
|
M_CP_INTOPT(rekey_limit);
|
|
|
|
M_CP_INTOPT(rekey_interval);
|
2008-07-23 09:15:38 +00:00
|
|
|
|
2014-01-30 10:56:49 +00:00
|
|
|
/* M_CP_STROPT and M_CP_STRARRAYOPT should not appear before here */
|
|
|
|
#define M_CP_STROPT(n) do {\
|
|
|
|
if (src->n != NULL && dst->n != src->n) { \
|
|
|
|
free(dst->n); \
|
|
|
|
dst->n = src->n; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#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)
|
|
|
|
|
2011-09-28 08:14:41 +00:00
|
|
|
/* See comment in servconf.h */
|
|
|
|
COPY_MATCH_STRING_OPTS();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The only things that should be below this point are string options
|
|
|
|
* which are only used after authentication.
|
|
|
|
*/
|
2008-07-23 09:15:38 +00:00
|
|
|
if (preauth)
|
|
|
|
return;
|
2011-09-28 08:14:41 +00:00
|
|
|
|
2008-07-23 09:15:38 +00:00
|
|
|
M_CP_STROPT(adm_forced_command);
|
2008-07-23 09:28:49 +00:00
|
|
|
M_CP_STROPT(chroot_directory);
|
2006-09-30 13:38:06 +00:00
|
|
|
}
|
|
|
|
|
2008-07-23 09:15:38 +00:00
|
|
|
#undef M_CP_INTOPT
|
|
|
|
#undef M_CP_STROPT
|
2011-09-28 08:14:41 +00:00
|
|
|
#undef M_CP_STRARRAYOPT
|
2008-07-23 09:15:38 +00:00
|
|
|
|
2006-09-30 13:38:06 +00:00
|
|
|
void
|
|
|
|
parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
|
2012-08-29 15:55:54 +00:00
|
|
|
struct connection_info *connectinfo)
|
2004-10-28 16:11:31 +00:00
|
|
|
{
|
2006-09-30 13:38:06 +00:00
|
|
|
int active, linenum, bad_options = 0;
|
2004-10-28 16:11:31 +00:00
|
|
|
char *cp, *obuf, *cbuf;
|
|
|
|
|
|
|
|
debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
|
|
|
|
|
|
|
|
obuf = cbuf = xstrdup(buffer_ptr(conf));
|
2012-08-29 15:55:54 +00:00
|
|
|
active = connectinfo ? 0 : 1;
|
2004-10-28 16:11:31 +00:00
|
|
|
linenum = 1;
|
2005-06-05 15:46:09 +00:00
|
|
|
while ((cp = strsep(&cbuf, "\n")) != NULL) {
|
2004-10-28 16:11:31 +00:00
|
|
|
if (process_server_config_line(options, cp, filename,
|
2012-08-29 15:55:54 +00:00
|
|
|
linenum++, &active, connectinfo) != 0)
|
2004-10-28 16:11:31 +00:00
|
|
|
bad_options++;
|
|
|
|
}
|
2013-09-18 17:27:38 +00:00
|
|
|
free(obuf);
|
2001-05-04 04:14:23 +00:00
|
|
|
if (bad_options > 0)
|
2002-03-18 10:09:43 +00:00
|
|
|
fatal("%s: terminating, %d bad configuration options",
|
2001-05-04 04:14:23 +00:00
|
|
|
filename, bad_options);
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
2008-07-23 09:33:08 +00:00
|
|
|
|
|
|
|
static const char *
|
2011-09-28 08:14:41 +00:00
|
|
|
fmt_multistate_int(int val, const struct multistate *m)
|
2008-07-23 09:33:08 +00:00
|
|
|
{
|
2011-09-28 08:14:41 +00:00
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; m[i].key != NULL; i++) {
|
|
|
|
if (m[i].value == val)
|
|
|
|
return m[i].key;
|
2008-07-23 09:33:08 +00:00
|
|
|
}
|
2011-09-28 08:14:41 +00: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);
|
|
|
|
case sUsePrivilegeSeparation:
|
|
|
|
return fmt_multistate_int(val, multistate_privsep);
|
2013-03-22 11:19:48 +00:00
|
|
|
case sAllowTcpForwarding:
|
|
|
|
return fmt_multistate_int(val, multistate_tcpfwd);
|
2011-09-28 08:14:41 +00:00
|
|
|
case sProtocol:
|
2008-07-23 09:33:08 +00: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-09-28 08:14:41 +00:00
|
|
|
default:
|
|
|
|
switch (val) {
|
|
|
|
case 0:
|
|
|
|
return "no";
|
|
|
|
case 1:
|
|
|
|
return "yes";
|
|
|
|
default:
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
2008-07-23 09:33:08 +00: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-09-28 08:14:41 +00: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-07-23 09:33:08 +00: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 */
|
2009-02-24 18:49:27 +00:00
|
|
|
#ifdef USE_PAM
|
|
|
|
dump_cfg_int(sUsePAM, o->use_pam);
|
|
|
|
#endif
|
2008-07-23 09:33:08 +00: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);
|
2009-02-24 18:49:27 +00:00
|
|
|
dump_cfg_int(sMaxSessions, o->max_sessions);
|
2008-07-23 09:33:08 +00: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);
|
2009-02-24 18:49:27 +00:00
|
|
|
#ifdef KRB5
|
2008-07-23 09:33:08 +00: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);
|
2009-02-24 18:49:27 +00:00
|
|
|
# ifdef USE_AFS
|
2008-07-23 09:33:08 +00:00
|
|
|
dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
|
2009-02-24 18:49:27 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef GSSAPI
|
2008-07-23 09:33:08 +00:00
|
|
|
dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
|
|
|
|
dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
|
2009-02-24 18:49:27 +00:00
|
|
|
#endif
|
2008-07-23 09:33:08 +00: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);
|
2014-01-30 10:56:49 +00:00
|
|
|
dump_cfg_fmtint(sPermitTTY, o->permit_tty);
|
2008-07-23 09:33:08 +00:00
|
|
|
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);
|
2014-01-30 10:56:49 +00:00
|
|
|
dump_cfg_string(sCiphers, o->ciphers ? o->ciphers :
|
|
|
|
cipher_alg_list(',', 0));
|
|
|
|
dump_cfg_string(sMacs, o->macs ? o->macs : mac_alg_list(','));
|
2008-07-23 09:33:08 +00:00
|
|
|
dump_cfg_string(sBanner, o->banner);
|
|
|
|
dump_cfg_string(sForceCommand, o->adm_forced_command);
|
2010-03-08 11:19:52 +00:00
|
|
|
dump_cfg_string(sChrootDirectory, o->chroot_directory);
|
|
|
|
dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
|
|
|
|
dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
|
2010-11-08 10:45:44 +00:00
|
|
|
dump_cfg_string(sAuthorizedPrincipalsFile,
|
|
|
|
o->authorized_principals_file);
|
2012-08-29 15:55:54 +00:00
|
|
|
dump_cfg_string(sVersionAddendum, o->version_addendum);
|
2013-03-22 11:19:48 +00:00
|
|
|
dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
|
|
|
|
dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
|
2013-09-18 17:27:38 +00:00
|
|
|
dump_cfg_string(sHostKeyAgent, o->host_key_agent);
|
2014-01-30 10:56:49 +00:00
|
|
|
dump_cfg_string(sKexAlgorithms, o->kex_algorithms ? o->kex_algorithms :
|
|
|
|
kex_alg_list(','));
|
2008-07-23 09:33:08 +00: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-09-28 08:14:41 +00:00
|
|
|
dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
|
|
|
|
o->authorized_keys_files);
|
2008-07-23 09:33:08 +00:00
|
|
|
dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
|
|
|
|
o->host_key_files);
|
2010-03-08 11:19:52 +00:00
|
|
|
dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
|
|
|
|
o->host_cert_files);
|
2008-07-23 09:33:08 +00: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);
|
2013-03-22 11:19:48 +00:00
|
|
|
dump_cfg_strarray_oneline(sAuthenticationMethods,
|
|
|
|
o->num_auth_methods, o->auth_methods);
|
2008-07-23 09:33:08 +00: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-09-28 08:14:41 +00:00
|
|
|
printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
|
|
|
|
printf("%s\n", iptos2str(o->ip_qos_bulk));
|
2011-02-17 11:47:40 +00:00
|
|
|
|
2013-09-21 21:36:09 +00:00
|
|
|
printf("rekeylimit %lld %d\n", (long long)o->rekey_limit,
|
|
|
|
o->rekey_interval);
|
2013-09-18 17:27:38 +00:00
|
|
|
|
2008-07-23 09:33:08 +00:00
|
|
|
channel_print_adm_permitted_opens();
|
|
|
|
}
|