2006-08-05 05:38:40 +04:00
|
|
|
/* $OpenBSD: servconf.c,v 1.163 2006/08/01 23:36:12 stevesk Exp $ */
|
1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-07-10 15:08:03 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2006-07-24 08:51:00 +04:00
|
|
|
#include <netdb.h>
|
2006-08-05 05:37:59 +04:00
|
|
|
#include <stdio.h>
|
2006-08-05 05:34:19 +04:00
|
|
|
#include <stdlib.h>
|
2006-07-24 08:13:33 +04:00
|
|
|
#include <string.h>
|
2006-07-24 08:01:23 +04:00
|
|
|
#include <unistd.h>
|
2006-07-24 07:51:51 +04:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "ssh.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "log.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
#include "servconf.h"
|
|
|
|
#include "xmalloc.h"
|
2000-04-12 14:17:38 +04:00
|
|
|
#include "compat.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "pathnames.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "cipher.h"
|
2001-02-15 06:01:59 +03:00
|
|
|
#include "kex.h"
|
|
|
|
#include "mac.h"
|
2006-07-12 16:34:17 +04:00
|
|
|
#include "match.h"
|
2006-07-24 08:04:00 +04:00
|
|
|
#include "channels.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static void add_listen_addr(ServerOptions *, char *, u_short);
|
|
|
|
static void add_one_listen_addr(ServerOptions *, char *, u_short);
|
2000-01-14 07:45:46 +03:00
|
|
|
|
2002-03-22 05:30:41 +03:00
|
|
|
/* Use of privilege separation or not */
|
|
|
|
extern int use_privsep;
|
2006-07-12 16:34:17 +04:00
|
|
|
extern Buffer cfg;
|
2001-01-22 08:34:40 +03:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Initializes the server options to their default values. */
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
initialize_server_options(ServerOptions *options)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
memset(options, 0, sizeof(*options));
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
options->use_pam = -1;
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Standard Options */
|
2000-01-14 07:45:46 +03:00
|
|
|
options->num_ports = 0;
|
|
|
|
options->ports_from_cmdline = 0;
|
|
|
|
options->listen_addrs = NULL;
|
2005-01-20 02:57:56 +03:00
|
|
|
options->address_family = -1;
|
2000-11-13 14:57:25 +03:00
|
|
|
options->num_host_key_files = 0;
|
2000-05-02 03:23:45 +04:00
|
|
|
options->pid_file = NULL;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->server_key_bits = -1;
|
|
|
|
options->login_grace_time = -1;
|
|
|
|
options->key_regeneration_time = -1;
|
2001-02-15 06:08:27 +03:00
|
|
|
options->permit_root_login = PERMIT_NOT_SET;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->ignore_rhosts = -1;
|
|
|
|
options->ignore_user_known_hosts = -1;
|
|
|
|
options->print_motd = -1;
|
2001-03-26 09:45:53 +04:00
|
|
|
options->print_lastlog = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->x11_forwarding = -1;
|
|
|
|
options->x11_display_offset = -1;
|
2002-02-05 04:11:34 +03:00
|
|
|
options->x11_use_localhost = -1;
|
2000-06-07 13:55:44 +04:00
|
|
|
options->xauth_location = NULL;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->strict_modes = -1;
|
2003-12-17 08:31:10 +03:00
|
|
|
options->tcp_keep_alive = -1;
|
2002-02-05 04:26:34 +03:00
|
|
|
options->log_facility = SYSLOG_FACILITY_NOT_SET;
|
|
|
|
options->log_level = SYSLOG_LEVEL_NOT_SET;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->rhosts_rsa_authentication = -1;
|
2001-04-13 03:34:34 +04:00
|
|
|
options->hostbased_authentication = -1;
|
|
|
|
options->hostbased_uses_name_from_packet_only = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->rsa_authentication = -1;
|
2000-11-13 14:57:25 +03:00
|
|
|
options->pubkey_authentication = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->kerberos_authentication = -1;
|
|
|
|
options->kerberos_or_local_passwd = -1;
|
|
|
|
options->kerberos_ticket_cleanup = -1;
|
2003-12-31 03:37:34 +03:00
|
|
|
options->kerberos_get_afs_token = -1;
|
2003-08-26 05:49:55 +04:00
|
|
|
options->gss_authentication=-1;
|
|
|
|
options->gss_cleanup_creds = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->password_authentication = -1;
|
2000-10-14 09:23:11 +04:00
|
|
|
options->kbd_interactive_authentication = -1;
|
2001-06-05 22:56:16 +04:00
|
|
|
options->challenge_response_authentication = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->permit_empty_passwd = -1;
|
2002-08-01 05:28:38 +04:00
|
|
|
options->permit_user_env = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->use_login = -1;
|
2002-06-21 05:09:47 +04:00
|
|
|
options->compression = -1;
|
2000-10-16 05:14:42 +04:00
|
|
|
options->allow_tcp_forwarding = -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
options->num_allow_users = 0;
|
|
|
|
options->num_deny_users = 0;
|
|
|
|
options->num_allow_groups = 0;
|
|
|
|
options->num_deny_groups = 0;
|
2000-04-12 14:17:38 +04:00
|
|
|
options->ciphers = NULL;
|
2001-02-15 06:01:59 +03:00
|
|
|
options->macs = NULL;
|
2000-04-12 14:17:38 +04:00
|
|
|
options->protocol = SSH_PROTO_UNKNOWN;
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 06:03:14 +04:00
|
|
|
options->gateway_ports = -1;
|
2000-06-18 08:50:44 +04:00
|
|
|
options->num_subsystems = 0;
|
2000-08-18 07:59:06 +04:00
|
|
|
options->max_startups_begin = -1;
|
|
|
|
options->max_startups_rate = -1;
|
2000-07-11 11:31:38 +04:00
|
|
|
options->max_startups = -1;
|
2004-05-24 04:36:23 +04:00
|
|
|
options->max_authtries = -1;
|
2001-01-09 03:35:42 +03:00
|
|
|
options->banner = NULL;
|
2003-06-03 04:25:48 +04:00
|
|
|
options->use_dns = -1;
|
2001-04-14 03:28:01 +04:00
|
|
|
options->client_alive_interval = -1;
|
|
|
|
options->client_alive_count_max = -1;
|
2001-06-06 00:25:05 +04:00
|
|
|
options->authorized_keys_file = NULL;
|
|
|
|
options->authorized_keys_file2 = NULL;
|
2004-05-02 16:11:30 +04:00
|
|
|
options->num_accept_env = 0;
|
2005-12-13 11:29:02 +03:00
|
|
|
options->permit_tun = -1;
|
2006-07-24 08:08:13 +04:00
|
|
|
options->num_permitted_opens = -1;
|
2006-07-24 08:06:47 +04:00
|
|
|
options->adm_forced_command = NULL;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
fill_default_server_options(ServerOptions *options)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
if (options->use_pam == -1)
|
2003-09-23 16:12:38 +04:00
|
|
|
options->use_pam = 0;
|
2001-11-12 03:40:11 +03:00
|
|
|
|
|
|
|
/* Standard Options */
|
2000-11-13 14:57:25 +03:00
|
|
|
if (options->protocol == SSH_PROTO_UNKNOWN)
|
|
|
|
options->protocol = SSH_PROTO_1|SSH_PROTO_2;
|
|
|
|
if (options->num_host_key_files == 0) {
|
|
|
|
/* fill default hostkeys for protocols */
|
|
|
|
if (options->protocol & SSH_PROTO_1)
|
2002-01-22 15:19:11 +03:00
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_KEY_FILE;
|
|
|
|
if (options->protocol & SSH_PROTO_2) {
|
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_RSA_KEY_FILE;
|
|
|
|
options->host_key_files[options->num_host_key_files++] =
|
|
|
|
_PATH_HOST_DSA_KEY_FILE;
|
|
|
|
}
|
2000-11-13 14:57:25 +03:00
|
|
|
}
|
2000-01-14 07:45:46 +03:00
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
|
|
|
if (options->listen_addrs == NULL)
|
2001-04-13 03:39:26 +04:00
|
|
|
add_listen_addr(options, NULL, 0);
|
2000-05-02 03:23:45 +04:00
|
|
|
if (options->pid_file == NULL)
|
2001-01-22 08:34:40 +03:00
|
|
|
options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->server_key_bits == -1)
|
|
|
|
options->server_key_bits = 768;
|
|
|
|
if (options->login_grace_time == -1)
|
2002-09-05 08:35:14 +04:00
|
|
|
options->login_grace_time = 120;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->key_regeneration_time == -1)
|
|
|
|
options->key_regeneration_time = 3600;
|
2001-02-15 06:08:27 +03:00
|
|
|
if (options->permit_root_login == PERMIT_NOT_SET)
|
|
|
|
options->permit_root_login = PERMIT_YES;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->ignore_rhosts == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
options->ignore_rhosts = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->ignore_user_known_hosts == -1)
|
|
|
|
options->ignore_user_known_hosts = 0;
|
|
|
|
if (options->print_motd == -1)
|
|
|
|
options->print_motd = 1;
|
2001-03-26 09:45:53 +04:00
|
|
|
if (options->print_lastlog == -1)
|
|
|
|
options->print_lastlog = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->x11_forwarding == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
options->x11_forwarding = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->x11_display_offset == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
options->x11_display_offset = 10;
|
2002-02-05 04:11:34 +03:00
|
|
|
if (options->x11_use_localhost == -1)
|
|
|
|
options->x11_use_localhost = 1;
|
2000-06-07 13:55:44 +04:00
|
|
|
if (options->xauth_location == NULL)
|
2001-06-09 05:48:01 +04:00
|
|
|
options->xauth_location = _PATH_XAUTH;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->strict_modes == -1)
|
|
|
|
options->strict_modes = 1;
|
2003-12-17 08:31:10 +03:00
|
|
|
if (options->tcp_keep_alive == -1)
|
|
|
|
options->tcp_keep_alive = 1;
|
2002-02-05 04:26:34 +03:00
|
|
|
if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
|
1999-11-24 16:26:21 +03:00
|
|
|
options->log_facility = SYSLOG_FACILITY_AUTH;
|
2002-02-05 04:26:34 +03:00
|
|
|
if (options->log_level == SYSLOG_LEVEL_NOT_SET)
|
2001-01-19 07:26:52 +03:00
|
|
|
options->log_level = SYSLOG_LEVEL_INFO;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->rhosts_rsa_authentication == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
options->rhosts_rsa_authentication = 0;
|
2001-04-13 03:34:34 +04:00
|
|
|
if (options->hostbased_authentication == -1)
|
|
|
|
options->hostbased_authentication = 0;
|
|
|
|
if (options->hostbased_uses_name_from_packet_only == -1)
|
|
|
|
options->hostbased_uses_name_from_packet_only = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->rsa_authentication == -1)
|
|
|
|
options->rsa_authentication = 1;
|
2000-11-13 14:57:25 +03:00
|
|
|
if (options->pubkey_authentication == -1)
|
|
|
|
options->pubkey_authentication = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->kerberos_authentication == -1)
|
2002-04-23 15:04:51 +04:00
|
|
|
options->kerberos_authentication = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->kerberos_or_local_passwd == -1)
|
|
|
|
options->kerberos_or_local_passwd = 1;
|
|
|
|
if (options->kerberos_ticket_cleanup == -1)
|
|
|
|
options->kerberos_ticket_cleanup = 1;
|
2003-12-31 03:37:34 +03:00
|
|
|
if (options->kerberos_get_afs_token == -1)
|
|
|
|
options->kerberos_get_afs_token = 0;
|
2003-08-26 05:49:55 +04:00
|
|
|
if (options->gss_authentication == -1)
|
|
|
|
options->gss_authentication = 0;
|
|
|
|
if (options->gss_cleanup_creds == -1)
|
|
|
|
options->gss_cleanup_creds = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->password_authentication == -1)
|
|
|
|
options->password_authentication = 1;
|
2000-10-14 09:23:11 +04:00
|
|
|
if (options->kbd_interactive_authentication == -1)
|
|
|
|
options->kbd_interactive_authentication = 0;
|
2001-06-05 22:56:16 +04:00
|
|
|
if (options->challenge_response_authentication == -1)
|
|
|
|
options->challenge_response_authentication = 1;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->permit_empty_passwd == -1)
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
options->permit_empty_passwd = 0;
|
2002-08-01 05:28:38 +04:00
|
|
|
if (options->permit_user_env == -1)
|
|
|
|
options->permit_user_env = 0;
|
1999-11-24 16:26:21 +03:00
|
|
|
if (options->use_login == -1)
|
|
|
|
options->use_login = 0;
|
2002-06-21 05:09:47 +04:00
|
|
|
if (options->compression == -1)
|
2005-07-26 15:54:56 +04:00
|
|
|
options->compression = COMP_DELAYED;
|
2000-10-16 05:14:42 +04:00
|
|
|
if (options->allow_tcp_forwarding == -1)
|
|
|
|
options->allow_tcp_forwarding = 1;
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 06:03:14 +04:00
|
|
|
if (options->gateway_ports == -1)
|
|
|
|
options->gateway_ports = 0;
|
2000-07-11 11:31:38 +04:00
|
|
|
if (options->max_startups == -1)
|
|
|
|
options->max_startups = 10;
|
2000-08-18 07:59:06 +04:00
|
|
|
if (options->max_startups_rate == -1)
|
|
|
|
options->max_startups_rate = 100; /* 100% */
|
|
|
|
if (options->max_startups_begin == -1)
|
|
|
|
options->max_startups_begin = options->max_startups;
|
2004-05-24 04:36:23 +04:00
|
|
|
if (options->max_authtries == -1)
|
|
|
|
options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
|
2003-06-03 04:25:48 +04:00
|
|
|
if (options->use_dns == -1)
|
|
|
|
options->use_dns = 1;
|
2001-04-14 03:28:01 +04:00
|
|
|
if (options->client_alive_interval == -1)
|
2001-12-21 06:45:46 +03:00
|
|
|
options->client_alive_interval = 0;
|
2001-04-14 03:28:01 +04:00
|
|
|
if (options->client_alive_count_max == -1)
|
|
|
|
options->client_alive_count_max = 3;
|
2001-11-12 03:14:35 +03:00
|
|
|
if (options->authorized_keys_file2 == NULL) {
|
|
|
|
/* authorized_keys_file2 falls back to authorized_keys_file */
|
|
|
|
if (options->authorized_keys_file != NULL)
|
|
|
|
options->authorized_keys_file2 = options->authorized_keys_file;
|
|
|
|
else
|
|
|
|
options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
|
|
|
|
}
|
|
|
|
if (options->authorized_keys_file == NULL)
|
|
|
|
options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
|
2005-12-13 11:29:02 +03:00
|
|
|
if (options->permit_tun == -1)
|
2005-12-13 11:33:19 +03:00
|
|
|
options->permit_tun = SSH_TUNMODE_NO;
|
2002-03-22 05:30:41 +03:00
|
|
|
|
2002-06-06 23:47:11 +04:00
|
|
|
/* Turn privilege separation on by default */
|
2002-03-22 05:30:41 +03:00
|
|
|
if (use_privsep == -1)
|
2002-06-06 23:47:11 +04:00
|
|
|
use_privsep = 1;
|
2002-06-21 10:20:44 +04:00
|
|
|
|
2002-07-15 00:36:49 +04:00
|
|
|
#ifndef HAVE_MMAP
|
2002-06-21 10:20:44 +04:00
|
|
|
if (use_privsep && options->compression == 1) {
|
|
|
|
error("This platform does not support both privilege "
|
|
|
|
"separation and compression");
|
|
|
|
error("Compression disabled");
|
|
|
|
options->compression = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Keyword tokens. */
|
1999-11-24 16:26:21 +03:00
|
|
|
typedef enum {
|
|
|
|
sBadOption, /* == unknown option */
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
sUsePAM,
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Standard Options */
|
1999-11-24 16:26:21 +03:00
|
|
|
sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
|
|
|
|
sPermitRootLogin, sLogFacility, sLogLevel,
|
2003-08-13 14:37:05 +04:00
|
|
|
sRhostsRSAAuthentication, sRSAAuthentication,
|
1999-11-24 16:26:21 +03:00
|
|
|
sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
|
2003-12-31 03:37:34 +03:00
|
|
|
sKerberosGetAFSToken,
|
2003-08-02 16:24:49 +04:00
|
|
|
sKerberosTgtPassing, sChallengeResponseAuthentication,
|
2005-01-20 02:57:56 +03:00
|
|
|
sPasswordAuthentication, sKbdInteractiveAuthentication,
|
|
|
|
sListenAddress, sAddressFamily,
|
2001-03-26 09:45:53 +04:00
|
|
|
sPrintMotd, sPrintLastLog, sIgnoreRhosts,
|
2002-02-05 04:11:34 +03:00
|
|
|
sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
|
2003-12-17 08:31:10 +03:00
|
|
|
sStrictModes, sEmptyPasswd, sTCPKeepAlive,
|
2002-08-01 05:28:38 +04:00
|
|
|
sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
|
2000-10-16 05:14:42 +04:00
|
|
|
sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
|
2001-02-15 06:01:59 +03:00
|
|
|
sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
|
2004-05-24 04:36:23 +04:00
|
|
|
sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
|
|
|
|
sMaxStartups, sMaxAuthTries,
|
2003-06-03 04:25:48 +04:00
|
|
|
sBanner, sUseDNS, sHostbasedAuthentication,
|
2001-12-21 06:45:46 +03:00
|
|
|
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
|
2001-06-06 00:25:05 +04:00
|
|
|
sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
|
2005-12-13 11:29:02 +03:00
|
|
|
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
|
2006-07-24 08:06:47 +04:00
|
|
|
sMatch, sPermitOpen, sForceCommand,
|
2002-03-22 06:11:49 +03:00
|
|
|
sUsePrivilegeSeparation,
|
2003-05-16 05:38:32 +04:00
|
|
|
sDeprecated, sUnsupported
|
1999-10-27 07:42:43 +04:00
|
|
|
} ServerOpCodes;
|
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
|
|
|
|
#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
|
|
|
|
#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
|
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Textual representation of the tokens. */
|
1999-11-24 16:26:21 +03:00
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
ServerOpCodes opcode;
|
2006-07-12 16:34:17 +04:00
|
|
|
u_int flags;
|
1999-11-24 16:26:21 +03:00
|
|
|
} keywords[] = {
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Portable-specific options */
|
2003-05-16 05:42:35 +04:00
|
|
|
#ifdef USE_PAM
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "usepam", sUsePAM, SSHCFG_GLOBAL },
|
2003-05-16 05:42:35 +04:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "usepam", sUnsupported, SSHCFG_GLOBAL },
|
2003-05-16 05:42:35 +04:00
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
|
2001-11-12 03:40:11 +03:00
|
|
|
/* Standard Options */
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "port", sPort, SSHCFG_GLOBAL },
|
|
|
|
{ "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
|
|
|
|
{ "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
|
|
|
|
{ "pidfile", sPidFile, SSHCFG_GLOBAL },
|
|
|
|
{ "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
|
|
|
|
{ "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
|
|
|
|
{ "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
|
|
|
|
{ "permitrootlogin", sPermitRootLogin, SSHCFG_GLOBAL },
|
|
|
|
{ "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
|
|
|
|
{ "loglevel", sLogLevel, SSHCFG_GLOBAL },
|
|
|
|
{ "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_GLOBAL },
|
|
|
|
{ "rsaauthentication", sRSAAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
|
2003-08-02 16:24:49 +04:00
|
|
|
#ifdef KRB5
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosauthentication", sKerberosAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
|
2004-01-23 14:03:10 +03:00
|
|
|
#ifdef USE_AFS
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
|
2004-01-05 14:36:51 +03:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2004-01-05 14:36:51 +03:00
|
|
|
#endif
|
2003-05-16 05:38:32 +04:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberosauthentication", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
2003-05-16 05:38:32 +04:00
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "gssapiauthentication", sGssAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#else
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "gssapiauthentication", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
|
2003-08-26 05:49:55 +04:00
|
|
|
#endif
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_GLOBAL },
|
|
|
|
{ "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 },
|
2006-07-24 08:05:48 +04:00
|
|
|
{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
|
|
|
|
{ "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
|
|
|
|
{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
|
|
|
|
{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
|
|
|
|
{ "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },
|
|
|
|
{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
|
|
|
|
{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
|
|
|
|
{ "compression", sCompression, SSHCFG_GLOBAL },
|
|
|
|
{ "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
|
|
|
|
{ "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
|
|
|
|
{ "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
|
|
|
|
{ "allowusers", sAllowUsers, SSHCFG_GLOBAL },
|
|
|
|
{ "denyusers", sDenyUsers, SSHCFG_GLOBAL },
|
|
|
|
{ "allowgroups", sAllowGroups, SSHCFG_GLOBAL },
|
|
|
|
{ "denygroups", sDenyGroups, SSHCFG_GLOBAL },
|
|
|
|
{ "ciphers", sCiphers, SSHCFG_GLOBAL },
|
|
|
|
{ "macs", sMacs, SSHCFG_GLOBAL },
|
|
|
|
{ "protocol", sProtocol, SSHCFG_GLOBAL },
|
|
|
|
{ "gatewayports", sGatewayPorts, SSHCFG_ALL },
|
|
|
|
{ "subsystem", sSubsystem, SSHCFG_GLOBAL },
|
|
|
|
{ "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
|
|
|
|
{ "maxauthtries", sMaxAuthTries, SSHCFG_GLOBAL },
|
|
|
|
{ "banner", sBanner, SSHCFG_GLOBAL },
|
|
|
|
{ "usedns", sUseDNS, SSHCFG_GLOBAL },
|
|
|
|
{ "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
|
|
|
|
{ "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
|
|
|
|
{ "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
|
|
|
|
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL },
|
|
|
|
{ "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL },
|
|
|
|
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL },
|
|
|
|
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
|
|
|
|
{ "permittunnel", sPermitTunnel, SSHCFG_GLOBAL },
|
2006-07-24 08:04:00 +04:00
|
|
|
{ "match", sMatch, SSHCFG_ALL },
|
|
|
|
{ "permitopen", sPermitOpen, SSHCFG_ALL },
|
2006-07-24 08:06:47 +04:00
|
|
|
{ "forcecommand", sForceCommand, SSHCFG_ALL },
|
2006-07-12 16:34:17 +04:00
|
|
|
{ NULL, sBadOption, 0 }
|
1999-10-27 07:42:43 +04:00
|
|
|
};
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
2001-04-02 22:20:03 +04:00
|
|
|
* Returns the number of the token pointed to by cp or sBadOption.
|
1999-11-25 03:54:57 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
static ServerOpCodes
|
1999-11-24 16:26:21 +03:00
|
|
|
parse_token(const char *cp, const char *filename,
|
2006-07-12 16:34:17 +04:00
|
|
|
int linenum, u_int *flags)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2000-12-22 04:43:59 +03:00
|
|
|
u_int i;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
for (i = 0; keywords[i].name; i++)
|
2006-07-12 16:34:17 +04:00
|
|
|
if (strcasecmp(cp, keywords[i].name) == 0) {
|
|
|
|
*flags = keywords[i].flags;
|
1999-11-24 16:26:21 +03:00
|
|
|
return keywords[i].opcode;
|
2006-07-12 16:34:17 +04:00
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-04-16 06:13:26 +04:00
|
|
|
error("%s: line %d: Bad configuration option: %s",
|
|
|
|
filename, linenum, cp);
|
1999-11-24 16:26:21 +03:00
|
|
|
return sBadOption;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static void
|
2001-04-13 03:39:26 +04:00
|
|
|
add_listen_addr(ServerOptions *options, char *addr, u_short port)
|
2000-01-14 07:45:46 +03:00
|
|
|
{
|
2005-06-17 06:59:34 +04:00
|
|
|
u_int i;
|
2000-01-14 07:45:46 +03:00
|
|
|
|
|
|
|
if (options->num_ports == 0)
|
|
|
|
options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
|
2005-01-20 02:57:56 +03:00
|
|
|
if (options->address_family == -1)
|
|
|
|
options->address_family = AF_UNSPEC;
|
2001-04-13 03:39:26 +04:00
|
|
|
if (port == 0)
|
2001-04-07 21:25:48 +04:00
|
|
|
for (i = 0; i < options->num_ports; i++)
|
|
|
|
add_one_listen_addr(options, addr, options->ports[i]);
|
|
|
|
else
|
2001-04-13 03:39:26 +04:00
|
|
|
add_one_listen_addr(options, addr, port);
|
2001-04-07 21:25:48 +04:00
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static void
|
2001-04-07 21:25:48 +04:00
|
|
|
add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
|
|
|
|
{
|
|
|
|
struct addrinfo hints, *ai, *aitop;
|
|
|
|
char strport[NI_MAXSERV];
|
|
|
|
int gaierr;
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
2005-01-20 02:57:56 +03:00
|
|
|
hints.ai_family = options->address_family;
|
2001-04-07 21:25:48 +04:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
|
2002-06-24 01:29:23 +04:00
|
|
|
snprintf(strport, sizeof strport, "%u", port);
|
2001-04-07 21:25:48 +04:00
|
|
|
if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
|
|
|
|
fatal("bad addr or host: %s (%s)",
|
|
|
|
addr ? addr : "<NULL>",
|
|
|
|
gai_strerror(gaierr));
|
|
|
|
for (ai = aitop; ai->ai_next; ai = ai->ai_next)
|
|
|
|
;
|
|
|
|
ai->ai_next = options->listen_addrs;
|
|
|
|
options->listen_addrs = aitop;
|
2000-01-14 07:45:46 +03:00
|
|
|
}
|
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
/*
|
|
|
|
* The strategy for the Match blocks is that the config file is parsed twice.
|
|
|
|
*
|
|
|
|
* The first time is at startup. activep is initialized to 1 and the
|
|
|
|
* directives in the global context are processed and acted on. Hitting a
|
|
|
|
* Match directive unsets activep and the directives inside the block are
|
|
|
|
* checked for syntax only.
|
|
|
|
*
|
|
|
|
* The second time is after a connection has been established but before
|
|
|
|
* authentication. activep is initialized to 2 and global config directives
|
|
|
|
* are ignored since they have already been processed. If the criteria in a
|
|
|
|
* Match block is met, activep is set and the subsequent directives
|
|
|
|
* processed and actioned until EOF or another Match block unsets it. Any
|
|
|
|
* options set are copied into the main server config.
|
|
|
|
*
|
|
|
|
* Potential additions/improvements:
|
|
|
|
* - Add Match support for pre-kex directives, eg Protocol, Ciphers.
|
|
|
|
*
|
|
|
|
* - Add a Tag directive (idea from David Leonard) ala pf, eg:
|
|
|
|
* Match Address 192.168.0.*
|
|
|
|
* Tag trusted
|
|
|
|
* Match Group wheel
|
|
|
|
* Tag trusted
|
|
|
|
* Match Tag trusted
|
|
|
|
* AllowTcpForwarding yes
|
|
|
|
* GatewayPorts clientspecified
|
|
|
|
* [...]
|
|
|
|
*
|
|
|
|
* - Add a PermittedChannelRequests directive
|
|
|
|
* Match Group shell
|
|
|
|
* PermittedChannelRequests session,forwarded-tcpip
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
match_cfg_line(char **condition, int line, const char *user, const char *host,
|
|
|
|
const char *address)
|
|
|
|
{
|
|
|
|
int result = 1;
|
|
|
|
char *arg, *attrib, *cp = *condition;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if (user == NULL)
|
|
|
|
debug3("checking syntax for 'Match %s'", cp);
|
|
|
|
else
|
|
|
|
debug3("checking match for '%s' user %s host %s addr %s", cp,
|
|
|
|
user ? user : "(null)", host ? host : "(null)",
|
|
|
|
address ? address : "(null)");
|
|
|
|
|
|
|
|
while ((attrib = strdelim(&cp)) && *attrib != '\0') {
|
|
|
|
if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
|
|
|
|
error("Missing Match criteria for %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
len = strlen(arg);
|
|
|
|
if (strcasecmp(attrib, "user") == 0) {
|
|
|
|
if (!user) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (match_pattern_list(user, arg, len, 0) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("user %.100s matched 'User %.100s' at "
|
|
|
|
"line %d", user, arg, line);
|
|
|
|
} else if (strcasecmp(attrib, "host") == 0) {
|
|
|
|
if (!host) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (match_hostname(host, arg, len) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("connection from %.100s matched 'Host "
|
|
|
|
"%.100s' at line %d", host, arg, line);
|
|
|
|
} else if (strcasecmp(attrib, "address") == 0) {
|
|
|
|
debug("address '%s' arg '%s'", address, arg);
|
|
|
|
if (!address) {
|
|
|
|
result = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (match_hostname(address, arg, len) != 1)
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
debug("connection from %.100s matched 'Address "
|
|
|
|
"%.100s' at line %d", address, arg, line);
|
|
|
|
} else {
|
|
|
|
error("Unsupported Match attribute %s", attrib);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (user != NULL)
|
|
|
|
debug3("match %sfound", result ? "" : "not ");
|
|
|
|
*condition = cp;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-07-24 08:06:47 +04:00
|
|
|
#define WHITESPACE " \t\r\n"
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
int
|
|
|
|
process_server_config_line(ServerOptions *options, char *line,
|
2006-07-12 16:34:17 +04:00
|
|
|
const char *filename, int linenum, int *activep, const char *user,
|
|
|
|
const char *host, const char *address)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2001-04-07 21:25:48 +04:00
|
|
|
char *cp, **charptr, *arg, *p;
|
2006-07-12 16:34:17 +04:00
|
|
|
int cmdline = 0, *intptr, value, n;
|
1999-11-24 16:26:21 +03:00
|
|
|
ServerOpCodes opcode;
|
2005-03-01 13:24:33 +03:00
|
|
|
u_short port;
|
2006-07-12 16:34:17 +04:00
|
|
|
u_int i, flags = 0;
|
2006-07-10 14:36:47 +04:00
|
|
|
size_t len;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
cp = line;
|
2006-03-26 06:54:37 +04:00
|
|
|
if ((arg = strdelim(&cp)) == NULL)
|
2006-03-26 06:53:32 +04:00
|
|
|
return 0;
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Ignore leading whitespace */
|
|
|
|
if (*arg == '\0')
|
2000-07-15 08:14:16 +04:00
|
|
|
arg = strdelim(&cp);
|
2001-12-06 21:22:17 +03:00
|
|
|
if (!arg || !*arg || *arg == '#')
|
|
|
|
return 0;
|
|
|
|
intptr = NULL;
|
|
|
|
charptr = NULL;
|
2006-07-12 16:34:17 +04:00
|
|
|
opcode = parse_token(arg, filename, linenum, &flags);
|
|
|
|
|
|
|
|
if (activep == NULL) { /* We are processing a command line directive */
|
|
|
|
cmdline = 1;
|
|
|
|
activep = &cmdline;
|
|
|
|
}
|
|
|
|
if (*activep && opcode != sMatch)
|
|
|
|
debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
|
|
|
|
if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
|
|
|
|
if (user == NULL) {
|
|
|
|
fatal("%s line %d: Directive '%s' is not allowed "
|
|
|
|
"within a Match block", filename, linenum, arg);
|
|
|
|
} else { /* this is a directive we have already processed */
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
switch (opcode) {
|
|
|
|
/* Portable-specific options */
|
2003-05-14 09:11:48 +04:00
|
|
|
case sUsePAM:
|
|
|
|
intptr = &options->use_pam;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
2000-01-14 07:45:46 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Standard Options */
|
|
|
|
case sBadOption:
|
|
|
|
return -1;
|
|
|
|
case sPort:
|
|
|
|
/* ignore ports from configfile if cmdline specifies ports */
|
|
|
|
if (options->ports_from_cmdline)
|
|
|
|
return 0;
|
|
|
|
if (options->listen_addrs != NULL)
|
|
|
|
fatal("%s line %d: ports must be specified before "
|
2002-01-22 15:35:09 +03:00
|
|
|
"ListenAddress.", filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
if (options->num_ports >= MAX_PORTS)
|
|
|
|
fatal("%s line %d: too many ports.",
|
|
|
|
filename, linenum);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing port number.",
|
|
|
|
filename, linenum);
|
|
|
|
options->ports[options->num_ports++] = a2port(arg);
|
|
|
|
if (options->ports[options->num_ports-1] == 0)
|
|
|
|
fatal("%s line %d: Badly formatted port number.",
|
|
|
|
filename, linenum);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sServerKeyBits:
|
|
|
|
intptr = &options->server_key_bits;
|
1999-11-24 16:26:21 +03:00
|
|
|
parse_int:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing integer value.",
|
|
|
|
filename, linenum);
|
|
|
|
value = atoi(arg);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *intptr == -1)
|
2001-12-06 21:22:17 +03:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sLoginGraceTime:
|
|
|
|
intptr = &options->login_grace_time;
|
2001-06-05 23:59:08 +04:00
|
|
|
parse_time:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing time value.",
|
|
|
|
filename, linenum);
|
|
|
|
if ((value = convtime(arg)) == -1)
|
|
|
|
fatal("%s line %d: invalid time value.",
|
|
|
|
filename, linenum);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sKeyRegenerationTime:
|
|
|
|
intptr = &options->key_regeneration_time;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case sListenAddress:
|
|
|
|
arg = strdelim(&cp);
|
2005-03-01 13:24:33 +03:00
|
|
|
if (arg == NULL || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing address",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2005-08-12 16:11:37 +04:00
|
|
|
/* check for bare IPv6 address: no "[]" and 2 or more ":" */
|
|
|
|
if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
|
|
|
|
&& strchr(p+1, ':') != NULL) {
|
|
|
|
add_listen_addr(options, arg, 0);
|
|
|
|
break;
|
|
|
|
}
|
2005-03-01 13:24:33 +03:00
|
|
|
p = hpdelim(&arg);
|
|
|
|
if (p == NULL)
|
|
|
|
fatal("%s line %d: bad address:port usage",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2005-03-01 13:24:33 +03:00
|
|
|
p = cleanhostname(p);
|
|
|
|
if (arg == NULL)
|
|
|
|
port = 0;
|
|
|
|
else if ((port = a2port(arg)) == 0)
|
|
|
|
fatal("%s line %d: bad port number", filename, linenum);
|
|
|
|
|
|
|
|
add_listen_addr(options, p, port);
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
break;
|
|
|
|
|
2005-01-20 02:57:56 +03:00
|
|
|
case sAddressFamily:
|
|
|
|
arg = strdelim(&cp);
|
2005-05-26 06:11:56 +04:00
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing address family.",
|
|
|
|
filename, linenum);
|
2005-01-20 02:57:56 +03:00
|
|
|
intptr = &options->address_family;
|
|
|
|
if (options->listen_addrs != NULL)
|
|
|
|
fatal("%s line %d: address family must be specified before "
|
|
|
|
"ListenAddress.", filename, linenum);
|
|
|
|
if (strcasecmp(arg, "inet") == 0)
|
|
|
|
value = AF_INET;
|
|
|
|
else if (strcasecmp(arg, "inet6") == 0)
|
|
|
|
value = AF_INET6;
|
|
|
|
else if (strcasecmp(arg, "any") == 0)
|
|
|
|
value = AF_UNSPEC;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: unsupported address family \"%s\".",
|
|
|
|
filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sHostKeyFile:
|
|
|
|
intptr = &options->num_host_key_files;
|
|
|
|
if (*intptr >= MAX_HOSTKEYS)
|
|
|
|
fatal("%s line %d: too many host keys specified (max %d).",
|
|
|
|
filename, linenum, MAX_HOSTKEYS);
|
|
|
|
charptr = &options->host_key_files[*intptr];
|
2000-06-07 13:55:44 +04:00
|
|
|
parse_filename:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing file name.",
|
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *charptr == NULL) {
|
2001-12-06 21:22:17 +03:00
|
|
|
*charptr = tilde_expand_filename(arg, getuid());
|
|
|
|
/* increase optional counter */
|
|
|
|
if (intptr != NULL)
|
|
|
|
*intptr = *intptr + 1;
|
|
|
|
}
|
|
|
|
break;
|
2000-05-02 03:23:45 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPidFile:
|
|
|
|
charptr = &options->pid_file;
|
|
|
|
goto parse_filename;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPermitRootLogin:
|
|
|
|
intptr = &options->permit_root_login;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing yes/"
|
|
|
|
"without-password/forced-commands-only/no "
|
|
|
|
"argument.", filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcmp(arg, "without-password") == 0)
|
|
|
|
value = PERMIT_NO_PASSWD;
|
|
|
|
else if (strcmp(arg, "forced-commands-only") == 0)
|
|
|
|
value = PERMIT_FORCED_ONLY;
|
|
|
|
else if (strcmp(arg, "yes") == 0)
|
|
|
|
value = PERMIT_YES;
|
|
|
|
else if (strcmp(arg, "no") == 0)
|
|
|
|
value = PERMIT_NO;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/"
|
|
|
|
"without-password/forced-commands-only/no "
|
|
|
|
"argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sIgnoreRhosts:
|
|
|
|
intptr = &options->ignore_rhosts;
|
1999-11-24 16:26:21 +03:00
|
|
|
parse_flag:
|
2001-12-06 21:22:17 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing yes/no argument.",
|
|
|
|
filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcmp(arg, "yes") == 0)
|
|
|
|
value = 1;
|
|
|
|
else if (strcmp(arg, "no") == 0)
|
|
|
|
value = 0;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/no argument: %s",
|
|
|
|
filename, linenum, arg);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (*activep && *intptr == -1)
|
2001-12-06 21:22:17 +03:00
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sIgnoreUserKnownHosts:
|
|
|
|
intptr = &options->ignore_user_known_hosts;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sRhostsRSAAuthentication:
|
|
|
|
intptr = &options->rhosts_rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sHostbasedAuthentication:
|
|
|
|
intptr = &options->hostbased_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sHostbasedUsesNameFromPacketOnly:
|
|
|
|
intptr = &options->hostbased_uses_name_from_packet_only;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sRSAAuthentication:
|
|
|
|
intptr = &options->rsa_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sPubkeyAuthentication:
|
|
|
|
intptr = &options->pubkey_authentication;
|
|
|
|
goto parse_flag;
|
2003-05-15 06:05:28 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosAuthentication:
|
|
|
|
intptr = &options->kerberos_authentication;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosOrLocalPasswd:
|
|
|
|
intptr = &options->kerberos_or_local_passwd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKerberosTicketCleanup:
|
|
|
|
intptr = &options->kerberos_ticket_cleanup;
|
|
|
|
goto parse_flag;
|
2003-05-15 06:05:28 +04:00
|
|
|
|
2003-12-31 03:37:34 +03:00
|
|
|
case sKerberosGetAFSToken:
|
|
|
|
intptr = &options->kerberos_get_afs_token;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
case sGssAuthentication:
|
|
|
|
intptr = &options->gss_authentication;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
case sGssCleanupCreds:
|
|
|
|
intptr = &options->gss_cleanup_creds;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPasswordAuthentication:
|
|
|
|
intptr = &options->password_authentication;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sKbdInteractiveAuthentication:
|
|
|
|
intptr = &options->kbd_interactive_authentication;
|
|
|
|
goto parse_flag;
|
2001-04-13 03:34:34 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sChallengeResponseAuthentication:
|
|
|
|
intptr = &options->challenge_response_authentication;
|
|
|
|
goto parse_flag;
|
2001-04-13 03:34:34 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPrintMotd:
|
|
|
|
intptr = &options->print_motd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sPrintLastLog:
|
|
|
|
intptr = &options->print_lastlog;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sX11Forwarding:
|
|
|
|
intptr = &options->x11_forwarding;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sX11DisplayOffset:
|
|
|
|
intptr = &options->x11_display_offset;
|
|
|
|
goto parse_int;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2002-02-05 04:11:34 +03:00
|
|
|
case sX11UseLocalhost:
|
|
|
|
intptr = &options->x11_use_localhost;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sXAuthLocation:
|
|
|
|
charptr = &options->xauth_location;
|
|
|
|
goto parse_filename;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sStrictModes:
|
|
|
|
intptr = &options->strict_modes;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2003-12-17 08:31:10 +03:00
|
|
|
case sTCPKeepAlive:
|
|
|
|
intptr = &options->tcp_keep_alive;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
2000-10-16 05:14:42 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sEmptyPasswd:
|
|
|
|
intptr = &options->permit_empty_passwd;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2002-08-01 05:28:38 +04:00
|
|
|
case sPermitUserEnvironment:
|
|
|
|
intptr = &options->permit_user_env;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sUseLogin:
|
|
|
|
intptr = &options->use_login;
|
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2002-06-21 05:09:47 +04:00
|
|
|
case sCompression:
|
|
|
|
intptr = &options->compression;
|
2005-07-26 15:54:56 +04:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing yes/no/delayed "
|
|
|
|
"argument.", filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcmp(arg, "delayed") == 0)
|
|
|
|
value = COMP_DELAYED;
|
|
|
|
else if (strcmp(arg, "yes") == 0)
|
|
|
|
value = COMP_ZLIB;
|
|
|
|
else if (strcmp(arg, "no") == 0)
|
|
|
|
value = COMP_NONE;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/no/delayed "
|
|
|
|
"argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
2002-06-21 05:09:47 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sGatewayPorts:
|
|
|
|
intptr = &options->gateway_ports;
|
2005-03-01 13:24:33 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing yes/no/clientspecified "
|
|
|
|
"argument.", filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcmp(arg, "clientspecified") == 0)
|
|
|
|
value = 2;
|
|
|
|
else if (strcmp(arg, "yes") == 0)
|
|
|
|
value = 1;
|
|
|
|
else if (strcmp(arg, "no") == 0)
|
|
|
|
value = 0;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/no/clientspecified "
|
|
|
|
"argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2003-06-03 04:25:48 +04:00
|
|
|
case sUseDNS:
|
|
|
|
intptr = &options->use_dns;
|
2001-12-06 21:22:17 +03:00
|
|
|
goto parse_flag;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sLogFacility:
|
|
|
|
intptr = (int *) &options->log_facility;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_facility_number(arg);
|
2002-02-05 04:26:34 +03:00
|
|
|
if (value == SYSLOG_FACILITY_NOT_SET)
|
2001-12-06 21:22:17 +03:00
|
|
|
fatal("%.200s line %d: unsupported log facility '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = (SyslogFacility) value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sLogLevel:
|
|
|
|
intptr = (int *) &options->log_level;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
value = log_level_number(arg);
|
2002-02-05 04:26:34 +03:00
|
|
|
if (value == SYSLOG_LEVEL_NOT_SET)
|
2001-12-06 21:22:17 +03:00
|
|
|
fatal("%.200s line %d: unsupported log level '%s'",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = (LogLevel) value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sAllowTcpForwarding:
|
|
|
|
intptr = &options->allow_tcp_forwarding;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2002-03-22 05:30:41 +03:00
|
|
|
case sUsePrivilegeSeparation:
|
|
|
|
intptr = &use_privsep;
|
|
|
|
goto parse_flag;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sAllowUsers:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_allow_users >= MAX_ALLOW_USERS)
|
|
|
|
fatal("%s line %d: too many allow users.",
|
|
|
|
filename, linenum);
|
2002-06-24 01:29:23 +04:00
|
|
|
options->allow_users[options->num_allow_users++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-04-12 14:17:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDenyUsers:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_deny_users >= MAX_DENY_USERS)
|
2006-08-05 05:38:40 +04:00
|
|
|
fatal("%s line %d: too many deny users.",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum);
|
2002-06-24 01:29:23 +04:00
|
|
|
options->deny_users[options->num_deny_users++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2001-02-15 06:01:59 +03:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sAllowGroups:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
|
|
|
|
fatal("%s line %d: too many allow groups.",
|
|
|
|
filename, linenum);
|
2002-06-24 01:29:23 +04:00
|
|
|
options->allow_groups[options->num_allow_groups++] =
|
|
|
|
xstrdup(arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-04-12 14:17:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDenyGroups:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (options->num_deny_groups >= MAX_DENY_GROUPS)
|
|
|
|
fatal("%s line %d: too many deny groups.",
|
|
|
|
filename, linenum);
|
|
|
|
options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
2000-06-18 08:50:44 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sCiphers:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!ciphers_valid(arg))
|
|
|
|
fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (options->ciphers == NULL)
|
|
|
|
options->ciphers = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sMacs:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
if (!mac_valid(arg))
|
|
|
|
fatal("%s line %d: Bad SSH2 mac spec '%s'.",
|
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
|
|
|
if (options->macs == NULL)
|
|
|
|
options->macs = xstrdup(arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sProtocol:
|
|
|
|
intptr = &options->protocol;
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing argument.", filename, linenum);
|
|
|
|
value = proto_spec(arg);
|
|
|
|
if (value == SSH_PROTO_UNKNOWN)
|
|
|
|
fatal("%s line %d: Bad protocol spec '%s'.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum, arg ? arg : "<NONE>");
|
2001-12-06 21:22:17 +03:00
|
|
|
if (*intptr == SSH_PROTO_UNKNOWN)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sSubsystem:
|
|
|
|
if (options->num_subsystems >= MAX_SUBSYSTEMS) {
|
|
|
|
fatal("%s line %d: too many subsystems defined.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
}
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem name.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (!*activep) {
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
}
|
2001-12-06 21:22:17 +03:00
|
|
|
for (i = 0; i < options->num_subsystems; i++)
|
|
|
|
if (strcmp(arg, options->subsystem_name[i]) == 0)
|
|
|
|
fatal("%s line %d: Subsystem '%s' already defined.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum, arg);
|
2001-12-06 21:22:17 +03:00
|
|
|
options->subsystem_name[options->num_subsystems] = xstrdup(arg);
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing subsystem command.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
options->subsystem_command[options->num_subsystems] = xstrdup(arg);
|
2006-07-10 14:36:47 +04:00
|
|
|
|
|
|
|
/* Collect arguments (separate to executable) */
|
|
|
|
p = xstrdup(arg);
|
|
|
|
len = strlen(p) + 1;
|
|
|
|
while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
|
|
|
|
len += 1 + strlen(arg);
|
|
|
|
p = xrealloc(p, 1, len);
|
|
|
|
strlcat(p, " ", len);
|
|
|
|
strlcat(p, arg, len);
|
|
|
|
}
|
|
|
|
options->subsystem_args[options->num_subsystems] = p;
|
2001-12-06 21:22:17 +03:00
|
|
|
options->num_subsystems++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sMaxStartups:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing MaxStartups spec.",
|
2001-12-21 06:45:46 +03:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
if ((n = sscanf(arg, "%d:%d:%d",
|
|
|
|
&options->max_startups_begin,
|
|
|
|
&options->max_startups_rate,
|
|
|
|
&options->max_startups)) == 3) {
|
|
|
|
if (options->max_startups_begin >
|
|
|
|
options->max_startups ||
|
|
|
|
options->max_startups_rate > 100 ||
|
|
|
|
options->max_startups_rate < 1)
|
2000-08-18 07:59:06 +04:00
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
2001-07-14 06:17:33 +04:00
|
|
|
filename, linenum);
|
2001-12-06 21:22:17 +03:00
|
|
|
} else if (n != 1)
|
|
|
|
fatal("%s line %d: Illegal MaxStartups spec.",
|
|
|
|
filename, linenum);
|
|
|
|
else
|
|
|
|
options->max_startups = options->max_startups_begin;
|
|
|
|
break;
|
|
|
|
|
2004-05-24 04:36:23 +04:00
|
|
|
case sMaxAuthTries:
|
|
|
|
intptr = &options->max_authtries;
|
|
|
|
goto parse_int;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sBanner:
|
|
|
|
charptr = &options->banner;
|
|
|
|
goto parse_filename;
|
|
|
|
/*
|
|
|
|
* These options can contain %X options expanded at
|
|
|
|
* connect time, so that you can specify paths like:
|
|
|
|
*
|
|
|
|
* AuthorizedKeysFile /etc/ssh_keys/%u
|
|
|
|
*/
|
|
|
|
case sAuthorizedKeysFile:
|
|
|
|
case sAuthorizedKeysFile2:
|
2006-08-05 05:38:40 +04:00
|
|
|
charptr = (opcode == sAuthorizedKeysFile) ?
|
2001-12-06 21:22:17 +03:00
|
|
|
&options->authorized_keys_file :
|
|
|
|
&options->authorized_keys_file2;
|
|
|
|
goto parse_filename;
|
|
|
|
|
|
|
|
case sClientAliveInterval:
|
|
|
|
intptr = &options->client_alive_interval;
|
|
|
|
goto parse_time;
|
|
|
|
|
|
|
|
case sClientAliveCountMax:
|
|
|
|
intptr = &options->client_alive_count_max;
|
|
|
|
goto parse_int;
|
|
|
|
|
2004-05-02 16:11:30 +04:00
|
|
|
case sAcceptEnv:
|
|
|
|
while ((arg = strdelim(&cp)) && *arg != '\0') {
|
|
|
|
if (strchr(arg, '=') != NULL)
|
|
|
|
fatal("%s line %d: Invalid environment name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (options->num_accept_env >= MAX_ACCEPT_ENV)
|
|
|
|
fatal("%s line %d: too many allow env.",
|
|
|
|
filename, linenum);
|
2006-07-12 16:34:17 +04:00
|
|
|
if (!*activep)
|
|
|
|
break;
|
2004-05-02 16:11:30 +04:00
|
|
|
options->accept_env[options->num_accept_env++] =
|
|
|
|
xstrdup(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-12-13 11:29:02 +03:00
|
|
|
case sPermitTunnel:
|
|
|
|
intptr = &options->permit_tun;
|
2005-12-13 11:33:19 +03:00
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: Missing yes/point-to-point/"
|
|
|
|
"ethernet/no argument.", filename, linenum);
|
|
|
|
value = 0; /* silence compiler */
|
|
|
|
if (strcasecmp(arg, "ethernet") == 0)
|
|
|
|
value = SSH_TUNMODE_ETHERNET;
|
|
|
|
else if (strcasecmp(arg, "point-to-point") == 0)
|
|
|
|
value = SSH_TUNMODE_POINTOPOINT;
|
|
|
|
else if (strcasecmp(arg, "yes") == 0)
|
|
|
|
value = SSH_TUNMODE_YES;
|
|
|
|
else if (strcasecmp(arg, "no") == 0)
|
|
|
|
value = SSH_TUNMODE_NO;
|
|
|
|
else
|
|
|
|
fatal("%s line %d: Bad yes/point-to-point/ethernet/"
|
|
|
|
"no argument: %s", filename, linenum, arg);
|
|
|
|
if (*intptr == -1)
|
|
|
|
*intptr = value;
|
|
|
|
break;
|
2005-12-13 11:29:02 +03:00
|
|
|
|
2006-07-12 16:34:17 +04:00
|
|
|
case sMatch:
|
|
|
|
if (cmdline)
|
|
|
|
fatal("Match directive not supported as a command-line "
|
|
|
|
"option");
|
|
|
|
value = match_cfg_line(&cp, linenum, user, host, address);
|
|
|
|
if (value < 0)
|
|
|
|
fatal("%s line %d: Bad Match condition", filename,
|
|
|
|
linenum);
|
|
|
|
*activep = value;
|
|
|
|
break;
|
|
|
|
|
2006-07-24 08:04:00 +04:00
|
|
|
case sPermitOpen:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
|
|
|
fatal("%s line %d: missing PermitOpen specification",
|
|
|
|
filename, linenum);
|
|
|
|
if (strcmp(arg, "any") == 0) {
|
2006-07-24 08:08:13 +04:00
|
|
|
if (*activep) {
|
2006-07-24 08:04:00 +04:00
|
|
|
channel_clear_adm_permitted_opens();
|
2006-07-24 08:08:13 +04:00
|
|
|
options->num_permitted_opens = 0;
|
|
|
|
}
|
2006-07-24 08:04:00 +04:00
|
|
|
break;
|
|
|
|
}
|
2006-07-24 08:08:13 +04:00
|
|
|
for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
|
|
|
|
p = hpdelim(&arg);
|
|
|
|
if (p == NULL)
|
|
|
|
fatal("%s line %d: missing host in PermitOpen",
|
|
|
|
filename, linenum);
|
|
|
|
p = cleanhostname(p);
|
|
|
|
if (arg == NULL || (port = a2port(arg)) == 0)
|
|
|
|
fatal("%s line %d: bad port number in "
|
|
|
|
"PermitOpen", filename, linenum);
|
|
|
|
if (*activep && options->num_permitted_opens == -1) {
|
|
|
|
channel_clear_adm_permitted_opens();
|
|
|
|
options->num_permitted_opens =
|
|
|
|
channel_add_adm_permitted_opens(p, port);
|
|
|
|
}
|
|
|
|
}
|
2006-07-24 08:04:00 +04:00
|
|
|
break;
|
|
|
|
|
2006-07-24 08:06:47 +04:00
|
|
|
case sForceCommand:
|
|
|
|
if (cp == NULL)
|
|
|
|
fatal("%.200s line %d: Missing argument.", filename,
|
|
|
|
linenum);
|
|
|
|
len = strspn(cp, WHITESPACE);
|
|
|
|
if (*activep && options->adm_forced_command == NULL)
|
|
|
|
options->adm_forced_command = xstrdup(cp + len);
|
|
|
|
return 0;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
case sDeprecated:
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("%s line %d: Deprecated option %s",
|
2001-12-06 21:22:17 +03:00
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
2003-05-16 05:38:32 +04:00
|
|
|
case sUnsupported:
|
|
|
|
logit("%s line %d: Unsupported option %s",
|
|
|
|
filename, linenum, arg);
|
|
|
|
while (arg)
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
break;
|
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
default:
|
|
|
|
fatal("%s line %d: Missing handler for opcode %s (%d)",
|
|
|
|
filename, linenum, arg, opcode);
|
|
|
|
}
|
|
|
|
if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
|
|
|
|
fatal("%s line %d: garbage at end of line; \"%.200s\".",
|
|
|
|
filename, linenum, arg);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-07-11 11:31:38 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
/* Reads the server configuration file. */
|
2001-09-12 20:32:14 +04:00
|
|
|
|
2001-12-06 21:22:17 +03:00
|
|
|
void
|
2004-06-25 07:33:20 +04:00
|
|
|
load_server_config(const char *filename, Buffer *conf)
|
2001-12-06 21:22:17 +03:00
|
|
|
{
|
2004-06-25 07:33:20 +04:00
|
|
|
char line[1024], *cp;
|
2002-06-24 01:29:23 +04:00
|
|
|
FILE *f;
|
2001-12-06 21:22:17 +03:00
|
|
|
|
2004-06-25 07:33:20 +04:00
|
|
|
debug2("%s: filename %s", __func__, filename);
|
|
|
|
if ((f = fopen(filename, "r")) == NULL) {
|
2001-12-06 21:22:17 +03:00
|
|
|
perror(filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-06-25 07:33:20 +04:00
|
|
|
buffer_clear(conf);
|
2001-12-06 21:22:17 +03:00
|
|
|
while (fgets(line, sizeof(line), f)) {
|
2004-06-25 07:33:20 +04:00
|
|
|
/*
|
|
|
|
* Trim out comments and strip whitespace
|
2004-07-17 10:12:08 +04:00
|
|
|
* NB - preserve newlines, they are needed to reproduce
|
2004-06-25 07:33:20 +04:00
|
|
|
* line numbers later for error messages
|
|
|
|
*/
|
|
|
|
if ((cp = strchr(line, '#')) != NULL)
|
|
|
|
memcpy(cp, "\n", 2);
|
|
|
|
cp = line + strspn(line, " \t\r");
|
|
|
|
|
|
|
|
buffer_append(conf, cp, strlen(cp));
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2004-06-25 07:33:20 +04:00
|
|
|
buffer_append(conf, "\0", 1);
|
1999-11-24 16:26:21 +03:00
|
|
|
fclose(f);
|
2004-06-25 07:33:20 +04:00
|
|
|
debug2("%s: done config len = %d", __func__, buffer_len(conf));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-07-12 16:34:17 +04:00
|
|
|
parse_server_match_config(ServerOptions *options, const char *user,
|
|
|
|
const char *host, const char *address)
|
|
|
|
{
|
|
|
|
ServerOptions mo;
|
|
|
|
|
|
|
|
initialize_server_options(&mo);
|
|
|
|
parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
|
|
|
|
copy_set_server_options(options, &mo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy any (supported) values that are set */
|
|
|
|
void
|
|
|
|
copy_set_server_options(ServerOptions *dst, ServerOptions *src)
|
|
|
|
{
|
|
|
|
if (src->allow_tcp_forwarding != -1)
|
|
|
|
dst->allow_tcp_forwarding = src->allow_tcp_forwarding;
|
|
|
|
if (src->gateway_ports != -1)
|
|
|
|
dst->gateway_ports = src->gateway_ports;
|
2006-07-24 08:06:47 +04:00
|
|
|
if (src->adm_forced_command != NULL) {
|
|
|
|
if (dst->adm_forced_command != NULL)
|
|
|
|
xfree(dst->adm_forced_command);
|
|
|
|
dst->adm_forced_command = src->adm_forced_command;
|
|
|
|
}
|
2006-07-24 08:05:48 +04:00
|
|
|
if (src->x11_display_offset != -1)
|
|
|
|
dst->x11_display_offset = src->x11_display_offset;
|
|
|
|
if (src->x11_forwarding != -1)
|
|
|
|
dst->x11_forwarding = src->x11_forwarding;
|
|
|
|
if (src->x11_use_localhost != -1)
|
|
|
|
dst->x11_use_localhost = src->x11_use_localhost;
|
2006-07-12 16:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
|
|
|
|
const char *user, const char *host, const char *address)
|
2004-06-25 07:33:20 +04:00
|
|
|
{
|
2006-07-12 16:34:17 +04:00
|
|
|
int active, linenum, bad_options = 0;
|
2004-08-12 16:41:44 +04:00
|
|
|
char *cp, *obuf, *cbuf;
|
2004-06-25 07:33:20 +04:00
|
|
|
|
|
|
|
debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
|
|
|
|
|
2004-08-12 16:41:44 +04:00
|
|
|
obuf = cbuf = xstrdup(buffer_ptr(conf));
|
2006-07-12 16:34:17 +04:00
|
|
|
active = user ? 0 : 1;
|
2004-08-13 15:30:24 +04:00
|
|
|
linenum = 1;
|
2005-03-14 15:08:12 +03:00
|
|
|
while ((cp = strsep(&cbuf, "\n")) != NULL) {
|
2004-06-25 07:33:20 +04:00
|
|
|
if (process_server_config_line(options, cp, filename,
|
2006-07-12 16:34:17 +04:00
|
|
|
linenum++, &active, user, host, address) != 0)
|
2004-06-25 07:33:20 +04:00
|
|
|
bad_options++;
|
|
|
|
}
|
2004-08-12 16:41:44 +04:00
|
|
|
xfree(obuf);
|
2001-04-16 06:13:26 +04:00
|
|
|
if (bad_options > 0)
|
|
|
|
fatal("%s: terminating, %d bad configuration options",
|
|
|
|
filename, bad_options);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|