blob: 74710c41fac849686786b0656dd07a46ae4b866d [file] [log] [blame]
Damien Millerd8478b62011-05-29 21:39:36 +10001/* $OpenBSD: servconf.c,v 1.219 2011/05/23 03:30:07 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
Ben Lindstromade03f62001-12-06 18:22:17 +0000674int
675process_server_config_line(ServerOptions *options, char *line,
Darren Tucker45150472006-07-12 22:34:17 +1000676 const char *filename, int linenum, int *activep, const char *user,
677 const char *host, const char *address)
Ben Lindstromade03f62001-12-06 18:22:17 +0000678{
679 char *cp, **charptr, *arg, *p;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100680 int cmdline = 0, *intptr, value, value2, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100681 SyslogFacility *log_facility_ptr;
682 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000683 ServerOpCodes opcode;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100684 int port;
Darren Tucker45150472006-07-12 22:34:17 +1000685 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000686 size_t len;
Ben Lindstromade03f62001-12-06 18:22:17 +0000687
688 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100689 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100690 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000691 /* Ignore leading whitespace */
692 if (*arg == '\0')
693 arg = strdelim(&cp);
694 if (!arg || !*arg || *arg == '#')
695 return 0;
696 intptr = NULL;
697 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000698 opcode = parse_token(arg, filename, linenum, &flags);
699
700 if (activep == NULL) { /* We are processing a command line directive */
701 cmdline = 1;
702 activep = &cmdline;
703 }
704 if (*activep && opcode != sMatch)
705 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
706 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
707 if (user == NULL) {
708 fatal("%s line %d: Directive '%s' is not allowed "
709 "within a Match block", filename, linenum, arg);
710 } else { /* this is a directive we have already processed */
711 while (arg)
712 arg = strdelim(&cp);
713 return 0;
714 }
715 }
716
Ben Lindstromade03f62001-12-06 18:22:17 +0000717 switch (opcode) {
718 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000719 case sUsePAM:
720 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000721 goto parse_flag;
722
723 /* Standard Options */
724 case sBadOption:
725 return -1;
726 case sPort:
727 /* ignore ports from configfile if cmdline specifies ports */
728 if (options->ports_from_cmdline)
729 return 0;
730 if (options->listen_addrs != NULL)
731 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100732 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000733 if (options->num_ports >= MAX_PORTS)
734 fatal("%s line %d: too many ports.",
735 filename, linenum);
736 arg = strdelim(&cp);
737 if (!arg || *arg == '\0')
738 fatal("%s line %d: missing port number.",
739 filename, linenum);
740 options->ports[options->num_ports++] = a2port(arg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100741 if (options->ports[options->num_ports-1] <= 0)
Ben Lindstromade03f62001-12-06 18:22:17 +0000742 fatal("%s line %d: Badly formatted port number.",
743 filename, linenum);
744 break;
745
746 case sServerKeyBits:
747 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000748 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000749 arg = strdelim(&cp);
750 if (!arg || *arg == '\0')
751 fatal("%s line %d: missing integer value.",
752 filename, linenum);
753 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000754 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000755 *intptr = value;
756 break;
757
758 case sLoginGraceTime:
759 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000760 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000761 arg = strdelim(&cp);
762 if (!arg || *arg == '\0')
763 fatal("%s line %d: missing time value.",
764 filename, linenum);
765 if ((value = convtime(arg)) == -1)
766 fatal("%s line %d: invalid time value.",
767 filename, linenum);
768 if (*intptr == -1)
769 *intptr = value;
770 break;
771
772 case sKeyRegenerationTime:
773 intptr = &options->key_regeneration_time;
774 goto parse_time;
775
776 case sListenAddress:
777 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100778 if (arg == NULL || *arg == '\0')
779 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000780 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000781 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
782 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
783 && strchr(p+1, ':') != NULL) {
784 add_listen_addr(options, arg, 0);
785 break;
786 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100787 p = hpdelim(&arg);
788 if (p == NULL)
789 fatal("%s line %d: bad address:port usage",
790 filename, linenum);
791 p = cleanhostname(p);
792 if (arg == NULL)
793 port = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100794 else if ((port = a2port(arg)) <= 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100795 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000796
Damien Millerf91ee4c2005-03-01 21:24:33 +1100797 add_listen_addr(options, p, port);
798
Ben Lindstromade03f62001-12-06 18:22:17 +0000799 break;
800
Darren Tucker0f383232005-01-20 10:57:56 +1100801 case sAddressFamily:
802 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000803 if (!arg || *arg == '\0')
804 fatal("%s line %d: missing address family.",
805 filename, linenum);
Darren Tucker0f383232005-01-20 10:57:56 +1100806 intptr = &options->address_family;
807 if (options->listen_addrs != NULL)
808 fatal("%s line %d: address family must be specified before "
809 "ListenAddress.", filename, linenum);
810 if (strcasecmp(arg, "inet") == 0)
811 value = AF_INET;
812 else if (strcasecmp(arg, "inet6") == 0)
813 value = AF_INET6;
814 else if (strcasecmp(arg, "any") == 0)
815 value = AF_UNSPEC;
816 else
817 fatal("%s line %d: unsupported address family \"%s\".",
818 filename, linenum, arg);
819 if (*intptr == -1)
820 *intptr = value;
821 break;
822
Ben Lindstromade03f62001-12-06 18:22:17 +0000823 case sHostKeyFile:
824 intptr = &options->num_host_key_files;
825 if (*intptr >= MAX_HOSTKEYS)
826 fatal("%s line %d: too many host keys specified (max %d).",
827 filename, linenum, MAX_HOSTKEYS);
828 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000829 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000830 arg = strdelim(&cp);
831 if (!arg || *arg == '\0')
832 fatal("%s line %d: missing file name.",
833 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000834 if (*activep && *charptr == NULL) {
Darren Tucker88b6fb22010-01-13 22:44:29 +1100835 *charptr = derelativise_path(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000836 /* increase optional counter */
837 if (intptr != NULL)
838 *intptr = *intptr + 1;
839 }
840 break;
841
Damien Miller0a80ca12010-02-27 07:55:05 +1100842 case sHostCertificate:
843 intptr = &options->num_host_cert_files;
844 if (*intptr >= MAX_HOSTKEYS)
845 fatal("%s line %d: too many host certificates "
846 "specified (max %d).", filename, linenum,
847 MAX_HOSTCERTS);
848 charptr = &options->host_cert_files[*intptr];
849 goto parse_filename;
850 break;
851
Ben Lindstromade03f62001-12-06 18:22:17 +0000852 case sPidFile:
853 charptr = &options->pid_file;
854 goto parse_filename;
855
856 case sPermitRootLogin:
857 intptr = &options->permit_root_login;
858 arg = strdelim(&cp);
859 if (!arg || *arg == '\0')
860 fatal("%s line %d: missing yes/"
861 "without-password/forced-commands-only/no "
862 "argument.", filename, linenum);
863 value = 0; /* silence compiler */
864 if (strcmp(arg, "without-password") == 0)
865 value = PERMIT_NO_PASSWD;
866 else if (strcmp(arg, "forced-commands-only") == 0)
867 value = PERMIT_FORCED_ONLY;
868 else if (strcmp(arg, "yes") == 0)
869 value = PERMIT_YES;
870 else if (strcmp(arg, "no") == 0)
871 value = PERMIT_NO;
872 else
873 fatal("%s line %d: Bad yes/"
874 "without-password/forced-commands-only/no "
875 "argument: %s", filename, linenum, arg);
Darren Tucker15f94272008-01-01 20:36:56 +1100876 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000877 *intptr = value;
878 break;
879
880 case sIgnoreRhosts:
881 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000882 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000883 arg = strdelim(&cp);
884 if (!arg || *arg == '\0')
885 fatal("%s line %d: missing yes/no argument.",
886 filename, linenum);
887 value = 0; /* silence compiler */
888 if (strcmp(arg, "yes") == 0)
889 value = 1;
890 else if (strcmp(arg, "no") == 0)
891 value = 0;
892 else
893 fatal("%s line %d: Bad yes/no argument: %s",
894 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000895 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000896 *intptr = value;
897 break;
898
899 case sIgnoreUserKnownHosts:
900 intptr = &options->ignore_user_known_hosts;
901 goto parse_flag;
902
Ben Lindstromade03f62001-12-06 18:22:17 +0000903 case sRhostsRSAAuthentication:
904 intptr = &options->rhosts_rsa_authentication;
905 goto parse_flag;
906
907 case sHostbasedAuthentication:
908 intptr = &options->hostbased_authentication;
909 goto parse_flag;
910
911 case sHostbasedUsesNameFromPacketOnly:
912 intptr = &options->hostbased_uses_name_from_packet_only;
913 goto parse_flag;
914
915 case sRSAAuthentication:
916 intptr = &options->rsa_authentication;
917 goto parse_flag;
918
919 case sPubkeyAuthentication:
920 intptr = &options->pubkey_authentication;
921 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000922
Ben Lindstromade03f62001-12-06 18:22:17 +0000923 case sKerberosAuthentication:
924 intptr = &options->kerberos_authentication;
925 goto parse_flag;
926
927 case sKerberosOrLocalPasswd:
928 intptr = &options->kerberos_or_local_passwd;
929 goto parse_flag;
930
931 case sKerberosTicketCleanup:
932 intptr = &options->kerberos_ticket_cleanup;
933 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000934
Darren Tucker22ef5082003-12-31 11:37:34 +1100935 case sKerberosGetAFSToken:
936 intptr = &options->kerberos_get_afs_token;
937 goto parse_flag;
938
Darren Tucker0efd1552003-08-26 11:49:55 +1000939 case sGssAuthentication:
940 intptr = &options->gss_authentication;
941 goto parse_flag;
942
943 case sGssCleanupCreds:
944 intptr = &options->gss_cleanup_creds;
945 goto parse_flag;
946
Ben Lindstromade03f62001-12-06 18:22:17 +0000947 case sPasswordAuthentication:
948 intptr = &options->password_authentication;
949 goto parse_flag;
950
Damien Miller01ed2272008-11-05 16:20:46 +1100951 case sZeroKnowledgePasswordAuthentication:
952 intptr = &options->zero_knowledge_password_authentication;
953 goto parse_flag;
954
Ben Lindstromade03f62001-12-06 18:22:17 +0000955 case sKbdInteractiveAuthentication:
956 intptr = &options->kbd_interactive_authentication;
957 goto parse_flag;
958
959 case sChallengeResponseAuthentication:
960 intptr = &options->challenge_response_authentication;
961 goto parse_flag;
962
963 case sPrintMotd:
964 intptr = &options->print_motd;
965 goto parse_flag;
966
967 case sPrintLastLog:
968 intptr = &options->print_lastlog;
969 goto parse_flag;
970
971 case sX11Forwarding:
972 intptr = &options->x11_forwarding;
973 goto parse_flag;
974
975 case sX11DisplayOffset:
976 intptr = &options->x11_display_offset;
977 goto parse_int;
978
Damien Miller95c249f2002-02-05 12:11:34 +1100979 case sX11UseLocalhost:
980 intptr = &options->x11_use_localhost;
981 goto parse_flag;
982
Ben Lindstromade03f62001-12-06 18:22:17 +0000983 case sXAuthLocation:
984 charptr = &options->xauth_location;
985 goto parse_filename;
986
987 case sStrictModes:
988 intptr = &options->strict_modes;
989 goto parse_flag;
990
Damien Miller12c150e2003-12-17 16:31:10 +1100991 case sTCPKeepAlive:
992 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +0000993 goto parse_flag;
994
995 case sEmptyPasswd:
996 intptr = &options->permit_empty_passwd;
997 goto parse_flag;
998
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000999 case sPermitUserEnvironment:
1000 intptr = &options->permit_user_env;
1001 goto parse_flag;
1002
Ben Lindstromade03f62001-12-06 18:22:17 +00001003 case sUseLogin:
1004 intptr = &options->use_login;
1005 goto parse_flag;
1006
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001007 case sCompression:
1008 intptr = &options->compression;
Damien Miller9786e6e2005-07-26 21:54:56 +10001009 arg = strdelim(&cp);
1010 if (!arg || *arg == '\0')
1011 fatal("%s line %d: missing yes/no/delayed "
1012 "argument.", filename, linenum);
1013 value = 0; /* silence compiler */
1014 if (strcmp(arg, "delayed") == 0)
1015 value = COMP_DELAYED;
1016 else if (strcmp(arg, "yes") == 0)
1017 value = COMP_ZLIB;
1018 else if (strcmp(arg, "no") == 0)
1019 value = COMP_NONE;
1020 else
1021 fatal("%s line %d: Bad yes/no/delayed "
1022 "argument: %s", filename, linenum, arg);
1023 if (*intptr == -1)
1024 *intptr = value;
1025 break;
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001026
Ben Lindstromade03f62001-12-06 18:22:17 +00001027 case sGatewayPorts:
1028 intptr = &options->gateway_ports;
Damien Millerf91ee4c2005-03-01 21:24:33 +11001029 arg = strdelim(&cp);
1030 if (!arg || *arg == '\0')
1031 fatal("%s line %d: missing yes/no/clientspecified "
1032 "argument.", filename, linenum);
1033 value = 0; /* silence compiler */
1034 if (strcmp(arg, "clientspecified") == 0)
1035 value = 2;
1036 else if (strcmp(arg, "yes") == 0)
1037 value = 1;
1038 else if (strcmp(arg, "no") == 0)
1039 value = 0;
1040 else
1041 fatal("%s line %d: Bad yes/no/clientspecified "
1042 "argument: %s", filename, linenum, arg);
Darren Tucker82347a82007-02-25 20:37:52 +11001043 if (*activep && *intptr == -1)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001044 *intptr = value;
1045 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001046
Damien Miller3a961dc2003-06-03 10:25:48 +10001047 case sUseDNS:
1048 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001049 goto parse_flag;
1050
1051 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001052 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001053 arg = strdelim(&cp);
1054 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001055 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001056 fatal("%.200s line %d: unsupported log facility '%s'",
1057 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001058 if (*log_facility_ptr == -1)
1059 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001060 break;
1061
1062 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001063 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001064 arg = strdelim(&cp);
1065 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001066 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001067 fatal("%.200s line %d: unsupported log level '%s'",
1068 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001069 if (*log_level_ptr == -1)
1070 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001071 break;
1072
1073 case sAllowTcpForwarding:
1074 intptr = &options->allow_tcp_forwarding;
1075 goto parse_flag;
1076
Damien Miller4f755cd2008-05-19 14:57:41 +10001077 case sAllowAgentForwarding:
1078 intptr = &options->allow_agent_forwarding;
1079 goto parse_flag;
1080
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001081 case sUsePrivilegeSeparation:
1082 intptr = &use_privsep;
1083 goto parse_flag;
1084
Ben Lindstromade03f62001-12-06 18:22:17 +00001085 case sAllowUsers:
1086 while ((arg = strdelim(&cp)) && *arg != '\0') {
1087 if (options->num_allow_users >= MAX_ALLOW_USERS)
1088 fatal("%s line %d: too many allow users.",
1089 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001090 options->allow_users[options->num_allow_users++] =
1091 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001092 }
1093 break;
1094
1095 case sDenyUsers:
1096 while ((arg = strdelim(&cp)) && *arg != '\0') {
1097 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001098 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001099 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001100 options->deny_users[options->num_deny_users++] =
1101 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001102 }
1103 break;
1104
1105 case sAllowGroups:
1106 while ((arg = strdelim(&cp)) && *arg != '\0') {
1107 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1108 fatal("%s line %d: too many allow groups.",
1109 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001110 options->allow_groups[options->num_allow_groups++] =
1111 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001112 }
1113 break;
1114
1115 case sDenyGroups:
1116 while ((arg = strdelim(&cp)) && *arg != '\0') {
1117 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1118 fatal("%s line %d: too many deny groups.",
1119 filename, linenum);
1120 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
1121 }
1122 break;
1123
1124 case sCiphers:
1125 arg = strdelim(&cp);
1126 if (!arg || *arg == '\0')
1127 fatal("%s line %d: Missing argument.", filename, linenum);
1128 if (!ciphers_valid(arg))
1129 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1130 filename, linenum, arg ? arg : "<NONE>");
1131 if (options->ciphers == NULL)
1132 options->ciphers = xstrdup(arg);
1133 break;
1134
1135 case sMacs:
1136 arg = strdelim(&cp);
1137 if (!arg || *arg == '\0')
1138 fatal("%s line %d: Missing argument.", filename, linenum);
1139 if (!mac_valid(arg))
1140 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1141 filename, linenum, arg ? arg : "<NONE>");
1142 if (options->macs == NULL)
1143 options->macs = xstrdup(arg);
1144 break;
1145
Damien Millerd5f62bf2010-09-24 22:11:14 +10001146 case sKexAlgorithms:
1147 arg = strdelim(&cp);
1148 if (!arg || *arg == '\0')
1149 fatal("%s line %d: Missing argument.",
1150 filename, linenum);
1151 if (!kex_names_valid(arg))
1152 fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
1153 filename, linenum, arg ? arg : "<NONE>");
1154 if (options->kex_algorithms == NULL)
1155 options->kex_algorithms = xstrdup(arg);
1156 break;
1157
Ben Lindstromade03f62001-12-06 18:22:17 +00001158 case sProtocol:
1159 intptr = &options->protocol;
1160 arg = strdelim(&cp);
1161 if (!arg || *arg == '\0')
1162 fatal("%s line %d: Missing argument.", filename, linenum);
1163 value = proto_spec(arg);
1164 if (value == SSH_PROTO_UNKNOWN)
1165 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001166 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001167 if (*intptr == SSH_PROTO_UNKNOWN)
1168 *intptr = value;
1169 break;
1170
1171 case sSubsystem:
1172 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1173 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001174 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001175 }
1176 arg = strdelim(&cp);
1177 if (!arg || *arg == '\0')
1178 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001179 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001180 if (!*activep) {
1181 arg = strdelim(&cp);
1182 break;
1183 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001184 for (i = 0; i < options->num_subsystems; i++)
1185 if (strcmp(arg, options->subsystem_name[i]) == 0)
1186 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001187 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001188 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1189 arg = strdelim(&cp);
1190 if (!arg || *arg == '\0')
1191 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001192 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001193 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001194
1195 /* Collect arguments (separate to executable) */
1196 p = xstrdup(arg);
1197 len = strlen(p) + 1;
1198 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1199 len += 1 + strlen(arg);
1200 p = xrealloc(p, 1, len);
1201 strlcat(p, " ", len);
1202 strlcat(p, arg, len);
1203 }
1204 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001205 options->num_subsystems++;
1206 break;
1207
1208 case sMaxStartups:
1209 arg = strdelim(&cp);
1210 if (!arg || *arg == '\0')
1211 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001212 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001213 if ((n = sscanf(arg, "%d:%d:%d",
1214 &options->max_startups_begin,
1215 &options->max_startups_rate,
1216 &options->max_startups)) == 3) {
1217 if (options->max_startups_begin >
1218 options->max_startups ||
1219 options->max_startups_rate > 100 ||
1220 options->max_startups_rate < 1)
1221 fatal("%s line %d: Illegal MaxStartups spec.",
1222 filename, linenum);
1223 } else if (n != 1)
1224 fatal("%s line %d: Illegal MaxStartups spec.",
1225 filename, linenum);
1226 else
1227 options->max_startups = options->max_startups_begin;
1228 break;
1229
Darren Tucker89413db2004-05-24 10:36:23 +10001230 case sMaxAuthTries:
1231 intptr = &options->max_authtries;
1232 goto parse_int;
1233
Damien Miller7207f642008-05-19 15:34:50 +10001234 case sMaxSessions:
1235 intptr = &options->max_sessions;
1236 goto parse_int;
1237
Ben Lindstromade03f62001-12-06 18:22:17 +00001238 case sBanner:
1239 charptr = &options->banner;
1240 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001241
Ben Lindstromade03f62001-12-06 18:22:17 +00001242 /*
1243 * These options can contain %X options expanded at
1244 * connect time, so that you can specify paths like:
1245 *
1246 * AuthorizedKeysFile /etc/ssh_keys/%u
1247 */
1248 case sAuthorizedKeysFile:
Damien Millerd8478b62011-05-29 21:39:36 +10001249 if (*activep && options->num_authkeys_files == 0) {
1250 while ((arg = strdelim(&cp)) && *arg != '\0') {
1251 if (options->num_authkeys_files >=
1252 MAX_AUTHKEYS_FILES)
1253 fatal("%s line %d: "
1254 "too many authorized keys files.",
1255 filename, linenum);
1256 options->authorized_keys_files[
1257 options->num_authkeys_files++] =
1258 tilde_expand_filename(arg, getuid());
1259 }
1260 }
1261 return 0;
1262
Damien Miller30da3442010-05-10 11:58:03 +10001263 case sAuthorizedPrincipalsFile:
1264 charptr = &options->authorized_principals_file;
Damien Millerc4cb47b2010-03-22 05:52:26 +11001265 arg = strdelim(&cp);
1266 if (!arg || *arg == '\0')
1267 fatal("%s line %d: missing file name.",
1268 filename, linenum);
1269 if (*activep && *charptr == NULL) {
Damien Miller4a5f0d32010-03-22 05:53:04 +11001270 *charptr = tilde_expand_filename(arg, getuid());
Damien Millerc4cb47b2010-03-22 05:52:26 +11001271 /* increase optional counter */
1272 if (intptr != NULL)
1273 *intptr = *intptr + 1;
1274 }
1275 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001276
1277 case sClientAliveInterval:
1278 intptr = &options->client_alive_interval;
1279 goto parse_time;
1280
1281 case sClientAliveCountMax:
1282 intptr = &options->client_alive_count_max;
1283 goto parse_int;
1284
Darren Tucker46bc0752004-05-02 22:11:30 +10001285 case sAcceptEnv:
1286 while ((arg = strdelim(&cp)) && *arg != '\0') {
1287 if (strchr(arg, '=') != NULL)
1288 fatal("%s line %d: Invalid environment name.",
1289 filename, linenum);
1290 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1291 fatal("%s line %d: too many allow env.",
1292 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001293 if (!*activep)
1294 break;
Darren Tucker46bc0752004-05-02 22:11:30 +10001295 options->accept_env[options->num_accept_env++] =
1296 xstrdup(arg);
1297 }
1298 break;
1299
Damien Millerd27b9472005-12-13 19:29:02 +11001300 case sPermitTunnel:
1301 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001302 arg = strdelim(&cp);
1303 if (!arg || *arg == '\0')
1304 fatal("%s line %d: Missing yes/point-to-point/"
1305 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001306 value = -1;
1307 for (i = 0; tunmode_desc[i].val != -1; i++)
1308 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1309 value = tunmode_desc[i].val;
1310 break;
1311 }
1312 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001313 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1314 "no argument: %s", filename, linenum, arg);
1315 if (*intptr == -1)
1316 *intptr = value;
1317 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001318
Darren Tucker45150472006-07-12 22:34:17 +10001319 case sMatch:
1320 if (cmdline)
1321 fatal("Match directive not supported as a command-line "
1322 "option");
1323 value = match_cfg_line(&cp, linenum, user, host, address);
1324 if (value < 0)
1325 fatal("%s line %d: Bad Match condition", filename,
1326 linenum);
1327 *activep = value;
1328 break;
1329
Damien Miller9b439df2006-07-24 14:04:00 +10001330 case sPermitOpen:
1331 arg = strdelim(&cp);
1332 if (!arg || *arg == '\0')
1333 fatal("%s line %d: missing PermitOpen specification",
1334 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001335 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001336 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001337 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001338 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001339 options->num_permitted_opens = 0;
1340 }
Damien Miller9b439df2006-07-24 14:04:00 +10001341 break;
1342 }
Damien Millera29b95e2007-01-05 16:28:36 +11001343 if (*activep && n == -1)
1344 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001345 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1346 p = hpdelim(&arg);
1347 if (p == NULL)
1348 fatal("%s line %d: missing host in PermitOpen",
1349 filename, linenum);
1350 p = cleanhostname(p);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001351 if (arg == NULL || (port = a2port(arg)) <= 0)
Damien Millera765cf42006-07-24 14:08:13 +10001352 fatal("%s line %d: bad port number in "
1353 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001354 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001355 options->num_permitted_opens =
1356 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001357 }
Damien Miller9b439df2006-07-24 14:04:00 +10001358 break;
1359
Damien Millere2754432006-07-24 14:06:47 +10001360 case sForceCommand:
1361 if (cp == NULL)
1362 fatal("%.200s line %d: Missing argument.", filename,
1363 linenum);
1364 len = strspn(cp, WHITESPACE);
1365 if (*activep && options->adm_forced_command == NULL)
1366 options->adm_forced_command = xstrdup(cp + len);
1367 return 0;
1368
Damien Millerd8cb1f12008-02-10 22:40:12 +11001369 case sChrootDirectory:
1370 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001371
1372 arg = strdelim(&cp);
1373 if (!arg || *arg == '\0')
1374 fatal("%s line %d: missing file name.",
1375 filename, linenum);
1376 if (*activep && *charptr == NULL)
1377 *charptr = xstrdup(arg);
1378 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001379
Damien Miller1aed65e2010-03-04 21:53:35 +11001380 case sTrustedUserCAKeys:
1381 charptr = &options->trusted_user_ca_keys;
1382 goto parse_filename;
1383
1384 case sRevokedKeys:
1385 charptr = &options->revoked_keys_file;
1386 goto parse_filename;
1387
Damien Miller0dac6fb2010-11-20 15:19:38 +11001388 case sIPQoS:
1389 arg = strdelim(&cp);
1390 if ((value = parse_ipqos(arg)) == -1)
1391 fatal("%s line %d: Bad IPQoS value: %s",
1392 filename, linenum, arg);
1393 arg = strdelim(&cp);
1394 if (arg == NULL)
1395 value2 = value;
1396 else if ((value2 = parse_ipqos(arg)) == -1)
1397 fatal("%s line %d: Bad IPQoS value: %s",
1398 filename, linenum, arg);
1399 if (*activep) {
1400 options->ip_qos_interactive = value;
1401 options->ip_qos_bulk = value2;
1402 }
1403 break;
1404
Ben Lindstromade03f62001-12-06 18:22:17 +00001405 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001406 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001407 filename, linenum, arg);
1408 while (arg)
1409 arg = strdelim(&cp);
1410 break;
1411
Damien Millerf9b3feb2003-05-16 11:38:32 +10001412 case sUnsupported:
1413 logit("%s line %d: Unsupported option %s",
1414 filename, linenum, arg);
1415 while (arg)
1416 arg = strdelim(&cp);
1417 break;
1418
Ben Lindstromade03f62001-12-06 18:22:17 +00001419 default:
1420 fatal("%s line %d: Missing handler for opcode %s (%d)",
1421 filename, linenum, arg, opcode);
1422 }
1423 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1424 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1425 filename, linenum, arg);
1426 return 0;
1427}
1428
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429/* Reads the server configuration file. */
1430
Damien Miller4af51302000-04-16 11:18:38 +10001431void
Darren Tucker645ab752004-06-25 13:33:20 +10001432load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001433{
Darren Tucker645ab752004-06-25 13:33:20 +10001434 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001435 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436
Darren Tucker645ab752004-06-25 13:33:20 +10001437 debug2("%s: filename %s", __func__, filename);
1438 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001439 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001440 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001441 }
Darren Tucker645ab752004-06-25 13:33:20 +10001442 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001443 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001444 /*
1445 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001446 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001447 * line numbers later for error messages
1448 */
1449 if ((cp = strchr(line, '#')) != NULL)
1450 memcpy(cp, "\n", 2);
1451 cp = line + strspn(line, " \t\r");
1452
1453 buffer_append(conf, cp, strlen(cp));
1454 }
1455 buffer_append(conf, "\0", 1);
1456 fclose(f);
1457 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1458}
1459
1460void
Darren Tucker45150472006-07-12 22:34:17 +10001461parse_server_match_config(ServerOptions *options, const char *user,
1462 const char *host, const char *address)
Darren Tucker645ab752004-06-25 13:33:20 +10001463{
Darren Tucker45150472006-07-12 22:34:17 +10001464 ServerOptions mo;
1465
1466 initialize_server_options(&mo);
1467 parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
Darren Tucker1629c072007-02-19 22:25:37 +11001468 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001469}
1470
Darren Tucker1629c072007-02-19 22:25:37 +11001471/* Helper macros */
1472#define M_CP_INTOPT(n) do {\
1473 if (src->n != -1) \
1474 dst->n = src->n; \
1475} while (0)
1476#define M_CP_STROPT(n) do {\
1477 if (src->n != NULL) { \
1478 if (dst->n != NULL) \
1479 xfree(dst->n); \
1480 dst->n = src->n; \
1481 } \
1482} while(0)
Damien Millerd8478b62011-05-29 21:39:36 +10001483#define M_CP_STRARRAYOPT(n, num_n) do {\
1484 if (src->num_n != 0) { \
1485 for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
1486 dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
1487 } \
1488} while(0)
Darren Tucker1629c072007-02-19 22:25:37 +11001489
1490/*
1491 * Copy any supported values that are set.
1492 *
Darren Tucker3b59dfa2009-06-21 17:54:47 +10001493 * If the preauth flag is set, we do not bother copying the string or
Darren Tucker1629c072007-02-19 22:25:37 +11001494 * array values that are not used pre-authentication, because any that we
1495 * do use must be explictly sent in mm_getpwnamallow().
1496 */
Darren Tucker45150472006-07-12 22:34:17 +10001497void
Darren Tucker1629c072007-02-19 22:25:37 +11001498copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001499{
Darren Tucker1629c072007-02-19 22:25:37 +11001500 M_CP_INTOPT(password_authentication);
1501 M_CP_INTOPT(gss_authentication);
1502 M_CP_INTOPT(rsa_authentication);
1503 M_CP_INTOPT(pubkey_authentication);
1504 M_CP_INTOPT(kerberos_authentication);
1505 M_CP_INTOPT(hostbased_authentication);
Damien Millerab6de352010-06-26 09:38:45 +10001506 M_CP_INTOPT(hostbased_uses_name_from_packet_only);
Darren Tucker1629c072007-02-19 22:25:37 +11001507 M_CP_INTOPT(kbd_interactive_authentication);
Damien Miller01ed2272008-11-05 16:20:46 +11001508 M_CP_INTOPT(zero_knowledge_password_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001509 M_CP_INTOPT(permit_root_login);
Damien Miller51bde602008-11-03 19:23:10 +11001510 M_CP_INTOPT(permit_empty_passwd);
Darren Tucker1629c072007-02-19 22:25:37 +11001511
1512 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001513 M_CP_INTOPT(allow_agent_forwarding);
Damien Millerab6de352010-06-26 09:38:45 +10001514 M_CP_INTOPT(permit_tun);
Darren Tucker1629c072007-02-19 22:25:37 +11001515 M_CP_INTOPT(gateway_ports);
1516 M_CP_INTOPT(x11_display_offset);
1517 M_CP_INTOPT(x11_forwarding);
1518 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001519 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001520 M_CP_INTOPT(max_authtries);
Damien Miller0dac6fb2010-11-20 15:19:38 +11001521 M_CP_INTOPT(ip_qos_interactive);
1522 M_CP_INTOPT(ip_qos_bulk);
Darren Tucker1629c072007-02-19 22:25:37 +11001523
Damien Millerf2e407e2011-05-20 19:04:14 +10001524 /* See comment in servconf.h */
1525 COPY_MATCH_STRING_OPTS();
Damien Miller5d74e582011-05-20 19:03:31 +10001526
Damien Millerc2411902011-05-20 19:03:49 +10001527 /*
1528 * The only things that should be below this point are string options
1529 * which are only used after authentication.
1530 */
Damien Miller5d74e582011-05-20 19:03:31 +10001531 if (preauth)
1532 return;
Damien Millerd8478b62011-05-29 21:39:36 +10001533
Damien Miller5d74e582011-05-20 19:03:31 +10001534 M_CP_STROPT(adm_forced_command);
1535 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001536}
1537
Darren Tucker1629c072007-02-19 22:25:37 +11001538#undef M_CP_INTOPT
1539#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +10001540#undef M_CP_STRARRAYOPT
Darren Tucker1629c072007-02-19 22:25:37 +11001541
Darren Tucker45150472006-07-12 22:34:17 +10001542void
1543parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1544 const char *user, const char *host, const char *address)
1545{
1546 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001547 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001548
1549 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1550
Darren Tucker9fbac712004-08-12 22:41:44 +10001551 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker45150472006-07-12 22:34:17 +10001552 active = user ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001553 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001554 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001555 if (process_server_config_line(options, cp, filename,
Darren Tucker45150472006-07-12 22:34:17 +10001556 linenum++, &active, user, host, address) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001557 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001558 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001559 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001560 if (bad_options > 0)
1561 fatal("%s: terminating, %d bad configuration options",
1562 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563}
Darren Tuckere7140f22008-06-10 23:01:51 +10001564
1565static const char *
1566fmt_intarg(ServerOpCodes code, int val)
1567{
1568 if (code == sAddressFamily) {
1569 switch (val) {
1570 case AF_INET:
1571 return "inet";
1572 case AF_INET6:
1573 return "inet6";
1574 case AF_UNSPEC:
1575 return "any";
1576 default:
1577 return "UNKNOWN";
1578 }
1579 }
1580 if (code == sPermitRootLogin) {
1581 switch (val) {
1582 case PERMIT_NO_PASSWD:
Darren Tuckerff4350e2008-11-11 16:31:05 +11001583 return "without-password";
Darren Tuckere7140f22008-06-10 23:01:51 +10001584 case PERMIT_FORCED_ONLY:
1585 return "forced-commands-only";
1586 case PERMIT_YES:
1587 return "yes";
1588 }
1589 }
1590 if (code == sProtocol) {
1591 switch (val) {
1592 case SSH_PROTO_1:
1593 return "1";
1594 case SSH_PROTO_2:
1595 return "2";
1596 case (SSH_PROTO_1|SSH_PROTO_2):
1597 return "2,1";
1598 default:
1599 return "UNKNOWN";
1600 }
1601 }
1602 if (code == sGatewayPorts && val == 2)
1603 return "clientspecified";
1604 if (code == sCompression && val == COMP_DELAYED)
1605 return "delayed";
1606 switch (val) {
1607 case -1:
1608 return "unset";
1609 case 0:
1610 return "no";
1611 case 1:
1612 return "yes";
1613 }
1614 return "UNKNOWN";
1615}
1616
1617static const char *
1618lookup_opcode_name(ServerOpCodes code)
1619{
1620 u_int i;
1621
1622 for (i = 0; keywords[i].name != NULL; i++)
1623 if (keywords[i].opcode == code)
1624 return(keywords[i].name);
1625 return "UNKNOWN";
1626}
1627
1628static void
1629dump_cfg_int(ServerOpCodes code, int val)
1630{
1631 printf("%s %d\n", lookup_opcode_name(code), val);
1632}
1633
1634static void
1635dump_cfg_fmtint(ServerOpCodes code, int val)
1636{
1637 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1638}
1639
1640static void
1641dump_cfg_string(ServerOpCodes code, const char *val)
1642{
1643 if (val == NULL)
1644 return;
1645 printf("%s %s\n", lookup_opcode_name(code), val);
1646}
1647
1648static void
1649dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1650{
1651 u_int i;
1652
1653 for (i = 0; i < count; i++)
Damien Millerd8478b62011-05-29 21:39:36 +10001654 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1655}
1656
1657static void
1658dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
1659{
1660 u_int i;
1661
1662 printf("%s", lookup_opcode_name(code));
1663 for (i = 0; i < count; i++)
1664 printf(" %s", vals[i]);
1665 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10001666}
1667
1668void
1669dump_config(ServerOptions *o)
1670{
1671 u_int i;
1672 int ret;
1673 struct addrinfo *ai;
1674 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1675
1676 /* these are usually at the top of the config */
1677 for (i = 0; i < o->num_ports; i++)
1678 printf("port %d\n", o->ports[i]);
1679 dump_cfg_fmtint(sProtocol, o->protocol);
1680 dump_cfg_fmtint(sAddressFamily, o->address_family);
1681
1682 /* ListenAddress must be after Port */
1683 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1684 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1685 sizeof(addr), port, sizeof(port),
1686 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1687 error("getnameinfo failed: %.100s",
1688 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1689 strerror(errno));
1690 } else {
1691 if (ai->ai_family == AF_INET6)
1692 printf("listenaddress [%s]:%s\n", addr, port);
1693 else
1694 printf("listenaddress %s:%s\n", addr, port);
1695 }
1696 }
1697
1698 /* integer arguments */
Damien Miller212f0b02008-07-23 17:42:29 +10001699#ifdef USE_PAM
1700 dump_cfg_int(sUsePAM, o->use_pam);
1701#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001702 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1703 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1704 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1705 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1706 dump_cfg_int(sMaxAuthTries, o->max_authtries);
Damien Miller7fc5c0f2008-11-05 16:12:11 +11001707 dump_cfg_int(sMaxSessions, o->max_sessions);
Darren Tuckere7140f22008-06-10 23:01:51 +10001708 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1709 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1710
1711 /* formatted integer arguments */
1712 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1713 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1714 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1715 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1716 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1717 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1718 o->hostbased_uses_name_from_packet_only);
1719 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1720 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
Damien Miller6ef430d2008-07-23 17:40:04 +10001721#ifdef KRB5
Darren Tuckere7140f22008-06-10 23:01:51 +10001722 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1723 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1724 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
Damien Miller6ef430d2008-07-23 17:40:04 +10001725# ifdef USE_AFS
Darren Tuckere7140f22008-06-10 23:01:51 +10001726 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
Damien Miller6ef430d2008-07-23 17:40:04 +10001727# endif
1728#endif
1729#ifdef GSSAPI
Darren Tuckere7140f22008-06-10 23:01:51 +10001730 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1731 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
Damien Miller6ef430d2008-07-23 17:40:04 +10001732#endif
Damien Miller01ed2272008-11-05 16:20:46 +11001733#ifdef JPAKE
1734 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
1735 o->zero_knowledge_password_authentication);
1736#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001737 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1738 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1739 o->kbd_interactive_authentication);
1740 dump_cfg_fmtint(sChallengeResponseAuthentication,
1741 o->challenge_response_authentication);
1742 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1743 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1744 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1745 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1746 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1747 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1748 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1749 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1750 dump_cfg_fmtint(sUseLogin, o->use_login);
1751 dump_cfg_fmtint(sCompression, o->compression);
1752 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1753 dump_cfg_fmtint(sUseDNS, o->use_dns);
1754 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1755 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1756
1757 /* string arguments */
1758 dump_cfg_string(sPidFile, o->pid_file);
1759 dump_cfg_string(sXAuthLocation, o->xauth_location);
1760 dump_cfg_string(sCiphers, o->ciphers);
1761 dump_cfg_string(sMacs, o->macs);
1762 dump_cfg_string(sBanner, o->banner);
Darren Tuckere7140f22008-06-10 23:01:51 +10001763 dump_cfg_string(sForceCommand, o->adm_forced_command);
Darren Tuckerd3300452010-01-10 19:26:43 +11001764 dump_cfg_string(sChrootDirectory, o->chroot_directory);
Damien Miller1aed65e2010-03-04 21:53:35 +11001765 dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
1766 dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
Damien Miller30da3442010-05-10 11:58:03 +10001767 dump_cfg_string(sAuthorizedPrincipalsFile,
1768 o->authorized_principals_file);
Darren Tuckere7140f22008-06-10 23:01:51 +10001769
1770 /* string arguments requiring a lookup */
1771 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1772 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1773
1774 /* string array arguments */
Damien Millerd8478b62011-05-29 21:39:36 +10001775 dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
1776 o->authorized_keys_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001777 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1778 o->host_key_files);
Damien Miller0a80ca12010-02-27 07:55:05 +11001779 dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
1780 o->host_cert_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001781 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1782 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1783 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1784 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1785 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1786
1787 /* other arguments */
1788 for (i = 0; i < o->num_subsystems; i++)
1789 printf("subsystem %s %s\n", o->subsystem_name[i],
1790 o->subsystem_args[i]);
1791
1792 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1793 o->max_startups_rate, o->max_startups);
1794
1795 for (i = 0; tunmode_desc[i].val != -1; i++)
1796 if (tunmode_desc[i].val == o->permit_tun) {
1797 s = tunmode_desc[i].text;
1798 break;
1799 }
1800 dump_cfg_string(sPermitTunnel, s);
1801
Damien Miller91475862011-05-05 14:14:34 +10001802 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
1803 printf("%s\n", iptos2str(o->ip_qos_bulk));
Damien Miller0dac6fb2010-11-20 15:19:38 +11001804
Darren Tuckere7140f22008-06-10 23:01:51 +10001805 channel_print_adm_permitted_opens();
Darren Tuckere7140f22008-06-10 23:01:51 +10001806}