blob: 909ad7d8f67455b08bd64a6801b9c55841764eef [file] [log] [blame]
Damien Miller33322122011-06-20 14:43:11 +10001/* $OpenBSD: servconf.c,v 1.220 2011/06/17 21:47:35 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10005 *
Damien Millere4340be2000-09-16 13:29:08 +11006 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110011 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100012
13#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Damien Millere3b60b52006-07-10 21:08:03 +100015#include <sys/types.h>
16#include <sys/socket.h>
17
Damien Miller0dac6fb2010-11-20 15:19:38 +110018#include <netinet/in.h>
19#include <netinet/in_systm.h>
20#include <netinet/ip.h>
21
Damien Millerb8fe89c2006-07-24 14:51:00 +100022#include <netdb.h>
Damien Miller565ca3f2006-08-19 00:23:15 +100023#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100024#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100025#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100026#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100027#include <signal.h>
Damien Millere6b3b612006-07-24 14:01:23 +100028#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <stdarg.h>
Darren Tuckere7140f22008-06-10 23:01:51 +100030#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100031
Damien Millerb84886b2008-05-19 15:05:07 +100032#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100033#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#include "servconf.h"
Damien Miller78928792000-04-12 20:17:38 +100038#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000039#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "misc.h"
41#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100042#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000043#include "kex.h"
44#include "mac.h"
Darren Tucker45150472006-07-12 22:34:17 +100045#include "match.h"
Damien Miller9b439df2006-07-24 14:04:00 +100046#include "channels.h"
Damien Miller565ca3f2006-08-19 00:23:15 +100047#include "groupaccess.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048
Damien Miller3dc71ad2009-01-28 16:31:22 +110049static void add_listen_addr(ServerOptions *, char *, int);
50static void add_one_listen_addr(ServerOptions *, char *, int);
Damien Miller34132e52000-01-14 15:45:46 +110051
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000052/* Use of privilege separation or not */
53extern int use_privsep;
Darren Tucker45150472006-07-12 22:34:17 +100054extern Buffer cfg;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056/* Initializes the server options to their default values. */
57
Damien Miller4af51302000-04-16 11:18:38 +100058void
Damien Miller95def091999-11-25 00:26:21 +110059initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060{
Damien Miller95def091999-11-25 00:26:21 +110061 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110062
63 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100064 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110065
66 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110067 options->num_ports = 0;
68 options->ports_from_cmdline = 0;
69 options->listen_addrs = NULL;
Darren Tucker0f383232005-01-20 10:57:56 +110070 options->address_family = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110071 options->num_host_key_files = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +110072 options->num_host_cert_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100073 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110074 options->server_key_bits = -1;
75 options->login_grace_time = -1;
76 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000077 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110078 options->ignore_rhosts = -1;
79 options->ignore_user_known_hosts = -1;
80 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000081 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110082 options->x11_forwarding = -1;
83 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110084 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100085 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110086 options->strict_modes = -1;
Damien Miller12c150e2003-12-17 16:31:10 +110087 options->tcp_keep_alive = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110088 options->log_facility = SYSLOG_FACILITY_NOT_SET;
89 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110090 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000091 options->hostbased_authentication = -1;
92 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110093 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110094 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110095 options->kerberos_authentication = -1;
96 options->kerberos_or_local_passwd = -1;
97 options->kerberos_ticket_cleanup = -1;
Darren Tucker22ef5082003-12-31 11:37:34 +110098 options->kerberos_get_afs_token = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +100099 options->gss_authentication=-1;
100 options->gss_cleanup_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100101 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100102 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000103 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100104 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000105 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +1100106 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000107 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100108 options->allow_tcp_forwarding = -1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000109 options->allow_agent_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +1100110 options->num_allow_users = 0;
111 options->num_deny_users = 0;
112 options->num_allow_groups = 0;
113 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +1000114 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000115 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +1000116 options->kex_algorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000117 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000118 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000119 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000120 options->max_startups_begin = -1;
121 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000122 options->max_startups = -1;
Darren Tucker89413db2004-05-24 10:36:23 +1000123 options->max_authtries = -1;
Damien Miller7207f642008-05-19 15:34:50 +1000124 options->max_sessions = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000125 options->banner = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +1000126 options->use_dns = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000127 options->client_alive_interval = -1;
128 options->client_alive_count_max = -1;
Damien Millerd8478b62011-05-29 21:39:36 +1000129 options->num_authkeys_files = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +1000130 options->num_accept_env = 0;
Damien Millerd27b9472005-12-13 19:29:02 +1100131 options->permit_tun = -1;
Damien Millera765cf42006-07-24 14:08:13 +1000132 options->num_permitted_opens = -1;
Damien Millere2754432006-07-24 14:06:47 +1000133 options->adm_forced_command = NULL;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100134 options->chroot_directory = NULL;
Damien Miller01ed2272008-11-05 16:20:46 +1100135 options->zero_knowledge_password_authentication = -1;
Damien Miller1aed65e2010-03-04 21:53:35 +1100136 options->revoked_keys_file = NULL;
137 options->trusted_user_ca_keys = NULL;
Damien Miller30da3442010-05-10 11:58:03 +1000138 options->authorized_principals_file = NULL;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100139 options->ip_qos_interactive = -1;
140 options->ip_qos_bulk = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141}
142
Damien Miller4af51302000-04-16 11:18:38 +1000143void
Damien Miller95def091999-11-25 00:26:21 +1100144fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145{
Damien Miller726273e2001-11-12 11:40:11 +1100146 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000147 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000148 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100149
150 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100151 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +1100152 options->protocol = SSH_PROTO_2;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100153 if (options->num_host_key_files == 0) {
154 /* fill default hostkeys for protocols */
155 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100156 options->host_key_files[options->num_host_key_files++] =
157 _PATH_HOST_KEY_FILE;
158 if (options->protocol & SSH_PROTO_2) {
159 options->host_key_files[options->num_host_key_files++] =
160 _PATH_HOST_RSA_KEY_FILE;
161 options->host_key_files[options->num_host_key_files++] =
162 _PATH_HOST_DSA_KEY_FILE;
Damien Millerdd190dd2010-11-11 14:17:02 +1100163#ifdef OPENSSL_HAS_ECC
Damien Millere13cadf2010-09-10 11:15:33 +1000164 options->host_key_files[options->num_host_key_files++] =
165 _PATH_HOST_ECDSA_KEY_FILE;
Damien Millerdd190dd2010-11-11 14:17:02 +1100166#endif
Damien Miller7fc23732002-01-22 23:19:11 +1100167 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100168 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100169 /* No certificates by default */
Damien Miller34132e52000-01-14 15:45:46 +1100170 if (options->num_ports == 0)
171 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
172 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000173 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000174 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000175 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100176 if (options->server_key_bits == -1)
Darren Tucker7499b0c2008-07-02 22:35:43 +1000177 options->server_key_bits = 1024;
Damien Miller95def091999-11-25 00:26:21 +1100178 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000179 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100180 if (options->key_regeneration_time == -1)
181 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000182 if (options->permit_root_login == PERMIT_NOT_SET)
183 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100184 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100185 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100186 if (options->ignore_user_known_hosts == -1)
187 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100188 if (options->print_motd == -1)
189 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000190 if (options->print_lastlog == -1)
191 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100192 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100193 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100194 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100195 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100196 if (options->x11_use_localhost == -1)
197 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000198 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000199 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100200 if (options->strict_modes == -1)
201 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100202 if (options->tcp_keep_alive == -1)
203 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100204 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100205 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100206 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000207 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100208 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100209 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000210 if (options->hostbased_authentication == -1)
211 options->hostbased_authentication = 0;
212 if (options->hostbased_uses_name_from_packet_only == -1)
213 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100214 if (options->rsa_authentication == -1)
215 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100216 if (options->pubkey_authentication == -1)
217 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100218 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000219 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100220 if (options->kerberos_or_local_passwd == -1)
221 options->kerberos_or_local_passwd = 1;
222 if (options->kerberos_ticket_cleanup == -1)
223 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100224 if (options->kerberos_get_afs_token == -1)
225 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000226 if (options->gss_authentication == -1)
227 options->gss_authentication = 0;
228 if (options->gss_cleanup_creds == -1)
229 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100230 if (options->password_authentication == -1)
231 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100232 if (options->kbd_interactive_authentication == -1)
233 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000234 if (options->challenge_response_authentication == -1)
235 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100236 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100237 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000238 if (options->permit_user_env == -1)
239 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100240 if (options->use_login == -1)
241 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000242 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000243 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100244 if (options->allow_tcp_forwarding == -1)
245 options->allow_tcp_forwarding = 1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000246 if (options->allow_agent_forwarding == -1)
247 options->allow_agent_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000248 if (options->gateway_ports == -1)
249 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000250 if (options->max_startups == -1)
251 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000252 if (options->max_startups_rate == -1)
253 options->max_startups_rate = 100; /* 100% */
254 if (options->max_startups_begin == -1)
255 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000256 if (options->max_authtries == -1)
257 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller7207f642008-05-19 15:34:50 +1000258 if (options->max_sessions == -1)
259 options->max_sessions = DEFAULT_SESSIONS_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000260 if (options->use_dns == -1)
261 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000262 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100263 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000264 if (options->client_alive_count_max == -1)
265 options->client_alive_count_max = 3;
Damien Millerd8478b62011-05-29 21:39:36 +1000266 if (options->num_authkeys_files == 0) {
267 options->authorized_keys_files[options->num_authkeys_files++] =
268 xstrdup(_PATH_SSH_USER_PERMITTED_KEYS);
269 options->authorized_keys_files[options->num_authkeys_files++] =
270 xstrdup(_PATH_SSH_USER_PERMITTED_KEYS2);
271 }
Damien Millerd27b9472005-12-13 19:29:02 +1100272 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100273 options->permit_tun = SSH_TUNMODE_NO;
Damien Miller01ed2272008-11-05 16:20:46 +1100274 if (options->zero_knowledge_password_authentication == -1)
275 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100276 if (options->ip_qos_interactive == -1)
277 options->ip_qos_interactive = IPTOS_LOWDELAY;
278 if (options->ip_qos_bulk == -1)
279 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000280
Ben Lindstromfb62a692002-06-06 19:47:11 +0000281 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000282 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000283 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000284
Tim Rice40017b02002-07-14 13:36:49 -0700285#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000286 if (use_privsep && options->compression == 1) {
287 error("This platform does not support both privilege "
288 "separation and compression");
289 error("Compression disabled");
290 options->compression = 0;
291 }
292#endif
293
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294}
295
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100297typedef enum {
298 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100299 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000300 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100301 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100302 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
303 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000304 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100305 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100306 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000307 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100308 sPasswordAuthentication, sKbdInteractiveAuthentication,
309 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000310 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100311 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100312 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000313 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100314 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000315 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000316 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
Damien Miller7207f642008-05-19 15:34:50 +1000317 sMaxStartups, sMaxAuthTries, sMaxSessions,
Damien Miller3a961dc2003-06-03 10:25:48 +1000318 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100319 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Damien Millerec2eaa32011-05-20 18:57:14 +1000320 sClientAliveCountMax, sAuthorizedKeysFile,
Damien Millerd27b9472005-12-13 19:29:02 +1100321 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Damien Millerd8cb1f12008-02-10 22:40:12 +1100322 sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100323 sUsePrivilegeSeparation, sAllowAgentForwarding,
Damien Miller0a80ca12010-02-27 07:55:05 +1100324 sZeroKnowledgePasswordAuthentication, sHostCertificate,
Damien Miller30da3442010-05-10 11:58:03 +1000325 sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
Damien Miller0dac6fb2010-11-20 15:19:38 +1100326 sKexAlgorithms, sIPQoS,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000327 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328} ServerOpCodes;
329
Darren Tucker45150472006-07-12 22:34:17 +1000330#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
331#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
332#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
333
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100335static struct {
336 const char *name;
337 ServerOpCodes opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000338 u_int flags;
Damien Miller95def091999-11-25 00:26:21 +1100339} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100340 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000341#ifdef USE_PAM
Darren Tucker45150472006-07-12 22:34:17 +1000342 { "usepam", sUsePAM, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000343#else
Darren Tucker45150472006-07-12 22:34:17 +1000344 { "usepam", sUnsupported, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000345#endif
Darren Tucker45150472006-07-12 22:34:17 +1000346 { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
Damien Miller726273e2001-11-12 11:40:11 +1100347 /* Standard Options */
Darren Tucker45150472006-07-12 22:34:17 +1000348 { "port", sPort, SSHCFG_GLOBAL },
349 { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
350 { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
351 { "pidfile", sPidFile, SSHCFG_GLOBAL },
352 { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
353 { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
354 { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
Darren Tucker15f94272008-01-01 20:36:56 +1100355 { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000356 { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
357 { "loglevel", sLogLevel, SSHCFG_GLOBAL },
358 { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100359 { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
360 { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
Damien Millerab6de352010-06-26 09:38:45 +1000361 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100362 { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
363 { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000364 { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000365#ifdef KRB5
Darren Tucker1629c072007-02-19 22:25:37 +1100366 { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000367 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
368 { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100369#ifdef USE_AFS
Darren Tucker45150472006-07-12 22:34:17 +1000370 { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000371#else
Darren Tucker45150472006-07-12 22:34:17 +1000372 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker409cb322004-01-05 22:36:51 +1100373#endif
374#else
Darren Tucker1629c072007-02-19 22:25:37 +1100375 { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000376 { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
377 { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
378 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000379#endif
Darren Tucker45150472006-07-12 22:34:17 +1000380 { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
381 { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000382#ifdef GSSAPI
Darren Tucker1629c072007-02-19 22:25:37 +1100383 { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000384 { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000385#else
Darren Tucker1629c072007-02-19 22:25:37 +1100386 { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000387 { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000388#endif
Darren Tucker1629c072007-02-19 22:25:37 +1100389 { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
390 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
Darren Tucker1d75f222007-03-01 21:31:28 +1100391 { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000392 { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
Damien Miller01ed2272008-11-05 16:20:46 +1100393#ifdef JPAKE
394 { "zeroknowledgepasswordauthentication", sZeroKnowledgePasswordAuthentication, SSHCFG_ALL },
395#else
396 { "zeroknowledgepasswordauthentication", sUnsupported, SSHCFG_ALL },
397#endif
Darren Tucker45150472006-07-12 22:34:17 +1000398 { "checkmail", sDeprecated, SSHCFG_GLOBAL },
399 { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
400 { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
401 { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
402 { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
403 { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
404 { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
Damien Millerd1de9952006-07-24 14:05:48 +1000405 { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
406 { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
407 { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000408 { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
409 { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
Damien Miller51bde602008-11-03 19:23:10 +1100410 { "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000411 { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
412 { "uselogin", sUseLogin, SSHCFG_GLOBAL },
413 { "compression", sCompression, SSHCFG_GLOBAL },
414 { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
415 { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
416 { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
Damien Miller4f755cd2008-05-19 14:57:41 +1000417 { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000418 { "allowusers", sAllowUsers, SSHCFG_GLOBAL },
419 { "denyusers", sDenyUsers, SSHCFG_GLOBAL },
420 { "allowgroups", sAllowGroups, SSHCFG_GLOBAL },
421 { "denygroups", sDenyGroups, SSHCFG_GLOBAL },
422 { "ciphers", sCiphers, SSHCFG_GLOBAL },
423 { "macs", sMacs, SSHCFG_GLOBAL },
424 { "protocol", sProtocol, SSHCFG_GLOBAL },
425 { "gatewayports", sGatewayPorts, SSHCFG_ALL },
426 { "subsystem", sSubsystem, SSHCFG_GLOBAL },
427 { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
Damien Miller307c1d12008-06-16 07:56:20 +1000428 { "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
Damien Miller7207f642008-05-19 15:34:50 +1000429 { "maxsessions", sMaxSessions, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100430 { "banner", sBanner, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000431 { "usedns", sUseDNS, SSHCFG_GLOBAL },
432 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
433 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
434 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
435 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
Damien Millerab6de352010-06-26 09:38:45 +1000436 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
Damien Millerd8478b62011-05-29 21:39:36 +1000437 { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000438 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
Darren Tucker45150472006-07-12 22:34:17 +1000439 { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
Damien Millerab6de352010-06-26 09:38:45 +1000440 { "permittunnel", sPermitTunnel, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000441 { "match", sMatch, SSHCFG_ALL },
Damien Miller9b439df2006-07-24 14:04:00 +1000442 { "permitopen", sPermitOpen, SSHCFG_ALL },
Damien Millere2754432006-07-24 14:06:47 +1000443 { "forcecommand", sForceCommand, SSHCFG_ALL },
Damien Millerd8cb1f12008-02-10 22:40:12 +1100444 { "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
Damien Miller0a80ca12010-02-27 07:55:05 +1100445 { "hostcertificate", sHostCertificate, SSHCFG_GLOBAL },
Damien Miller1aed65e2010-03-04 21:53:35 +1100446 { "revokedkeys", sRevokedKeys, SSHCFG_ALL },
447 { "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
Damien Millerab6de352010-06-26 09:38:45 +1000448 { "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
Damien Millerd5f62bf2010-09-24 22:11:14 +1000449 { "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100450 { "ipqos", sIPQoS, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000451 { NULL, sBadOption, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452};
453
Darren Tuckere7140f22008-06-10 23:01:51 +1000454static struct {
455 int val;
456 char *text;
457} tunmode_desc[] = {
458 { SSH_TUNMODE_NO, "no" },
459 { SSH_TUNMODE_POINTOPOINT, "point-to-point" },
460 { SSH_TUNMODE_ETHERNET, "ethernet" },
461 { SSH_TUNMODE_YES, "yes" },
462 { -1, NULL }
463};
464
Damien Miller5428f641999-11-25 11:54:57 +1100465/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000466 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100467 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468
Damien Miller4af51302000-04-16 11:18:38 +1000469static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100470parse_token(const char *cp, const char *filename,
Darren Tucker45150472006-07-12 22:34:17 +1000471 int linenum, u_int *flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000473 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474
Damien Miller95def091999-11-25 00:26:21 +1100475 for (i = 0; keywords[i].name; i++)
Darren Tucker45150472006-07-12 22:34:17 +1000476 if (strcasecmp(cp, keywords[i].name) == 0) {
477 *flags = keywords[i].flags;
Damien Miller95def091999-11-25 00:26:21 +1100478 return keywords[i].opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000479 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000481 error("%s: line %d: Bad configuration option: %s",
482 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100483 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484}
485
Darren Tucker88b6fb22010-01-13 22:44:29 +1100486char *
487derelativise_path(const char *path)
488{
Damien Miller44451d02010-03-26 10:40:04 +1100489 char *expanded, *ret, cwd[MAXPATHLEN];
Darren Tucker88b6fb22010-01-13 22:44:29 +1100490
491 expanded = tilde_expand_filename(path, getuid());
492 if (*expanded == '/')
493 return expanded;
Damien Miller44451d02010-03-26 10:40:04 +1100494 if (getcwd(cwd, sizeof(cwd)) == NULL)
Darren Tucker88b6fb22010-01-13 22:44:29 +1100495 fatal("%s: getcwd: %s", __func__, strerror(errno));
496 xasprintf(&ret, "%s/%s", cwd, expanded);
Darren Tucker88b6fb22010-01-13 22:44:29 +1100497 xfree(expanded);
498 return ret;
499}
500
Ben Lindstrombba81212001-06-25 05:01:22 +0000501static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100502add_listen_addr(ServerOptions *options, char *addr, int port)
Damien Miller34132e52000-01-14 15:45:46 +1100503{
Damien Millereccb9de2005-06-17 12:59:34 +1000504 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100505
506 if (options->num_ports == 0)
507 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100508 if (options->address_family == -1)
509 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000510 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000511 for (i = 0; i < options->num_ports; i++)
512 add_one_listen_addr(options, addr, options->ports[i]);
513 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000514 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000515}
516
Ben Lindstrombba81212001-06-25 05:01:22 +0000517static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100518add_one_listen_addr(ServerOptions *options, char *addr, int port)
Ben Lindstromc510af42001-04-07 17:25:48 +0000519{
520 struct addrinfo hints, *ai, *aitop;
521 char strport[NI_MAXSERV];
522 int gaierr;
523
524 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100525 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000526 hints.ai_socktype = SOCK_STREAM;
527 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100528 snprintf(strport, sizeof strport, "%d", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000529 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
530 fatal("bad addr or host: %s (%s)",
531 addr ? addr : "<NULL>",
Darren Tucker4abde772007-12-29 02:43:51 +1100532 ssh_gai_strerror(gaierr));
Ben Lindstromc510af42001-04-07 17:25:48 +0000533 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
534 ;
535 ai->ai_next = options->listen_addrs;
536 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100537}
538
Darren Tucker45150472006-07-12 22:34:17 +1000539/*
540 * The strategy for the Match blocks is that the config file is parsed twice.
541 *
542 * The first time is at startup. activep is initialized to 1 and the
543 * directives in the global context are processed and acted on. Hitting a
544 * Match directive unsets activep and the directives inside the block are
545 * checked for syntax only.
546 *
547 * The second time is after a connection has been established but before
548 * authentication. activep is initialized to 2 and global config directives
549 * are ignored since they have already been processed. If the criteria in a
550 * Match block is met, activep is set and the subsequent directives
551 * processed and actioned until EOF or another Match block unsets it. Any
552 * options set are copied into the main server config.
553 *
554 * Potential additions/improvements:
555 * - Add Match support for pre-kex directives, eg Protocol, Ciphers.
556 *
557 * - Add a Tag directive (idea from David Leonard) ala pf, eg:
558 * Match Address 192.168.0.*
559 * Tag trusted
560 * Match Group wheel
561 * Tag trusted
562 * Match Tag trusted
563 * AllowTcpForwarding yes
564 * GatewayPorts clientspecified
565 * [...]
566 *
567 * - Add a PermittedChannelRequests directive
568 * Match Group shell
569 * PermittedChannelRequests session,forwarded-tcpip
570 */
571
572static int
Damien Miller565ca3f2006-08-19 00:23:15 +1000573match_cfg_line_group(const char *grps, int line, const char *user)
574{
575 int result = 0;
Damien Miller565ca3f2006-08-19 00:23:15 +1000576 struct passwd *pw;
577
Damien Miller565ca3f2006-08-19 00:23:15 +1000578 if (user == NULL)
579 goto out;
580
581 if ((pw = getpwnam(user)) == NULL) {
582 debug("Can't match group at line %d because user %.100s does "
583 "not exist", line, user);
584 } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
585 debug("Can't Match group because user %.100s not in any group "
586 "at line %d", user, line);
Darren Tuckerb03fd022008-07-04 13:51:12 +1000587 } else if (ga_match_pattern_list(grps) != 1) {
588 debug("user %.100s does not match group list %.100s at line %d",
589 user, grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000590 } else {
Darren Tuckerb03fd022008-07-04 13:51:12 +1000591 debug("user %.100s matched group list %.100s at line %d", user,
592 grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000593 result = 1;
594 }
595out:
596 ga_free();
Damien Miller565ca3f2006-08-19 00:23:15 +1000597 return result;
598}
599
600static int
Darren Tucker45150472006-07-12 22:34:17 +1000601match_cfg_line(char **condition, int line, const char *user, const char *host,
602 const char *address)
603{
604 int result = 1;
605 char *arg, *attrib, *cp = *condition;
606 size_t len;
607
608 if (user == NULL)
609 debug3("checking syntax for 'Match %s'", cp);
610 else
611 debug3("checking match for '%s' user %s host %s addr %s", cp,
612 user ? user : "(null)", host ? host : "(null)",
613 address ? address : "(null)");
614
615 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
616 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
617 error("Missing Match criteria for %s", attrib);
618 return -1;
619 }
620 len = strlen(arg);
621 if (strcasecmp(attrib, "user") == 0) {
622 if (!user) {
623 result = 0;
624 continue;
625 }
626 if (match_pattern_list(user, arg, len, 0) != 1)
627 result = 0;
628 else
629 debug("user %.100s matched 'User %.100s' at "
630 "line %d", user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000631 } else if (strcasecmp(attrib, "group") == 0) {
632 switch (match_cfg_line_group(arg, line, user)) {
633 case -1:
634 return -1;
635 case 0:
636 result = 0;
637 }
Darren Tucker45150472006-07-12 22:34:17 +1000638 } else if (strcasecmp(attrib, "host") == 0) {
639 if (!host) {
640 result = 0;
641 continue;
642 }
643 if (match_hostname(host, arg, len) != 1)
644 result = 0;
645 else
646 debug("connection from %.100s matched 'Host "
647 "%.100s' at line %d", host, arg, line);
648 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tucker7a3935d2008-06-10 22:59:10 +1000649 switch (addr_match_list(address, arg)) {
650 case 1:
Darren Tucker45150472006-07-12 22:34:17 +1000651 debug("connection from %.100s matched 'Address "
652 "%.100s' at line %d", address, arg, line);
Darren Tucker7a3935d2008-06-10 22:59:10 +1000653 break;
654 case 0:
Darren Tucker896ad5a2008-06-11 09:34:46 +1000655 case -1:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000656 result = 0;
657 break;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000658 case -2:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000659 return -1;
660 }
Darren Tucker45150472006-07-12 22:34:17 +1000661 } else {
662 error("Unsupported Match attribute %s", attrib);
663 return -1;
664 }
665 }
666 if (user != NULL)
667 debug3("match %sfound", result ? "" : "not ");
668 *condition = cp;
669 return result;
670}
671
Damien Millere2754432006-07-24 14:06:47 +1000672#define WHITESPACE " \t\r\n"
673
Damien Miller33322122011-06-20 14:43:11 +1000674/* Multistate option parsing */
675struct multistate {
676 char *key;
677 int value;
678};
679static const struct multistate multistate_addressfamily[] = {
680 { "inet", AF_INET },
681 { "inet6", AF_INET6 },
682 { "any", AF_UNSPEC },
683 { NULL, -1 }
684};
685static const struct multistate multistate_permitrootlogin[] = {
686 { "without-password", PERMIT_NO_PASSWD },
687 { "forced-commands-only", PERMIT_FORCED_ONLY },
688 { "yes", PERMIT_YES },
689 { "no", PERMIT_NO },
690 { NULL, -1 }
691};
692static const struct multistate multistate_compression[] = {
693 { "delayed", COMP_DELAYED },
694 { "yes", COMP_ZLIB },
695 { "no", COMP_NONE },
696 { NULL, -1 }
697};
698static const struct multistate multistate_gatewayports[] = {
699 { "clientspecified", 2 },
700 { "yes", 1 },
701 { "no", 0 },
702 { NULL, -1 }
703};
704
Ben Lindstromade03f62001-12-06 18:22:17 +0000705int
706process_server_config_line(ServerOptions *options, char *line,
Darren Tucker45150472006-07-12 22:34:17 +1000707 const char *filename, int linenum, int *activep, const char *user,
708 const char *host, const char *address)
Ben Lindstromade03f62001-12-06 18:22:17 +0000709{
710 char *cp, **charptr, *arg, *p;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100711 int cmdline = 0, *intptr, value, value2, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100712 SyslogFacility *log_facility_ptr;
713 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000714 ServerOpCodes opcode;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100715 int port;
Darren Tucker45150472006-07-12 22:34:17 +1000716 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000717 size_t len;
Damien Miller33322122011-06-20 14:43:11 +1000718 const struct multistate *multistate_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000719
720 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100721 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100722 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000723 /* Ignore leading whitespace */
724 if (*arg == '\0')
725 arg = strdelim(&cp);
726 if (!arg || !*arg || *arg == '#')
727 return 0;
728 intptr = NULL;
729 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000730 opcode = parse_token(arg, filename, linenum, &flags);
731
732 if (activep == NULL) { /* We are processing a command line directive */
733 cmdline = 1;
734 activep = &cmdline;
735 }
736 if (*activep && opcode != sMatch)
737 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
738 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
739 if (user == NULL) {
740 fatal("%s line %d: Directive '%s' is not allowed "
741 "within a Match block", filename, linenum, arg);
742 } else { /* this is a directive we have already processed */
743 while (arg)
744 arg = strdelim(&cp);
745 return 0;
746 }
747 }
748
Ben Lindstromade03f62001-12-06 18:22:17 +0000749 switch (opcode) {
750 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000751 case sUsePAM:
752 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000753 goto parse_flag;
754
755 /* Standard Options */
756 case sBadOption:
757 return -1;
758 case sPort:
759 /* ignore ports from configfile if cmdline specifies ports */
760 if (options->ports_from_cmdline)
761 return 0;
762 if (options->listen_addrs != NULL)
763 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100764 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000765 if (options->num_ports >= MAX_PORTS)
766 fatal("%s line %d: too many ports.",
767 filename, linenum);
768 arg = strdelim(&cp);
769 if (!arg || *arg == '\0')
770 fatal("%s line %d: missing port number.",
771 filename, linenum);
772 options->ports[options->num_ports++] = a2port(arg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100773 if (options->ports[options->num_ports-1] <= 0)
Ben Lindstromade03f62001-12-06 18:22:17 +0000774 fatal("%s line %d: Badly formatted port number.",
775 filename, linenum);
776 break;
777
778 case sServerKeyBits:
779 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000780 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000781 arg = strdelim(&cp);
782 if (!arg || *arg == '\0')
783 fatal("%s line %d: missing integer value.",
784 filename, linenum);
785 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000786 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000787 *intptr = value;
788 break;
789
790 case sLoginGraceTime:
791 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000792 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000793 arg = strdelim(&cp);
794 if (!arg || *arg == '\0')
795 fatal("%s line %d: missing time value.",
796 filename, linenum);
797 if ((value = convtime(arg)) == -1)
798 fatal("%s line %d: invalid time value.",
799 filename, linenum);
800 if (*intptr == -1)
801 *intptr = value;
802 break;
803
804 case sKeyRegenerationTime:
805 intptr = &options->key_regeneration_time;
806 goto parse_time;
807
808 case sListenAddress:
809 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100810 if (arg == NULL || *arg == '\0')
811 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000812 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000813 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
814 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
815 && strchr(p+1, ':') != NULL) {
816 add_listen_addr(options, arg, 0);
817 break;
818 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100819 p = hpdelim(&arg);
820 if (p == NULL)
821 fatal("%s line %d: bad address:port usage",
822 filename, linenum);
823 p = cleanhostname(p);
824 if (arg == NULL)
825 port = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100826 else if ((port = a2port(arg)) <= 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100827 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000828
Damien Millerf91ee4c2005-03-01 21:24:33 +1100829 add_listen_addr(options, p, port);
830
Ben Lindstromade03f62001-12-06 18:22:17 +0000831 break;
832
Darren Tucker0f383232005-01-20 10:57:56 +1100833 case sAddressFamily:
Damien Miller33322122011-06-20 14:43:11 +1000834 intptr = &options->address_family;
835 multistate_ptr = multistate_addressfamily;
836 if (options->listen_addrs != NULL)
837 fatal("%s line %d: address family must be specified "
838 "before ListenAddress.", filename, linenum);
839 parse_multistate:
Darren Tucker0f383232005-01-20 10:57:56 +1100840 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000841 if (!arg || *arg == '\0')
Damien Miller33322122011-06-20 14:43:11 +1000842 fatal("%s line %d: missing argument.",
Damien Miller17b23d82005-05-26 12:11:56 +1000843 filename, linenum);
Damien Miller33322122011-06-20 14:43:11 +1000844 value = -1;
845 for (i = 0; multistate_ptr[i].key != NULL; i++) {
846 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
847 value = multistate_ptr[i].value;
848 break;
849 }
850 }
851 if (value == -1)
852 fatal("%s line %d: unsupported option \"%s\".",
Darren Tucker0f383232005-01-20 10:57:56 +1100853 filename, linenum, arg);
Damien Miller33322122011-06-20 14:43:11 +1000854 if (*activep && *intptr == -1)
Darren Tucker0f383232005-01-20 10:57:56 +1100855 *intptr = value;
856 break;
857
Ben Lindstromade03f62001-12-06 18:22:17 +0000858 case sHostKeyFile:
859 intptr = &options->num_host_key_files;
860 if (*intptr >= MAX_HOSTKEYS)
861 fatal("%s line %d: too many host keys specified (max %d).",
862 filename, linenum, MAX_HOSTKEYS);
863 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000864 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000865 arg = strdelim(&cp);
866 if (!arg || *arg == '\0')
867 fatal("%s line %d: missing file name.",
868 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000869 if (*activep && *charptr == NULL) {
Darren Tucker88b6fb22010-01-13 22:44:29 +1100870 *charptr = derelativise_path(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000871 /* increase optional counter */
872 if (intptr != NULL)
873 *intptr = *intptr + 1;
874 }
875 break;
876
Damien Miller0a80ca12010-02-27 07:55:05 +1100877 case sHostCertificate:
878 intptr = &options->num_host_cert_files;
879 if (*intptr >= MAX_HOSTKEYS)
880 fatal("%s line %d: too many host certificates "
881 "specified (max %d).", filename, linenum,
882 MAX_HOSTCERTS);
883 charptr = &options->host_cert_files[*intptr];
884 goto parse_filename;
885 break;
886
Ben Lindstromade03f62001-12-06 18:22:17 +0000887 case sPidFile:
888 charptr = &options->pid_file;
889 goto parse_filename;
890
891 case sPermitRootLogin:
892 intptr = &options->permit_root_login;
Damien Miller33322122011-06-20 14:43:11 +1000893 multistate_ptr = multistate_permitrootlogin;
894 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +0000895
896 case sIgnoreRhosts:
897 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000898 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000899 arg = strdelim(&cp);
900 if (!arg || *arg == '\0')
901 fatal("%s line %d: missing yes/no argument.",
902 filename, linenum);
903 value = 0; /* silence compiler */
904 if (strcmp(arg, "yes") == 0)
905 value = 1;
906 else if (strcmp(arg, "no") == 0)
907 value = 0;
908 else
909 fatal("%s line %d: Bad yes/no argument: %s",
910 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000911 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000912 *intptr = value;
913 break;
914
915 case sIgnoreUserKnownHosts:
916 intptr = &options->ignore_user_known_hosts;
917 goto parse_flag;
918
Ben Lindstromade03f62001-12-06 18:22:17 +0000919 case sRhostsRSAAuthentication:
920 intptr = &options->rhosts_rsa_authentication;
921 goto parse_flag;
922
923 case sHostbasedAuthentication:
924 intptr = &options->hostbased_authentication;
925 goto parse_flag;
926
927 case sHostbasedUsesNameFromPacketOnly:
928 intptr = &options->hostbased_uses_name_from_packet_only;
929 goto parse_flag;
930
931 case sRSAAuthentication:
932 intptr = &options->rsa_authentication;
933 goto parse_flag;
934
935 case sPubkeyAuthentication:
936 intptr = &options->pubkey_authentication;
937 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000938
Ben Lindstromade03f62001-12-06 18:22:17 +0000939 case sKerberosAuthentication:
940 intptr = &options->kerberos_authentication;
941 goto parse_flag;
942
943 case sKerberosOrLocalPasswd:
944 intptr = &options->kerberos_or_local_passwd;
945 goto parse_flag;
946
947 case sKerberosTicketCleanup:
948 intptr = &options->kerberos_ticket_cleanup;
949 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000950
Darren Tucker22ef5082003-12-31 11:37:34 +1100951 case sKerberosGetAFSToken:
952 intptr = &options->kerberos_get_afs_token;
953 goto parse_flag;
954
Darren Tucker0efd1552003-08-26 11:49:55 +1000955 case sGssAuthentication:
956 intptr = &options->gss_authentication;
957 goto parse_flag;
958
959 case sGssCleanupCreds:
960 intptr = &options->gss_cleanup_creds;
961 goto parse_flag;
962
Ben Lindstromade03f62001-12-06 18:22:17 +0000963 case sPasswordAuthentication:
964 intptr = &options->password_authentication;
965 goto parse_flag;
966
Damien Miller01ed2272008-11-05 16:20:46 +1100967 case sZeroKnowledgePasswordAuthentication:
968 intptr = &options->zero_knowledge_password_authentication;
969 goto parse_flag;
970
Ben Lindstromade03f62001-12-06 18:22:17 +0000971 case sKbdInteractiveAuthentication:
972 intptr = &options->kbd_interactive_authentication;
973 goto parse_flag;
974
975 case sChallengeResponseAuthentication:
976 intptr = &options->challenge_response_authentication;
977 goto parse_flag;
978
979 case sPrintMotd:
980 intptr = &options->print_motd;
981 goto parse_flag;
982
983 case sPrintLastLog:
984 intptr = &options->print_lastlog;
985 goto parse_flag;
986
987 case sX11Forwarding:
988 intptr = &options->x11_forwarding;
989 goto parse_flag;
990
991 case sX11DisplayOffset:
992 intptr = &options->x11_display_offset;
993 goto parse_int;
994
Damien Miller95c249f2002-02-05 12:11:34 +1100995 case sX11UseLocalhost:
996 intptr = &options->x11_use_localhost;
997 goto parse_flag;
998
Ben Lindstromade03f62001-12-06 18:22:17 +0000999 case sXAuthLocation:
1000 charptr = &options->xauth_location;
1001 goto parse_filename;
1002
1003 case sStrictModes:
1004 intptr = &options->strict_modes;
1005 goto parse_flag;
1006
Damien Miller12c150e2003-12-17 16:31:10 +11001007 case sTCPKeepAlive:
1008 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +00001009 goto parse_flag;
1010
1011 case sEmptyPasswd:
1012 intptr = &options->permit_empty_passwd;
1013 goto parse_flag;
1014
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001015 case sPermitUserEnvironment:
1016 intptr = &options->permit_user_env;
1017 goto parse_flag;
1018
Ben Lindstromade03f62001-12-06 18:22:17 +00001019 case sUseLogin:
1020 intptr = &options->use_login;
1021 goto parse_flag;
1022
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001023 case sCompression:
1024 intptr = &options->compression;
Damien Miller33322122011-06-20 14:43:11 +10001025 multistate_ptr = multistate_compression;
1026 goto parse_multistate;
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001027
Ben Lindstromade03f62001-12-06 18:22:17 +00001028 case sGatewayPorts:
1029 intptr = &options->gateway_ports;
Damien Miller33322122011-06-20 14:43:11 +10001030 multistate_ptr = multistate_gatewayports;
1031 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +00001032
Damien Miller3a961dc2003-06-03 10:25:48 +10001033 case sUseDNS:
1034 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001035 goto parse_flag;
1036
1037 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001038 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001039 arg = strdelim(&cp);
1040 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001041 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001042 fatal("%.200s line %d: unsupported log facility '%s'",
1043 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001044 if (*log_facility_ptr == -1)
1045 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001046 break;
1047
1048 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001049 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001050 arg = strdelim(&cp);
1051 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001052 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001053 fatal("%.200s line %d: unsupported log level '%s'",
1054 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001055 if (*log_level_ptr == -1)
1056 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001057 break;
1058
1059 case sAllowTcpForwarding:
1060 intptr = &options->allow_tcp_forwarding;
1061 goto parse_flag;
1062
Damien Miller4f755cd2008-05-19 14:57:41 +10001063 case sAllowAgentForwarding:
1064 intptr = &options->allow_agent_forwarding;
1065 goto parse_flag;
1066
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001067 case sUsePrivilegeSeparation:
1068 intptr = &use_privsep;
1069 goto parse_flag;
1070
Ben Lindstromade03f62001-12-06 18:22:17 +00001071 case sAllowUsers:
1072 while ((arg = strdelim(&cp)) && *arg != '\0') {
1073 if (options->num_allow_users >= MAX_ALLOW_USERS)
1074 fatal("%s line %d: too many allow users.",
1075 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001076 options->allow_users[options->num_allow_users++] =
1077 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001078 }
1079 break;
1080
1081 case sDenyUsers:
1082 while ((arg = strdelim(&cp)) && *arg != '\0') {
1083 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001084 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001085 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001086 options->deny_users[options->num_deny_users++] =
1087 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001088 }
1089 break;
1090
1091 case sAllowGroups:
1092 while ((arg = strdelim(&cp)) && *arg != '\0') {
1093 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1094 fatal("%s line %d: too many allow groups.",
1095 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001096 options->allow_groups[options->num_allow_groups++] =
1097 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001098 }
1099 break;
1100
1101 case sDenyGroups:
1102 while ((arg = strdelim(&cp)) && *arg != '\0') {
1103 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1104 fatal("%s line %d: too many deny groups.",
1105 filename, linenum);
1106 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
1107 }
1108 break;
1109
1110 case sCiphers:
1111 arg = strdelim(&cp);
1112 if (!arg || *arg == '\0')
1113 fatal("%s line %d: Missing argument.", filename, linenum);
1114 if (!ciphers_valid(arg))
1115 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1116 filename, linenum, arg ? arg : "<NONE>");
1117 if (options->ciphers == NULL)
1118 options->ciphers = xstrdup(arg);
1119 break;
1120
1121 case sMacs:
1122 arg = strdelim(&cp);
1123 if (!arg || *arg == '\0')
1124 fatal("%s line %d: Missing argument.", filename, linenum);
1125 if (!mac_valid(arg))
1126 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1127 filename, linenum, arg ? arg : "<NONE>");
1128 if (options->macs == NULL)
1129 options->macs = xstrdup(arg);
1130 break;
1131
Damien Millerd5f62bf2010-09-24 22:11:14 +10001132 case sKexAlgorithms:
1133 arg = strdelim(&cp);
1134 if (!arg || *arg == '\0')
1135 fatal("%s line %d: Missing argument.",
1136 filename, linenum);
1137 if (!kex_names_valid(arg))
1138 fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
1139 filename, linenum, arg ? arg : "<NONE>");
1140 if (options->kex_algorithms == NULL)
1141 options->kex_algorithms = xstrdup(arg);
1142 break;
1143
Ben Lindstromade03f62001-12-06 18:22:17 +00001144 case sProtocol:
1145 intptr = &options->protocol;
1146 arg = strdelim(&cp);
1147 if (!arg || *arg == '\0')
1148 fatal("%s line %d: Missing argument.", filename, linenum);
1149 value = proto_spec(arg);
1150 if (value == SSH_PROTO_UNKNOWN)
1151 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001152 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001153 if (*intptr == SSH_PROTO_UNKNOWN)
1154 *intptr = value;
1155 break;
1156
1157 case sSubsystem:
1158 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1159 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001160 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001161 }
1162 arg = strdelim(&cp);
1163 if (!arg || *arg == '\0')
1164 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001165 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001166 if (!*activep) {
1167 arg = strdelim(&cp);
1168 break;
1169 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001170 for (i = 0; i < options->num_subsystems; i++)
1171 if (strcmp(arg, options->subsystem_name[i]) == 0)
1172 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001173 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001174 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1175 arg = strdelim(&cp);
1176 if (!arg || *arg == '\0')
1177 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001178 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001179 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001180
1181 /* Collect arguments (separate to executable) */
1182 p = xstrdup(arg);
1183 len = strlen(p) + 1;
1184 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1185 len += 1 + strlen(arg);
1186 p = xrealloc(p, 1, len);
1187 strlcat(p, " ", len);
1188 strlcat(p, arg, len);
1189 }
1190 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001191 options->num_subsystems++;
1192 break;
1193
1194 case sMaxStartups:
1195 arg = strdelim(&cp);
1196 if (!arg || *arg == '\0')
1197 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001198 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001199 if ((n = sscanf(arg, "%d:%d:%d",
1200 &options->max_startups_begin,
1201 &options->max_startups_rate,
1202 &options->max_startups)) == 3) {
1203 if (options->max_startups_begin >
1204 options->max_startups ||
1205 options->max_startups_rate > 100 ||
1206 options->max_startups_rate < 1)
1207 fatal("%s line %d: Illegal MaxStartups spec.",
1208 filename, linenum);
1209 } else if (n != 1)
1210 fatal("%s line %d: Illegal MaxStartups spec.",
1211 filename, linenum);
1212 else
1213 options->max_startups = options->max_startups_begin;
1214 break;
1215
Darren Tucker89413db2004-05-24 10:36:23 +10001216 case sMaxAuthTries:
1217 intptr = &options->max_authtries;
1218 goto parse_int;
1219
Damien Miller7207f642008-05-19 15:34:50 +10001220 case sMaxSessions:
1221 intptr = &options->max_sessions;
1222 goto parse_int;
1223
Ben Lindstromade03f62001-12-06 18:22:17 +00001224 case sBanner:
1225 charptr = &options->banner;
1226 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001227
Ben Lindstromade03f62001-12-06 18:22:17 +00001228 /*
1229 * These options can contain %X options expanded at
1230 * connect time, so that you can specify paths like:
1231 *
1232 * AuthorizedKeysFile /etc/ssh_keys/%u
1233 */
1234 case sAuthorizedKeysFile:
Damien Millerd8478b62011-05-29 21:39:36 +10001235 if (*activep && options->num_authkeys_files == 0) {
1236 while ((arg = strdelim(&cp)) && *arg != '\0') {
1237 if (options->num_authkeys_files >=
1238 MAX_AUTHKEYS_FILES)
1239 fatal("%s line %d: "
1240 "too many authorized keys files.",
1241 filename, linenum);
1242 options->authorized_keys_files[
1243 options->num_authkeys_files++] =
1244 tilde_expand_filename(arg, getuid());
1245 }
1246 }
1247 return 0;
1248
Damien Miller30da3442010-05-10 11:58:03 +10001249 case sAuthorizedPrincipalsFile:
1250 charptr = &options->authorized_principals_file;
Damien Millerc4cb47b2010-03-22 05:52:26 +11001251 arg = strdelim(&cp);
1252 if (!arg || *arg == '\0')
1253 fatal("%s line %d: missing file name.",
1254 filename, linenum);
1255 if (*activep && *charptr == NULL) {
Damien Miller4a5f0d32010-03-22 05:53:04 +11001256 *charptr = tilde_expand_filename(arg, getuid());
Damien Millerc4cb47b2010-03-22 05:52:26 +11001257 /* increase optional counter */
1258 if (intptr != NULL)
1259 *intptr = *intptr + 1;
1260 }
1261 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001262
1263 case sClientAliveInterval:
1264 intptr = &options->client_alive_interval;
1265 goto parse_time;
1266
1267 case sClientAliveCountMax:
1268 intptr = &options->client_alive_count_max;
1269 goto parse_int;
1270
Darren Tucker46bc0752004-05-02 22:11:30 +10001271 case sAcceptEnv:
1272 while ((arg = strdelim(&cp)) && *arg != '\0') {
1273 if (strchr(arg, '=') != NULL)
1274 fatal("%s line %d: Invalid environment name.",
1275 filename, linenum);
1276 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1277 fatal("%s line %d: too many allow env.",
1278 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001279 if (!*activep)
1280 break;
Darren Tucker46bc0752004-05-02 22:11:30 +10001281 options->accept_env[options->num_accept_env++] =
1282 xstrdup(arg);
1283 }
1284 break;
1285
Damien Millerd27b9472005-12-13 19:29:02 +11001286 case sPermitTunnel:
1287 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001288 arg = strdelim(&cp);
1289 if (!arg || *arg == '\0')
1290 fatal("%s line %d: Missing yes/point-to-point/"
1291 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001292 value = -1;
1293 for (i = 0; tunmode_desc[i].val != -1; i++)
1294 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1295 value = tunmode_desc[i].val;
1296 break;
1297 }
1298 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001299 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1300 "no argument: %s", filename, linenum, arg);
1301 if (*intptr == -1)
1302 *intptr = value;
1303 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001304
Darren Tucker45150472006-07-12 22:34:17 +10001305 case sMatch:
1306 if (cmdline)
1307 fatal("Match directive not supported as a command-line "
1308 "option");
1309 value = match_cfg_line(&cp, linenum, user, host, address);
1310 if (value < 0)
1311 fatal("%s line %d: Bad Match condition", filename,
1312 linenum);
1313 *activep = value;
1314 break;
1315
Damien Miller9b439df2006-07-24 14:04:00 +10001316 case sPermitOpen:
1317 arg = strdelim(&cp);
1318 if (!arg || *arg == '\0')
1319 fatal("%s line %d: missing PermitOpen specification",
1320 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001321 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001322 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001323 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001324 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001325 options->num_permitted_opens = 0;
1326 }
Damien Miller9b439df2006-07-24 14:04:00 +10001327 break;
1328 }
Damien Millera29b95e2007-01-05 16:28:36 +11001329 if (*activep && n == -1)
1330 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001331 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1332 p = hpdelim(&arg);
1333 if (p == NULL)
1334 fatal("%s line %d: missing host in PermitOpen",
1335 filename, linenum);
1336 p = cleanhostname(p);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001337 if (arg == NULL || (port = a2port(arg)) <= 0)
Damien Millera765cf42006-07-24 14:08:13 +10001338 fatal("%s line %d: bad port number in "
1339 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001340 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001341 options->num_permitted_opens =
1342 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001343 }
Damien Miller9b439df2006-07-24 14:04:00 +10001344 break;
1345
Damien Millere2754432006-07-24 14:06:47 +10001346 case sForceCommand:
1347 if (cp == NULL)
1348 fatal("%.200s line %d: Missing argument.", filename,
1349 linenum);
1350 len = strspn(cp, WHITESPACE);
1351 if (*activep && options->adm_forced_command == NULL)
1352 options->adm_forced_command = xstrdup(cp + len);
1353 return 0;
1354
Damien Millerd8cb1f12008-02-10 22:40:12 +11001355 case sChrootDirectory:
1356 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001357
1358 arg = strdelim(&cp);
1359 if (!arg || *arg == '\0')
1360 fatal("%s line %d: missing file name.",
1361 filename, linenum);
1362 if (*activep && *charptr == NULL)
1363 *charptr = xstrdup(arg);
1364 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001365
Damien Miller1aed65e2010-03-04 21:53:35 +11001366 case sTrustedUserCAKeys:
1367 charptr = &options->trusted_user_ca_keys;
1368 goto parse_filename;
1369
1370 case sRevokedKeys:
1371 charptr = &options->revoked_keys_file;
1372 goto parse_filename;
1373
Damien Miller0dac6fb2010-11-20 15:19:38 +11001374 case sIPQoS:
1375 arg = strdelim(&cp);
1376 if ((value = parse_ipqos(arg)) == -1)
1377 fatal("%s line %d: Bad IPQoS value: %s",
1378 filename, linenum, arg);
1379 arg = strdelim(&cp);
1380 if (arg == NULL)
1381 value2 = value;
1382 else if ((value2 = parse_ipqos(arg)) == -1)
1383 fatal("%s line %d: Bad IPQoS value: %s",
1384 filename, linenum, arg);
1385 if (*activep) {
1386 options->ip_qos_interactive = value;
1387 options->ip_qos_bulk = value2;
1388 }
1389 break;
1390
Ben Lindstromade03f62001-12-06 18:22:17 +00001391 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001392 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001393 filename, linenum, arg);
1394 while (arg)
1395 arg = strdelim(&cp);
1396 break;
1397
Damien Millerf9b3feb2003-05-16 11:38:32 +10001398 case sUnsupported:
1399 logit("%s line %d: Unsupported option %s",
1400 filename, linenum, arg);
1401 while (arg)
1402 arg = strdelim(&cp);
1403 break;
1404
Ben Lindstromade03f62001-12-06 18:22:17 +00001405 default:
1406 fatal("%s line %d: Missing handler for opcode %s (%d)",
1407 filename, linenum, arg, opcode);
1408 }
1409 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1410 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1411 filename, linenum, arg);
1412 return 0;
1413}
1414
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001415/* Reads the server configuration file. */
1416
Damien Miller4af51302000-04-16 11:18:38 +10001417void
Darren Tucker645ab752004-06-25 13:33:20 +10001418load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419{
Darren Tucker645ab752004-06-25 13:33:20 +10001420 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001421 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001422
Darren Tucker645ab752004-06-25 13:33:20 +10001423 debug2("%s: filename %s", __func__, filename);
1424 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001425 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001427 }
Darren Tucker645ab752004-06-25 13:33:20 +10001428 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001429 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001430 /*
1431 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001432 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001433 * line numbers later for error messages
1434 */
1435 if ((cp = strchr(line, '#')) != NULL)
1436 memcpy(cp, "\n", 2);
1437 cp = line + strspn(line, " \t\r");
1438
1439 buffer_append(conf, cp, strlen(cp));
1440 }
1441 buffer_append(conf, "\0", 1);
1442 fclose(f);
1443 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1444}
1445
1446void
Darren Tucker45150472006-07-12 22:34:17 +10001447parse_server_match_config(ServerOptions *options, const char *user,
1448 const char *host, const char *address)
Darren Tucker645ab752004-06-25 13:33:20 +10001449{
Darren Tucker45150472006-07-12 22:34:17 +10001450 ServerOptions mo;
1451
1452 initialize_server_options(&mo);
1453 parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
Darren Tucker1629c072007-02-19 22:25:37 +11001454 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001455}
1456
Darren Tucker1629c072007-02-19 22:25:37 +11001457/* Helper macros */
1458#define M_CP_INTOPT(n) do {\
1459 if (src->n != -1) \
1460 dst->n = src->n; \
1461} while (0)
1462#define M_CP_STROPT(n) do {\
1463 if (src->n != NULL) { \
1464 if (dst->n != NULL) \
1465 xfree(dst->n); \
1466 dst->n = src->n; \
1467 } \
1468} while(0)
Damien Millerd8478b62011-05-29 21:39:36 +10001469#define M_CP_STRARRAYOPT(n, num_n) do {\
1470 if (src->num_n != 0) { \
1471 for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
1472 dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
1473 } \
1474} while(0)
Darren Tucker1629c072007-02-19 22:25:37 +11001475
1476/*
1477 * Copy any supported values that are set.
1478 *
Darren Tucker3b59dfa2009-06-21 17:54:47 +10001479 * If the preauth flag is set, we do not bother copying the string or
Darren Tucker1629c072007-02-19 22:25:37 +11001480 * array values that are not used pre-authentication, because any that we
1481 * do use must be explictly sent in mm_getpwnamallow().
1482 */
Darren Tucker45150472006-07-12 22:34:17 +10001483void
Darren Tucker1629c072007-02-19 22:25:37 +11001484copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001485{
Darren Tucker1629c072007-02-19 22:25:37 +11001486 M_CP_INTOPT(password_authentication);
1487 M_CP_INTOPT(gss_authentication);
1488 M_CP_INTOPT(rsa_authentication);
1489 M_CP_INTOPT(pubkey_authentication);
1490 M_CP_INTOPT(kerberos_authentication);
1491 M_CP_INTOPT(hostbased_authentication);
Damien Millerab6de352010-06-26 09:38:45 +10001492 M_CP_INTOPT(hostbased_uses_name_from_packet_only);
Darren Tucker1629c072007-02-19 22:25:37 +11001493 M_CP_INTOPT(kbd_interactive_authentication);
Damien Miller01ed2272008-11-05 16:20:46 +11001494 M_CP_INTOPT(zero_knowledge_password_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001495 M_CP_INTOPT(permit_root_login);
Damien Miller51bde602008-11-03 19:23:10 +11001496 M_CP_INTOPT(permit_empty_passwd);
Darren Tucker1629c072007-02-19 22:25:37 +11001497
1498 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001499 M_CP_INTOPT(allow_agent_forwarding);
Damien Millerab6de352010-06-26 09:38:45 +10001500 M_CP_INTOPT(permit_tun);
Darren Tucker1629c072007-02-19 22:25:37 +11001501 M_CP_INTOPT(gateway_ports);
1502 M_CP_INTOPT(x11_display_offset);
1503 M_CP_INTOPT(x11_forwarding);
1504 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001505 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001506 M_CP_INTOPT(max_authtries);
Damien Miller0dac6fb2010-11-20 15:19:38 +11001507 M_CP_INTOPT(ip_qos_interactive);
1508 M_CP_INTOPT(ip_qos_bulk);
Darren Tucker1629c072007-02-19 22:25:37 +11001509
Damien Millerf2e407e2011-05-20 19:04:14 +10001510 /* See comment in servconf.h */
1511 COPY_MATCH_STRING_OPTS();
Damien Miller5d74e582011-05-20 19:03:31 +10001512
Damien Millerc2411902011-05-20 19:03:49 +10001513 /*
1514 * The only things that should be below this point are string options
1515 * which are only used after authentication.
1516 */
Damien Miller5d74e582011-05-20 19:03:31 +10001517 if (preauth)
1518 return;
Damien Millerd8478b62011-05-29 21:39:36 +10001519
Damien Miller5d74e582011-05-20 19:03:31 +10001520 M_CP_STROPT(adm_forced_command);
1521 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001522}
1523
Darren Tucker1629c072007-02-19 22:25:37 +11001524#undef M_CP_INTOPT
1525#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +10001526#undef M_CP_STRARRAYOPT
Darren Tucker1629c072007-02-19 22:25:37 +11001527
Darren Tucker45150472006-07-12 22:34:17 +10001528void
1529parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1530 const char *user, const char *host, const char *address)
1531{
1532 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001533 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001534
1535 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1536
Darren Tucker9fbac712004-08-12 22:41:44 +10001537 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker45150472006-07-12 22:34:17 +10001538 active = user ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001539 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001540 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001541 if (process_server_config_line(options, cp, filename,
Darren Tucker45150472006-07-12 22:34:17 +10001542 linenum++, &active, user, host, address) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001543 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001544 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001545 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001546 if (bad_options > 0)
1547 fatal("%s: terminating, %d bad configuration options",
1548 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001549}
Darren Tuckere7140f22008-06-10 23:01:51 +10001550
1551static const char *
1552fmt_intarg(ServerOpCodes code, int val)
1553{
1554 if (code == sAddressFamily) {
1555 switch (val) {
1556 case AF_INET:
1557 return "inet";
1558 case AF_INET6:
1559 return "inet6";
1560 case AF_UNSPEC:
1561 return "any";
1562 default:
1563 return "UNKNOWN";
1564 }
1565 }
1566 if (code == sPermitRootLogin) {
1567 switch (val) {
1568 case PERMIT_NO_PASSWD:
Darren Tuckerff4350e2008-11-11 16:31:05 +11001569 return "without-password";
Darren Tuckere7140f22008-06-10 23:01:51 +10001570 case PERMIT_FORCED_ONLY:
1571 return "forced-commands-only";
1572 case PERMIT_YES:
1573 return "yes";
1574 }
1575 }
1576 if (code == sProtocol) {
1577 switch (val) {
1578 case SSH_PROTO_1:
1579 return "1";
1580 case SSH_PROTO_2:
1581 return "2";
1582 case (SSH_PROTO_1|SSH_PROTO_2):
1583 return "2,1";
1584 default:
1585 return "UNKNOWN";
1586 }
1587 }
1588 if (code == sGatewayPorts && val == 2)
1589 return "clientspecified";
1590 if (code == sCompression && val == COMP_DELAYED)
1591 return "delayed";
1592 switch (val) {
1593 case -1:
1594 return "unset";
1595 case 0:
1596 return "no";
1597 case 1:
1598 return "yes";
1599 }
1600 return "UNKNOWN";
1601}
1602
1603static const char *
1604lookup_opcode_name(ServerOpCodes code)
1605{
1606 u_int i;
1607
1608 for (i = 0; keywords[i].name != NULL; i++)
1609 if (keywords[i].opcode == code)
1610 return(keywords[i].name);
1611 return "UNKNOWN";
1612}
1613
1614static void
1615dump_cfg_int(ServerOpCodes code, int val)
1616{
1617 printf("%s %d\n", lookup_opcode_name(code), val);
1618}
1619
1620static void
1621dump_cfg_fmtint(ServerOpCodes code, int val)
1622{
1623 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1624}
1625
1626static void
1627dump_cfg_string(ServerOpCodes code, const char *val)
1628{
1629 if (val == NULL)
1630 return;
1631 printf("%s %s\n", lookup_opcode_name(code), val);
1632}
1633
1634static void
1635dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1636{
1637 u_int i;
1638
1639 for (i = 0; i < count; i++)
Damien Millerd8478b62011-05-29 21:39:36 +10001640 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1641}
1642
1643static void
1644dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
1645{
1646 u_int i;
1647
1648 printf("%s", lookup_opcode_name(code));
1649 for (i = 0; i < count; i++)
1650 printf(" %s", vals[i]);
1651 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10001652}
1653
1654void
1655dump_config(ServerOptions *o)
1656{
1657 u_int i;
1658 int ret;
1659 struct addrinfo *ai;
1660 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1661
1662 /* these are usually at the top of the config */
1663 for (i = 0; i < o->num_ports; i++)
1664 printf("port %d\n", o->ports[i]);
1665 dump_cfg_fmtint(sProtocol, o->protocol);
1666 dump_cfg_fmtint(sAddressFamily, o->address_family);
1667
1668 /* ListenAddress must be after Port */
1669 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1670 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1671 sizeof(addr), port, sizeof(port),
1672 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1673 error("getnameinfo failed: %.100s",
1674 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1675 strerror(errno));
1676 } else {
1677 if (ai->ai_family == AF_INET6)
1678 printf("listenaddress [%s]:%s\n", addr, port);
1679 else
1680 printf("listenaddress %s:%s\n", addr, port);
1681 }
1682 }
1683
1684 /* integer arguments */
Damien Miller212f0b02008-07-23 17:42:29 +10001685#ifdef USE_PAM
1686 dump_cfg_int(sUsePAM, o->use_pam);
1687#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001688 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1689 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1690 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1691 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1692 dump_cfg_int(sMaxAuthTries, o->max_authtries);
Damien Miller7fc5c0f2008-11-05 16:12:11 +11001693 dump_cfg_int(sMaxSessions, o->max_sessions);
Darren Tuckere7140f22008-06-10 23:01:51 +10001694 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1695 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1696
1697 /* formatted integer arguments */
1698 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1699 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1700 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1701 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1702 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1703 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1704 o->hostbased_uses_name_from_packet_only);
1705 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1706 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
Damien Miller6ef430d2008-07-23 17:40:04 +10001707#ifdef KRB5
Darren Tuckere7140f22008-06-10 23:01:51 +10001708 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1709 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1710 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
Damien Miller6ef430d2008-07-23 17:40:04 +10001711# ifdef USE_AFS
Darren Tuckere7140f22008-06-10 23:01:51 +10001712 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
Damien Miller6ef430d2008-07-23 17:40:04 +10001713# endif
1714#endif
1715#ifdef GSSAPI
Darren Tuckere7140f22008-06-10 23:01:51 +10001716 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1717 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
Damien Miller6ef430d2008-07-23 17:40:04 +10001718#endif
Damien Miller01ed2272008-11-05 16:20:46 +11001719#ifdef JPAKE
1720 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
1721 o->zero_knowledge_password_authentication);
1722#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001723 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1724 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1725 o->kbd_interactive_authentication);
1726 dump_cfg_fmtint(sChallengeResponseAuthentication,
1727 o->challenge_response_authentication);
1728 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1729 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1730 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1731 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1732 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1733 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1734 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1735 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1736 dump_cfg_fmtint(sUseLogin, o->use_login);
1737 dump_cfg_fmtint(sCompression, o->compression);
1738 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1739 dump_cfg_fmtint(sUseDNS, o->use_dns);
1740 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1741 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1742
1743 /* string arguments */
1744 dump_cfg_string(sPidFile, o->pid_file);
1745 dump_cfg_string(sXAuthLocation, o->xauth_location);
1746 dump_cfg_string(sCiphers, o->ciphers);
1747 dump_cfg_string(sMacs, o->macs);
1748 dump_cfg_string(sBanner, o->banner);
Darren Tuckere7140f22008-06-10 23:01:51 +10001749 dump_cfg_string(sForceCommand, o->adm_forced_command);
Darren Tuckerd3300452010-01-10 19:26:43 +11001750 dump_cfg_string(sChrootDirectory, o->chroot_directory);
Damien Miller1aed65e2010-03-04 21:53:35 +11001751 dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
1752 dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
Damien Miller30da3442010-05-10 11:58:03 +10001753 dump_cfg_string(sAuthorizedPrincipalsFile,
1754 o->authorized_principals_file);
Darren Tuckere7140f22008-06-10 23:01:51 +10001755
1756 /* string arguments requiring a lookup */
1757 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1758 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1759
1760 /* string array arguments */
Damien Millerd8478b62011-05-29 21:39:36 +10001761 dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
1762 o->authorized_keys_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001763 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1764 o->host_key_files);
Damien Miller0a80ca12010-02-27 07:55:05 +11001765 dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
1766 o->host_cert_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001767 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1768 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1769 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1770 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1771 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1772
1773 /* other arguments */
1774 for (i = 0; i < o->num_subsystems; i++)
1775 printf("subsystem %s %s\n", o->subsystem_name[i],
1776 o->subsystem_args[i]);
1777
1778 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1779 o->max_startups_rate, o->max_startups);
1780
1781 for (i = 0; tunmode_desc[i].val != -1; i++)
1782 if (tunmode_desc[i].val == o->permit_tun) {
1783 s = tunmode_desc[i].text;
1784 break;
1785 }
1786 dump_cfg_string(sPermitTunnel, s);
1787
Damien Miller91475862011-05-05 14:14:34 +10001788 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
1789 printf("%s\n", iptos2str(o->ip_qos_bulk));
Damien Miller0dac6fb2010-11-20 15:19:38 +11001790
Darren Tuckere7140f22008-06-10 23:01:51 +10001791 channel_print_adm_permitted_opens();
Darren Tuckere7140f22008-06-10 23:01:51 +10001792}