blob: f4b7dd58ba774f43d5fb73c055d9f23b58843eca [file] [log] [blame]
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001
Darren Tuckerbb6cc072012-09-17 13:25:06 +10002/* $OpenBSD: servconf.c,v 1.230 2012/09/13 23:37:36 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Millere3b60b52006-07-10 21:08:03 +100016#include <sys/types.h>
17#include <sys/socket.h>
18
Damien Miller0dac6fb2010-11-20 15:19:38 +110019#include <netinet/in.h>
20#include <netinet/in_systm.h>
21#include <netinet/ip.h>
22
Damien Millerb8fe89c2006-07-24 14:51:00 +100023#include <netdb.h>
Damien Miller565ca3f2006-08-19 00:23:15 +100024#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100025#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100026#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100027#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100028#include <signal.h>
Damien Millere6b3b612006-07-24 14:01:23 +100029#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <stdarg.h>
Darren Tuckere7140f22008-06-10 23:01:51 +100031#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100032
Damien Millerb84886b2008-05-19 15:05:07 +100033#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100034#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100037#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038#include "servconf.h"
Damien Miller78928792000-04-12 20:17:38 +100039#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000041#include "misc.h"
42#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000044#include "kex.h"
45#include "mac.h"
Darren Tucker45150472006-07-12 22:34:17 +100046#include "match.h"
Damien Miller9b439df2006-07-24 14:04:00 +100047#include "channels.h"
Damien Miller565ca3f2006-08-19 00:23:15 +100048#include "groupaccess.h"
Darren Tuckerfbcf8272012-05-19 19:37:01 +100049#include "canohost.h"
50#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051
Damien Miller3dc71ad2009-01-28 16:31:22 +110052static void add_listen_addr(ServerOptions *, char *, int);
53static void add_one_listen_addr(ServerOptions *, char *, int);
Damien Miller34132e52000-01-14 15:45:46 +110054
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000055/* Use of privilege separation or not */
56extern int use_privsep;
Darren Tucker45150472006-07-12 22:34:17 +100057extern Buffer cfg;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059/* Initializes the server options to their default values. */
60
Damien Miller4af51302000-04-16 11:18:38 +100061void
Damien Miller95def091999-11-25 00:26:21 +110062initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063{
Damien Miller95def091999-11-25 00:26:21 +110064 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110065
66 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100067 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110068
69 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110070 options->num_ports = 0;
71 options->ports_from_cmdline = 0;
72 options->listen_addrs = NULL;
Darren Tucker0f383232005-01-20 10:57:56 +110073 options->address_family = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110074 options->num_host_key_files = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +110075 options->num_host_cert_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100076 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110077 options->server_key_bits = -1;
78 options->login_grace_time = -1;
79 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000080 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110081 options->ignore_rhosts = -1;
82 options->ignore_user_known_hosts = -1;
83 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000084 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110085 options->x11_forwarding = -1;
86 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110087 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100088 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110089 options->strict_modes = -1;
Damien Miller12c150e2003-12-17 16:31:10 +110090 options->tcp_keep_alive = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110091 options->log_facility = SYSLOG_FACILITY_NOT_SET;
92 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110093 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000094 options->hostbased_authentication = -1;
95 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110096 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110097 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110098 options->kerberos_authentication = -1;
99 options->kerberos_or_local_passwd = -1;
100 options->kerberos_ticket_cleanup = -1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100101 options->kerberos_get_afs_token = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000102 options->gss_authentication=-1;
103 options->gss_cleanup_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +1100104 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100105 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000106 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100107 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000108 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +1100109 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000110 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100111 options->allow_tcp_forwarding = -1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000112 options->allow_agent_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +1100113 options->num_allow_users = 0;
114 options->num_deny_users = 0;
115 options->num_allow_groups = 0;
116 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +1000117 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000118 options->macs = NULL;
Damien Millerd5f62bf2010-09-24 22:11:14 +1000119 options->kex_algorithms = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000120 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000121 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000122 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000123 options->max_startups_begin = -1;
124 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000125 options->max_startups = -1;
Darren Tucker89413db2004-05-24 10:36:23 +1000126 options->max_authtries = -1;
Damien Miller7207f642008-05-19 15:34:50 +1000127 options->max_sessions = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000128 options->banner = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +1000129 options->use_dns = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000130 options->client_alive_interval = -1;
131 options->client_alive_count_max = -1;
Damien Millerd8478b62011-05-29 21:39:36 +1000132 options->num_authkeys_files = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +1000133 options->num_accept_env = 0;
Damien Millerd27b9472005-12-13 19:29:02 +1100134 options->permit_tun = -1;
Damien Millera765cf42006-07-24 14:08:13 +1000135 options->num_permitted_opens = -1;
Damien Millere2754432006-07-24 14:06:47 +1000136 options->adm_forced_command = NULL;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100137 options->chroot_directory = NULL;
Damien Miller01ed2272008-11-05 16:20:46 +1100138 options->zero_knowledge_password_authentication = -1;
Damien Miller1aed65e2010-03-04 21:53:35 +1100139 options->revoked_keys_file = NULL;
140 options->trusted_user_ca_keys = NULL;
Damien Miller30da3442010-05-10 11:58:03 +1000141 options->authorized_principals_file = NULL;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100142 options->ip_qos_interactive = -1;
143 options->ip_qos_bulk = -1;
Damien Miller23528812012-04-22 11:24:43 +1000144 options->version_addendum = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145}
146
Damien Miller4af51302000-04-16 11:18:38 +1000147void
Damien Miller95def091999-11-25 00:26:21 +1100148fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Damien Miller726273e2001-11-12 11:40:11 +1100150 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000151 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000152 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100153
154 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100155 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +1100156 options->protocol = SSH_PROTO_2;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 if (options->num_host_key_files == 0) {
158 /* fill default hostkeys for protocols */
159 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100160 options->host_key_files[options->num_host_key_files++] =
161 _PATH_HOST_KEY_FILE;
162 if (options->protocol & SSH_PROTO_2) {
163 options->host_key_files[options->num_host_key_files++] =
164 _PATH_HOST_RSA_KEY_FILE;
165 options->host_key_files[options->num_host_key_files++] =
166 _PATH_HOST_DSA_KEY_FILE;
Damien Millerdd190dd2010-11-11 14:17:02 +1100167#ifdef OPENSSL_HAS_ECC
Damien Millere13cadf2010-09-10 11:15:33 +1000168 options->host_key_files[options->num_host_key_files++] =
169 _PATH_HOST_ECDSA_KEY_FILE;
Damien Millerdd190dd2010-11-11 14:17:02 +1100170#endif
Damien Miller7fc23732002-01-22 23:19:11 +1100171 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100172 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100173 /* No certificates by default */
Damien Miller34132e52000-01-14 15:45:46 +1100174 if (options->num_ports == 0)
175 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
176 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000177 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000178 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000179 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100180 if (options->server_key_bits == -1)
Darren Tucker7499b0c2008-07-02 22:35:43 +1000181 options->server_key_bits = 1024;
Damien Miller95def091999-11-25 00:26:21 +1100182 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000183 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100184 if (options->key_regeneration_time == -1)
185 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000186 if (options->permit_root_login == PERMIT_NOT_SET)
187 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100188 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100189 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100190 if (options->ignore_user_known_hosts == -1)
191 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100192 if (options->print_motd == -1)
193 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000194 if (options->print_lastlog == -1)
195 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100196 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100197 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100198 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100199 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100200 if (options->x11_use_localhost == -1)
201 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000202 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000203 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100204 if (options->strict_modes == -1)
205 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100206 if (options->tcp_keep_alive == -1)
207 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100208 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100209 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100210 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000211 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100212 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100213 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000214 if (options->hostbased_authentication == -1)
215 options->hostbased_authentication = 0;
216 if (options->hostbased_uses_name_from_packet_only == -1)
217 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100218 if (options->rsa_authentication == -1)
219 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100220 if (options->pubkey_authentication == -1)
221 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100222 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000223 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100224 if (options->kerberos_or_local_passwd == -1)
225 options->kerberos_or_local_passwd = 1;
226 if (options->kerberos_ticket_cleanup == -1)
227 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100228 if (options->kerberos_get_afs_token == -1)
229 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000230 if (options->gss_authentication == -1)
231 options->gss_authentication = 0;
232 if (options->gss_cleanup_creds == -1)
233 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100234 if (options->password_authentication == -1)
235 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100236 if (options->kbd_interactive_authentication == -1)
237 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000238 if (options->challenge_response_authentication == -1)
239 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100240 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100241 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000242 if (options->permit_user_env == -1)
243 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100244 if (options->use_login == -1)
245 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000246 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000247 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100248 if (options->allow_tcp_forwarding == -1)
249 options->allow_tcp_forwarding = 1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000250 if (options->allow_agent_forwarding == -1)
251 options->allow_agent_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000252 if (options->gateway_ports == -1)
253 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000254 if (options->max_startups == -1)
255 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000256 if (options->max_startups_rate == -1)
257 options->max_startups_rate = 100; /* 100% */
258 if (options->max_startups_begin == -1)
259 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000260 if (options->max_authtries == -1)
261 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller7207f642008-05-19 15:34:50 +1000262 if (options->max_sessions == -1)
263 options->max_sessions = DEFAULT_SESSIONS_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000264 if (options->use_dns == -1)
265 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000266 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100267 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000268 if (options->client_alive_count_max == -1)
269 options->client_alive_count_max = 3;
Damien Millerd8478b62011-05-29 21:39:36 +1000270 if (options->num_authkeys_files == 0) {
271 options->authorized_keys_files[options->num_authkeys_files++] =
272 xstrdup(_PATH_SSH_USER_PERMITTED_KEYS);
273 options->authorized_keys_files[options->num_authkeys_files++] =
274 xstrdup(_PATH_SSH_USER_PERMITTED_KEYS2);
275 }
Damien Millerd27b9472005-12-13 19:29:02 +1100276 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100277 options->permit_tun = SSH_TUNMODE_NO;
Damien Miller01ed2272008-11-05 16:20:46 +1100278 if (options->zero_knowledge_password_authentication == -1)
279 options->zero_knowledge_password_authentication = 0;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100280 if (options->ip_qos_interactive == -1)
281 options->ip_qos_interactive = IPTOS_LOWDELAY;
282 if (options->ip_qos_bulk == -1)
283 options->ip_qos_bulk = IPTOS_THROUGHPUT;
Damien Miller23528812012-04-22 11:24:43 +1000284 if (options->version_addendum == NULL)
285 options->version_addendum = xstrdup("");
Ben Lindstromfb62a692002-06-06 19:47:11 +0000286 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000287 if (use_privsep == -1)
Damien Miller5a5c2b92012-07-31 12:21:34 +1000288 use_privsep = PRIVSEP_NOSANDBOX;
Damien Miller4903eb42002-06-21 16:20:44 +1000289
Tim Rice40017b02002-07-14 13:36:49 -0700290#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000291 if (use_privsep && options->compression == 1) {
292 error("This platform does not support both privilege "
293 "separation and compression");
294 error("Compression disabled");
295 options->compression = 0;
296 }
297#endif
298
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299}
300
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100302typedef enum {
303 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100304 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000305 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100306 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100307 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
308 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000309 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100310 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100311 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000312 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100313 sPasswordAuthentication, sKbdInteractiveAuthentication,
314 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000315 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100316 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100317 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000318 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100319 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000320 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000321 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
Damien Miller7207f642008-05-19 15:34:50 +1000322 sMaxStartups, sMaxAuthTries, sMaxSessions,
Damien Miller3a961dc2003-06-03 10:25:48 +1000323 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100324 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Damien Millerec2eaa32011-05-20 18:57:14 +1000325 sClientAliveCountMax, sAuthorizedKeysFile,
Damien Millerd27b9472005-12-13 19:29:02 +1100326 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Damien Millerd8cb1f12008-02-10 22:40:12 +1100327 sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
Darren Tucker7bd98e72010-01-10 10:31:12 +1100328 sUsePrivilegeSeparation, sAllowAgentForwarding,
Damien Miller0a80ca12010-02-27 07:55:05 +1100329 sZeroKnowledgePasswordAuthentication, sHostCertificate,
Damien Miller30da3442010-05-10 11:58:03 +1000330 sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
Damien Miller23528812012-04-22 11:24:43 +1000331 sKexAlgorithms, sIPQoS, sVersionAddendum,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000332 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333} ServerOpCodes;
334
Darren Tucker45150472006-07-12 22:34:17 +1000335#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
336#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
337#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
338
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100340static struct {
341 const char *name;
342 ServerOpCodes opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000343 u_int flags;
Damien Miller95def091999-11-25 00:26:21 +1100344} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100345 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000346#ifdef USE_PAM
Darren Tucker45150472006-07-12 22:34:17 +1000347 { "usepam", sUsePAM, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000348#else
Darren Tucker45150472006-07-12 22:34:17 +1000349 { "usepam", sUnsupported, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000350#endif
Darren Tucker45150472006-07-12 22:34:17 +1000351 { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
Damien Miller726273e2001-11-12 11:40:11 +1100352 /* Standard Options */
Darren Tucker45150472006-07-12 22:34:17 +1000353 { "port", sPort, SSHCFG_GLOBAL },
354 { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
355 { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
356 { "pidfile", sPidFile, SSHCFG_GLOBAL },
357 { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
358 { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
359 { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
Darren Tucker15f94272008-01-01 20:36:56 +1100360 { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000361 { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
362 { "loglevel", sLogLevel, SSHCFG_GLOBAL },
363 { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100364 { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
365 { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
Damien Millerab6de352010-06-26 09:38:45 +1000366 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100367 { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
368 { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000369 { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000370#ifdef KRB5
Darren Tucker1629c072007-02-19 22:25:37 +1100371 { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000372 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
373 { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100374#ifdef USE_AFS
Darren Tucker45150472006-07-12 22:34:17 +1000375 { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000376#else
Darren Tucker45150472006-07-12 22:34:17 +1000377 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker409cb322004-01-05 22:36:51 +1100378#endif
379#else
Darren Tucker1629c072007-02-19 22:25:37 +1100380 { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000381 { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
382 { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
383 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000384#endif
Darren Tucker45150472006-07-12 22:34:17 +1000385 { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
386 { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000387#ifdef GSSAPI
Darren Tucker1629c072007-02-19 22:25:37 +1100388 { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000389 { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000390#else
Darren Tucker1629c072007-02-19 22:25:37 +1100391 { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000392 { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000393#endif
Darren Tucker1629c072007-02-19 22:25:37 +1100394 { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
395 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
Darren Tucker1d75f222007-03-01 21:31:28 +1100396 { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000397 { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
Damien Miller01ed2272008-11-05 16:20:46 +1100398#ifdef JPAKE
399 { "zeroknowledgepasswordauthentication", sZeroKnowledgePasswordAuthentication, SSHCFG_ALL },
400#else
401 { "zeroknowledgepasswordauthentication", sUnsupported, SSHCFG_ALL },
402#endif
Darren Tucker45150472006-07-12 22:34:17 +1000403 { "checkmail", sDeprecated, SSHCFG_GLOBAL },
404 { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
405 { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
406 { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
407 { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
408 { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
409 { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
Damien Millerd1de9952006-07-24 14:05:48 +1000410 { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
411 { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
412 { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000413 { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
414 { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
Damien Miller51bde602008-11-03 19:23:10 +1100415 { "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000416 { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
417 { "uselogin", sUseLogin, SSHCFG_GLOBAL },
418 { "compression", sCompression, SSHCFG_GLOBAL },
419 { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
420 { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
421 { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
Damien Miller4f755cd2008-05-19 14:57:41 +1000422 { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
Damien Millerc24da772012-06-20 21:53:58 +1000423 { "allowusers", sAllowUsers, SSHCFG_ALL },
424 { "denyusers", sDenyUsers, SSHCFG_ALL },
425 { "allowgroups", sAllowGroups, SSHCFG_ALL },
426 { "denygroups", sDenyGroups, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000427 { "ciphers", sCiphers, SSHCFG_GLOBAL },
428 { "macs", sMacs, SSHCFG_GLOBAL },
429 { "protocol", sProtocol, SSHCFG_GLOBAL },
430 { "gatewayports", sGatewayPorts, SSHCFG_ALL },
431 { "subsystem", sSubsystem, SSHCFG_GLOBAL },
432 { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
Damien Miller307c1d12008-06-16 07:56:20 +1000433 { "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
Damien Miller7207f642008-05-19 15:34:50 +1000434 { "maxsessions", sMaxSessions, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100435 { "banner", sBanner, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000436 { "usedns", sUseDNS, SSHCFG_GLOBAL },
437 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
438 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
439 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
440 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
Damien Millerab6de352010-06-26 09:38:45 +1000441 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
Damien Millerd8478b62011-05-29 21:39:36 +1000442 { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000443 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
Damien Millerc24da772012-06-20 21:53:58 +1000444 { "acceptenv", sAcceptEnv, SSHCFG_ALL },
Damien Millerab6de352010-06-26 09:38:45 +1000445 { "permittunnel", sPermitTunnel, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000446 { "match", sMatch, SSHCFG_ALL },
Damien Miller9b439df2006-07-24 14:04:00 +1000447 { "permitopen", sPermitOpen, SSHCFG_ALL },
Damien Millere2754432006-07-24 14:06:47 +1000448 { "forcecommand", sForceCommand, SSHCFG_ALL },
Damien Millerd8cb1f12008-02-10 22:40:12 +1100449 { "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
Damien Miller0a80ca12010-02-27 07:55:05 +1100450 { "hostcertificate", sHostCertificate, SSHCFG_GLOBAL },
Damien Miller1aed65e2010-03-04 21:53:35 +1100451 { "revokedkeys", sRevokedKeys, SSHCFG_ALL },
452 { "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
Damien Millerab6de352010-06-26 09:38:45 +1000453 { "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
Damien Millerd5f62bf2010-09-24 22:11:14 +1000454 { "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL },
Damien Miller0dac6fb2010-11-20 15:19:38 +1100455 { "ipqos", sIPQoS, SSHCFG_ALL },
Damien Miller23528812012-04-22 11:24:43 +1000456 { "versionaddendum", sVersionAddendum, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000457 { NULL, sBadOption, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458};
459
Darren Tuckere7140f22008-06-10 23:01:51 +1000460static struct {
461 int val;
462 char *text;
463} tunmode_desc[] = {
464 { SSH_TUNMODE_NO, "no" },
465 { SSH_TUNMODE_POINTOPOINT, "point-to-point" },
466 { SSH_TUNMODE_ETHERNET, "ethernet" },
467 { SSH_TUNMODE_YES, "yes" },
468 { -1, NULL }
469};
470
Damien Miller5428f641999-11-25 11:54:57 +1100471/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000472 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100473 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474
Damien Miller4af51302000-04-16 11:18:38 +1000475static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100476parse_token(const char *cp, const char *filename,
Darren Tucker45150472006-07-12 22:34:17 +1000477 int linenum, u_int *flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000478{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000479 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Damien Miller95def091999-11-25 00:26:21 +1100481 for (i = 0; keywords[i].name; i++)
Darren Tucker45150472006-07-12 22:34:17 +1000482 if (strcasecmp(cp, keywords[i].name) == 0) {
483 *flags = keywords[i].flags;
Damien Miller95def091999-11-25 00:26:21 +1100484 return keywords[i].opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000485 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000487 error("%s: line %d: Bad configuration option: %s",
488 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100489 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490}
491
Darren Tucker88b6fb22010-01-13 22:44:29 +1100492char *
493derelativise_path(const char *path)
494{
Damien Miller44451d02010-03-26 10:40:04 +1100495 char *expanded, *ret, cwd[MAXPATHLEN];
Darren Tucker88b6fb22010-01-13 22:44:29 +1100496
497 expanded = tilde_expand_filename(path, getuid());
498 if (*expanded == '/')
499 return expanded;
Damien Miller44451d02010-03-26 10:40:04 +1100500 if (getcwd(cwd, sizeof(cwd)) == NULL)
Darren Tucker88b6fb22010-01-13 22:44:29 +1100501 fatal("%s: getcwd: %s", __func__, strerror(errno));
502 xasprintf(&ret, "%s/%s", cwd, expanded);
Darren Tucker88b6fb22010-01-13 22:44:29 +1100503 xfree(expanded);
504 return ret;
505}
506
Ben Lindstrombba81212001-06-25 05:01:22 +0000507static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100508add_listen_addr(ServerOptions *options, char *addr, int port)
Damien Miller34132e52000-01-14 15:45:46 +1100509{
Damien Millereccb9de2005-06-17 12:59:34 +1000510 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100511
512 if (options->num_ports == 0)
513 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100514 if (options->address_family == -1)
515 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000516 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000517 for (i = 0; i < options->num_ports; i++)
518 add_one_listen_addr(options, addr, options->ports[i]);
519 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000520 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000521}
522
Ben Lindstrombba81212001-06-25 05:01:22 +0000523static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100524add_one_listen_addr(ServerOptions *options, char *addr, int port)
Ben Lindstromc510af42001-04-07 17:25:48 +0000525{
526 struct addrinfo hints, *ai, *aitop;
527 char strport[NI_MAXSERV];
528 int gaierr;
529
530 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100531 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000532 hints.ai_socktype = SOCK_STREAM;
533 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100534 snprintf(strport, sizeof strport, "%d", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000535 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
536 fatal("bad addr or host: %s (%s)",
537 addr ? addr : "<NULL>",
Darren Tucker4abde772007-12-29 02:43:51 +1100538 ssh_gai_strerror(gaierr));
Ben Lindstromc510af42001-04-07 17:25:48 +0000539 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
540 ;
541 ai->ai_next = options->listen_addrs;
542 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100543}
544
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000545struct connection_info *
546get_connection_info(int populate, int use_dns)
547{
548 static struct connection_info ci;
549
550 if (!populate)
551 return &ci;
552 ci.host = get_canonical_hostname(use_dns);
553 ci.address = get_remote_ipaddr();
554 ci.laddress = get_local_ipaddr(packet_get_connection_in());
555 ci.lport = get_local_port();
556 return &ci;
557}
558
Darren Tucker45150472006-07-12 22:34:17 +1000559/*
560 * The strategy for the Match blocks is that the config file is parsed twice.
561 *
562 * The first time is at startup. activep is initialized to 1 and the
563 * directives in the global context are processed and acted on. Hitting a
564 * Match directive unsets activep and the directives inside the block are
565 * checked for syntax only.
566 *
567 * The second time is after a connection has been established but before
568 * authentication. activep is initialized to 2 and global config directives
569 * are ignored since they have already been processed. If the criteria in a
570 * Match block is met, activep is set and the subsequent directives
571 * processed and actioned until EOF or another Match block unsets it. Any
572 * options set are copied into the main server config.
573 *
574 * Potential additions/improvements:
575 * - Add Match support for pre-kex directives, eg Protocol, Ciphers.
576 *
577 * - Add a Tag directive (idea from David Leonard) ala pf, eg:
578 * Match Address 192.168.0.*
579 * Tag trusted
580 * Match Group wheel
581 * Tag trusted
582 * Match Tag trusted
583 * AllowTcpForwarding yes
584 * GatewayPorts clientspecified
585 * [...]
586 *
587 * - Add a PermittedChannelRequests directive
588 * Match Group shell
589 * PermittedChannelRequests session,forwarded-tcpip
590 */
591
592static int
Damien Miller565ca3f2006-08-19 00:23:15 +1000593match_cfg_line_group(const char *grps, int line, const char *user)
594{
595 int result = 0;
Damien Miller565ca3f2006-08-19 00:23:15 +1000596 struct passwd *pw;
597
Damien Miller565ca3f2006-08-19 00:23:15 +1000598 if (user == NULL)
599 goto out;
600
601 if ((pw = getpwnam(user)) == NULL) {
602 debug("Can't match group at line %d because user %.100s does "
603 "not exist", line, user);
604 } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
605 debug("Can't Match group because user %.100s not in any group "
606 "at line %d", user, line);
Darren Tuckerb03fd022008-07-04 13:51:12 +1000607 } else if (ga_match_pattern_list(grps) != 1) {
608 debug("user %.100s does not match group list %.100s at line %d",
609 user, grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000610 } else {
Darren Tuckerb03fd022008-07-04 13:51:12 +1000611 debug("user %.100s matched group list %.100s at line %d", user,
612 grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000613 result = 1;
614 }
615out:
616 ga_free();
Damien Miller565ca3f2006-08-19 00:23:15 +1000617 return result;
618}
619
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000620/*
Darren Tuckerbb6cc072012-09-17 13:25:06 +1000621 * All of the attributes on a single Match line are ANDed together, so we need
622 * to check every * attribute and set the result to zero if any attribute does
623 * not match.
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000624 */
Damien Miller565ca3f2006-08-19 00:23:15 +1000625static int
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000626match_cfg_line(char **condition, int line, struct connection_info *ci)
Darren Tucker45150472006-07-12 22:34:17 +1000627{
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000628 int result = 1, port;
Darren Tucker45150472006-07-12 22:34:17 +1000629 char *arg, *attrib, *cp = *condition;
630 size_t len;
631
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000632 if (ci == NULL)
Darren Tucker45150472006-07-12 22:34:17 +1000633 debug3("checking syntax for 'Match %s'", cp);
634 else
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000635 debug3("checking match for '%s' user %s host %s addr %s "
636 "laddr %s lport %d", cp, ci->user ? ci->user : "(null)",
637 ci->host ? ci->host : "(null)",
638 ci->address ? ci->address : "(null)",
639 ci->laddress ? ci->laddress : "(null)", ci->lport);
Darren Tucker45150472006-07-12 22:34:17 +1000640
641 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
642 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
643 error("Missing Match criteria for %s", attrib);
644 return -1;
645 }
646 len = strlen(arg);
647 if (strcasecmp(attrib, "user") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000648 if (ci == NULL || ci->user == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000649 result = 0;
650 continue;
651 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000652 if (match_pattern_list(ci->user, arg, len, 0) != 1)
Darren Tucker45150472006-07-12 22:34:17 +1000653 result = 0;
654 else
655 debug("user %.100s matched 'User %.100s' at "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000656 "line %d", ci->user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000657 } else if (strcasecmp(attrib, "group") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000658 if (ci == NULL || ci->user == NULL) {
659 result = 0;
660 continue;
661 }
662 switch (match_cfg_line_group(arg, line, ci->user)) {
Damien Miller565ca3f2006-08-19 00:23:15 +1000663 case -1:
664 return -1;
665 case 0:
666 result = 0;
667 }
Darren Tucker45150472006-07-12 22:34:17 +1000668 } else if (strcasecmp(attrib, "host") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000669 if (ci == NULL || ci->host == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000670 result = 0;
671 continue;
672 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000673 if (match_hostname(ci->host, arg, len) != 1)
Darren Tucker45150472006-07-12 22:34:17 +1000674 result = 0;
675 else
676 debug("connection from %.100s matched 'Host "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000677 "%.100s' at line %d", ci->host, arg, line);
Darren Tucker45150472006-07-12 22:34:17 +1000678 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000679 if (ci == NULL || ci->address == NULL) {
680 result = 0;
681 continue;
682 }
683 switch (addr_match_list(ci->address, arg)) {
Darren Tucker7a3935d2008-06-10 22:59:10 +1000684 case 1:
Darren Tucker45150472006-07-12 22:34:17 +1000685 debug("connection from %.100s matched 'Address "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000686 "%.100s' at line %d", ci->address, arg, line);
Darren Tucker7a3935d2008-06-10 22:59:10 +1000687 break;
688 case 0:
Darren Tucker896ad5a2008-06-11 09:34:46 +1000689 case -1:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000690 result = 0;
691 break;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000692 case -2:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000693 return -1;
694 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000695 } else if (strcasecmp(attrib, "localaddress") == 0){
696 if (ci == NULL || ci->laddress == NULL) {
697 result = 0;
698 continue;
699 }
700 switch (addr_match_list(ci->laddress, arg)) {
701 case 1:
702 debug("connection from %.100s matched "
703 "'LocalAddress %.100s' at line %d",
704 ci->laddress, arg, line);
705 break;
706 case 0:
707 case -1:
708 result = 0;
709 break;
710 case -2:
711 return -1;
712 }
713 } else if (strcasecmp(attrib, "localport") == 0) {
714 if ((port = a2port(arg)) == -1) {
715 error("Invalid LocalPort '%s' on Match line",
716 arg);
717 return -1;
718 }
719 if (ci == NULL || ci->lport == 0) {
720 result = 0;
721 continue;
722 }
723 /* TODO support port lists */
724 if (port == ci->lport)
725 debug("connection from %.100s matched "
726 "'LocalPort %d' at line %d",
727 ci->laddress, port, line);
728 else
729 result = 0;
Darren Tucker45150472006-07-12 22:34:17 +1000730 } else {
731 error("Unsupported Match attribute %s", attrib);
732 return -1;
733 }
734 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000735 if (ci != NULL)
Darren Tucker45150472006-07-12 22:34:17 +1000736 debug3("match %sfound", result ? "" : "not ");
737 *condition = cp;
738 return result;
739}
740
Damien Millere2754432006-07-24 14:06:47 +1000741#define WHITESPACE " \t\r\n"
742
Damien Miller33322122011-06-20 14:43:11 +1000743/* Multistate option parsing */
744struct multistate {
745 char *key;
746 int value;
747};
748static const struct multistate multistate_addressfamily[] = {
749 { "inet", AF_INET },
750 { "inet6", AF_INET6 },
751 { "any", AF_UNSPEC },
752 { NULL, -1 }
753};
754static const struct multistate multistate_permitrootlogin[] = {
755 { "without-password", PERMIT_NO_PASSWD },
756 { "forced-commands-only", PERMIT_FORCED_ONLY },
757 { "yes", PERMIT_YES },
758 { "no", PERMIT_NO },
759 { NULL, -1 }
760};
761static const struct multistate multistate_compression[] = {
762 { "delayed", COMP_DELAYED },
763 { "yes", COMP_ZLIB },
764 { "no", COMP_NONE },
765 { NULL, -1 }
766};
767static const struct multistate multistate_gatewayports[] = {
768 { "clientspecified", 2 },
769 { "yes", 1 },
770 { "no", 0 },
771 { NULL, -1 }
772};
Damien Miller69ff1df2011-06-23 08:30:03 +1000773static const struct multistate multistate_privsep[] = {
Damien Miller5a5c2b92012-07-31 12:21:34 +1000774 { "yes", PRIVSEP_NOSANDBOX },
775 { "sandbox", PRIVSEP_ON },
776 { "nosandbox", PRIVSEP_NOSANDBOX },
Damien Miller69ff1df2011-06-23 08:30:03 +1000777 { "no", PRIVSEP_OFF },
778 { NULL, -1 }
779};
Damien Miller33322122011-06-20 14:43:11 +1000780
Ben Lindstromade03f62001-12-06 18:22:17 +0000781int
782process_server_config_line(ServerOptions *options, char *line,
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000783 const char *filename, int linenum, int *activep,
784 struct connection_info *connectinfo)
Ben Lindstromade03f62001-12-06 18:22:17 +0000785{
786 char *cp, **charptr, *arg, *p;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100787 int cmdline = 0, *intptr, value, value2, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100788 SyslogFacility *log_facility_ptr;
789 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000790 ServerOpCodes opcode;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100791 int port;
Darren Tucker45150472006-07-12 22:34:17 +1000792 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000793 size_t len;
Damien Miller33322122011-06-20 14:43:11 +1000794 const struct multistate *multistate_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000795
796 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100797 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100798 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000799 /* Ignore leading whitespace */
800 if (*arg == '\0')
801 arg = strdelim(&cp);
802 if (!arg || !*arg || *arg == '#')
803 return 0;
804 intptr = NULL;
805 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000806 opcode = parse_token(arg, filename, linenum, &flags);
807
808 if (activep == NULL) { /* We are processing a command line directive */
809 cmdline = 1;
810 activep = &cmdline;
811 }
812 if (*activep && opcode != sMatch)
813 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
814 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000815 if (connectinfo == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000816 fatal("%s line %d: Directive '%s' is not allowed "
817 "within a Match block", filename, linenum, arg);
818 } else { /* this is a directive we have already processed */
819 while (arg)
820 arg = strdelim(&cp);
821 return 0;
822 }
823 }
824
Ben Lindstromade03f62001-12-06 18:22:17 +0000825 switch (opcode) {
826 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000827 case sUsePAM:
828 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000829 goto parse_flag;
830
831 /* Standard Options */
832 case sBadOption:
833 return -1;
834 case sPort:
835 /* ignore ports from configfile if cmdline specifies ports */
836 if (options->ports_from_cmdline)
837 return 0;
838 if (options->listen_addrs != NULL)
839 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100840 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000841 if (options->num_ports >= MAX_PORTS)
842 fatal("%s line %d: too many ports.",
843 filename, linenum);
844 arg = strdelim(&cp);
845 if (!arg || *arg == '\0')
846 fatal("%s line %d: missing port number.",
847 filename, linenum);
848 options->ports[options->num_ports++] = a2port(arg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100849 if (options->ports[options->num_ports-1] <= 0)
Ben Lindstromade03f62001-12-06 18:22:17 +0000850 fatal("%s line %d: Badly formatted port number.",
851 filename, linenum);
852 break;
853
854 case sServerKeyBits:
855 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000856 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000857 arg = strdelim(&cp);
858 if (!arg || *arg == '\0')
859 fatal("%s line %d: missing integer value.",
860 filename, linenum);
861 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000862 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000863 *intptr = value;
864 break;
865
866 case sLoginGraceTime:
867 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000868 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000869 arg = strdelim(&cp);
870 if (!arg || *arg == '\0')
871 fatal("%s line %d: missing time value.",
872 filename, linenum);
873 if ((value = convtime(arg)) == -1)
874 fatal("%s line %d: invalid time value.",
875 filename, linenum);
876 if (*intptr == -1)
877 *intptr = value;
878 break;
879
880 case sKeyRegenerationTime:
881 intptr = &options->key_regeneration_time;
882 goto parse_time;
883
884 case sListenAddress:
885 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100886 if (arg == NULL || *arg == '\0')
887 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000888 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000889 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
890 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
891 && strchr(p+1, ':') != NULL) {
892 add_listen_addr(options, arg, 0);
893 break;
894 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100895 p = hpdelim(&arg);
896 if (p == NULL)
897 fatal("%s line %d: bad address:port usage",
898 filename, linenum);
899 p = cleanhostname(p);
900 if (arg == NULL)
901 port = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100902 else if ((port = a2port(arg)) <= 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100903 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000904
Damien Millerf91ee4c2005-03-01 21:24:33 +1100905 add_listen_addr(options, p, port);
906
Ben Lindstromade03f62001-12-06 18:22:17 +0000907 break;
908
Darren Tucker0f383232005-01-20 10:57:56 +1100909 case sAddressFamily:
Damien Miller33322122011-06-20 14:43:11 +1000910 intptr = &options->address_family;
911 multistate_ptr = multistate_addressfamily;
912 if (options->listen_addrs != NULL)
913 fatal("%s line %d: address family must be specified "
914 "before ListenAddress.", filename, linenum);
915 parse_multistate:
Darren Tucker0f383232005-01-20 10:57:56 +1100916 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000917 if (!arg || *arg == '\0')
Damien Miller33322122011-06-20 14:43:11 +1000918 fatal("%s line %d: missing argument.",
Damien Miller17b23d82005-05-26 12:11:56 +1000919 filename, linenum);
Damien Miller33322122011-06-20 14:43:11 +1000920 value = -1;
921 for (i = 0; multistate_ptr[i].key != NULL; i++) {
922 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
923 value = multistate_ptr[i].value;
924 break;
925 }
926 }
927 if (value == -1)
928 fatal("%s line %d: unsupported option \"%s\".",
Darren Tucker0f383232005-01-20 10:57:56 +1100929 filename, linenum, arg);
Damien Miller33322122011-06-20 14:43:11 +1000930 if (*activep && *intptr == -1)
Darren Tucker0f383232005-01-20 10:57:56 +1100931 *intptr = value;
932 break;
933
Ben Lindstromade03f62001-12-06 18:22:17 +0000934 case sHostKeyFile:
935 intptr = &options->num_host_key_files;
936 if (*intptr >= MAX_HOSTKEYS)
937 fatal("%s line %d: too many host keys specified (max %d).",
938 filename, linenum, MAX_HOSTKEYS);
939 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000940 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000941 arg = strdelim(&cp);
942 if (!arg || *arg == '\0')
943 fatal("%s line %d: missing file name.",
944 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000945 if (*activep && *charptr == NULL) {
Darren Tucker88b6fb22010-01-13 22:44:29 +1100946 *charptr = derelativise_path(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000947 /* increase optional counter */
948 if (intptr != NULL)
949 *intptr = *intptr + 1;
950 }
951 break;
952
Damien Miller0a80ca12010-02-27 07:55:05 +1100953 case sHostCertificate:
954 intptr = &options->num_host_cert_files;
955 if (*intptr >= MAX_HOSTKEYS)
956 fatal("%s line %d: too many host certificates "
957 "specified (max %d).", filename, linenum,
958 MAX_HOSTCERTS);
959 charptr = &options->host_cert_files[*intptr];
960 goto parse_filename;
961 break;
962
Ben Lindstromade03f62001-12-06 18:22:17 +0000963 case sPidFile:
964 charptr = &options->pid_file;
965 goto parse_filename;
966
967 case sPermitRootLogin:
968 intptr = &options->permit_root_login;
Damien Miller33322122011-06-20 14:43:11 +1000969 multistate_ptr = multistate_permitrootlogin;
970 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +0000971
972 case sIgnoreRhosts:
973 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000974 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000975 arg = strdelim(&cp);
976 if (!arg || *arg == '\0')
977 fatal("%s line %d: missing yes/no argument.",
978 filename, linenum);
979 value = 0; /* silence compiler */
980 if (strcmp(arg, "yes") == 0)
981 value = 1;
982 else if (strcmp(arg, "no") == 0)
983 value = 0;
984 else
985 fatal("%s line %d: Bad yes/no argument: %s",
986 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000987 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000988 *intptr = value;
989 break;
990
991 case sIgnoreUserKnownHosts:
992 intptr = &options->ignore_user_known_hosts;
993 goto parse_flag;
994
Ben Lindstromade03f62001-12-06 18:22:17 +0000995 case sRhostsRSAAuthentication:
996 intptr = &options->rhosts_rsa_authentication;
997 goto parse_flag;
998
999 case sHostbasedAuthentication:
1000 intptr = &options->hostbased_authentication;
1001 goto parse_flag;
1002
1003 case sHostbasedUsesNameFromPacketOnly:
1004 intptr = &options->hostbased_uses_name_from_packet_only;
1005 goto parse_flag;
1006
1007 case sRSAAuthentication:
1008 intptr = &options->rsa_authentication;
1009 goto parse_flag;
1010
1011 case sPubkeyAuthentication:
1012 intptr = &options->pubkey_authentication;
1013 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +10001014
Ben Lindstromade03f62001-12-06 18:22:17 +00001015 case sKerberosAuthentication:
1016 intptr = &options->kerberos_authentication;
1017 goto parse_flag;
1018
1019 case sKerberosOrLocalPasswd:
1020 intptr = &options->kerberos_or_local_passwd;
1021 goto parse_flag;
1022
1023 case sKerberosTicketCleanup:
1024 intptr = &options->kerberos_ticket_cleanup;
1025 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +10001026
Darren Tucker22ef5082003-12-31 11:37:34 +11001027 case sKerberosGetAFSToken:
1028 intptr = &options->kerberos_get_afs_token;
1029 goto parse_flag;
1030
Darren Tucker0efd1552003-08-26 11:49:55 +10001031 case sGssAuthentication:
1032 intptr = &options->gss_authentication;
1033 goto parse_flag;
1034
1035 case sGssCleanupCreds:
1036 intptr = &options->gss_cleanup_creds;
1037 goto parse_flag;
1038
Ben Lindstromade03f62001-12-06 18:22:17 +00001039 case sPasswordAuthentication:
1040 intptr = &options->password_authentication;
1041 goto parse_flag;
1042
Damien Miller01ed2272008-11-05 16:20:46 +11001043 case sZeroKnowledgePasswordAuthentication:
1044 intptr = &options->zero_knowledge_password_authentication;
1045 goto parse_flag;
1046
Ben Lindstromade03f62001-12-06 18:22:17 +00001047 case sKbdInteractiveAuthentication:
1048 intptr = &options->kbd_interactive_authentication;
1049 goto parse_flag;
1050
1051 case sChallengeResponseAuthentication:
1052 intptr = &options->challenge_response_authentication;
1053 goto parse_flag;
1054
1055 case sPrintMotd:
1056 intptr = &options->print_motd;
1057 goto parse_flag;
1058
1059 case sPrintLastLog:
1060 intptr = &options->print_lastlog;
1061 goto parse_flag;
1062
1063 case sX11Forwarding:
1064 intptr = &options->x11_forwarding;
1065 goto parse_flag;
1066
1067 case sX11DisplayOffset:
1068 intptr = &options->x11_display_offset;
1069 goto parse_int;
1070
Damien Miller95c249f2002-02-05 12:11:34 +11001071 case sX11UseLocalhost:
1072 intptr = &options->x11_use_localhost;
1073 goto parse_flag;
1074
Ben Lindstromade03f62001-12-06 18:22:17 +00001075 case sXAuthLocation:
1076 charptr = &options->xauth_location;
1077 goto parse_filename;
1078
1079 case sStrictModes:
1080 intptr = &options->strict_modes;
1081 goto parse_flag;
1082
Damien Miller12c150e2003-12-17 16:31:10 +11001083 case sTCPKeepAlive:
1084 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +00001085 goto parse_flag;
1086
1087 case sEmptyPasswd:
1088 intptr = &options->permit_empty_passwd;
1089 goto parse_flag;
1090
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001091 case sPermitUserEnvironment:
1092 intptr = &options->permit_user_env;
1093 goto parse_flag;
1094
Ben Lindstromade03f62001-12-06 18:22:17 +00001095 case sUseLogin:
1096 intptr = &options->use_login;
1097 goto parse_flag;
1098
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001099 case sCompression:
1100 intptr = &options->compression;
Damien Miller33322122011-06-20 14:43:11 +10001101 multistate_ptr = multistate_compression;
1102 goto parse_multistate;
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001103
Ben Lindstromade03f62001-12-06 18:22:17 +00001104 case sGatewayPorts:
1105 intptr = &options->gateway_ports;
Damien Miller33322122011-06-20 14:43:11 +10001106 multistate_ptr = multistate_gatewayports;
1107 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +00001108
Damien Miller3a961dc2003-06-03 10:25:48 +10001109 case sUseDNS:
1110 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001111 goto parse_flag;
1112
1113 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001114 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001115 arg = strdelim(&cp);
1116 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001117 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001118 fatal("%.200s line %d: unsupported log facility '%s'",
1119 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001120 if (*log_facility_ptr == -1)
1121 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001122 break;
1123
1124 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001125 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001126 arg = strdelim(&cp);
1127 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001128 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001129 fatal("%.200s line %d: unsupported log level '%s'",
1130 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001131 if (*log_level_ptr == -1)
1132 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001133 break;
1134
1135 case sAllowTcpForwarding:
1136 intptr = &options->allow_tcp_forwarding;
1137 goto parse_flag;
1138
Damien Miller4f755cd2008-05-19 14:57:41 +10001139 case sAllowAgentForwarding:
1140 intptr = &options->allow_agent_forwarding;
1141 goto parse_flag;
1142
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001143 case sUsePrivilegeSeparation:
1144 intptr = &use_privsep;
Damien Miller69ff1df2011-06-23 08:30:03 +10001145 multistate_ptr = multistate_privsep;
1146 goto parse_multistate;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001147
Ben Lindstromade03f62001-12-06 18:22:17 +00001148 case sAllowUsers:
1149 while ((arg = strdelim(&cp)) && *arg != '\0') {
1150 if (options->num_allow_users >= MAX_ALLOW_USERS)
1151 fatal("%s line %d: too many allow users.",
1152 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001153 if (!*activep)
1154 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001155 options->allow_users[options->num_allow_users++] =
1156 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001157 }
1158 break;
1159
1160 case sDenyUsers:
1161 while ((arg = strdelim(&cp)) && *arg != '\0') {
1162 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001163 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001164 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001165 if (!*activep)
1166 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001167 options->deny_users[options->num_deny_users++] =
1168 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001169 }
1170 break;
1171
1172 case sAllowGroups:
1173 while ((arg = strdelim(&cp)) && *arg != '\0') {
1174 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1175 fatal("%s line %d: too many allow groups.",
1176 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001177 if (!*activep)
1178 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001179 options->allow_groups[options->num_allow_groups++] =
1180 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001181 }
1182 break;
1183
1184 case sDenyGroups:
1185 while ((arg = strdelim(&cp)) && *arg != '\0') {
1186 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1187 fatal("%s line %d: too many deny groups.",
1188 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001189 if (!*activep)
1190 continue;
1191 options->deny_groups[options->num_deny_groups++] =
1192 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001193 }
1194 break;
1195
1196 case sCiphers:
1197 arg = strdelim(&cp);
1198 if (!arg || *arg == '\0')
1199 fatal("%s line %d: Missing argument.", filename, linenum);
1200 if (!ciphers_valid(arg))
1201 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1202 filename, linenum, arg ? arg : "<NONE>");
1203 if (options->ciphers == NULL)
1204 options->ciphers = xstrdup(arg);
1205 break;
1206
1207 case sMacs:
1208 arg = strdelim(&cp);
1209 if (!arg || *arg == '\0')
1210 fatal("%s line %d: Missing argument.", filename, linenum);
1211 if (!mac_valid(arg))
1212 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1213 filename, linenum, arg ? arg : "<NONE>");
1214 if (options->macs == NULL)
1215 options->macs = xstrdup(arg);
1216 break;
1217
Damien Millerd5f62bf2010-09-24 22:11:14 +10001218 case sKexAlgorithms:
1219 arg = strdelim(&cp);
1220 if (!arg || *arg == '\0')
1221 fatal("%s line %d: Missing argument.",
1222 filename, linenum);
1223 if (!kex_names_valid(arg))
1224 fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
1225 filename, linenum, arg ? arg : "<NONE>");
1226 if (options->kex_algorithms == NULL)
1227 options->kex_algorithms = xstrdup(arg);
1228 break;
1229
Ben Lindstromade03f62001-12-06 18:22:17 +00001230 case sProtocol:
1231 intptr = &options->protocol;
1232 arg = strdelim(&cp);
1233 if (!arg || *arg == '\0')
1234 fatal("%s line %d: Missing argument.", filename, linenum);
1235 value = proto_spec(arg);
1236 if (value == SSH_PROTO_UNKNOWN)
1237 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001238 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001239 if (*intptr == SSH_PROTO_UNKNOWN)
1240 *intptr = value;
1241 break;
1242
1243 case sSubsystem:
1244 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1245 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001246 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001247 }
1248 arg = strdelim(&cp);
1249 if (!arg || *arg == '\0')
1250 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001251 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001252 if (!*activep) {
1253 arg = strdelim(&cp);
1254 break;
1255 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001256 for (i = 0; i < options->num_subsystems; i++)
1257 if (strcmp(arg, options->subsystem_name[i]) == 0)
1258 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001259 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001260 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1261 arg = strdelim(&cp);
1262 if (!arg || *arg == '\0')
1263 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001264 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001265 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001266
1267 /* Collect arguments (separate to executable) */
1268 p = xstrdup(arg);
1269 len = strlen(p) + 1;
1270 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1271 len += 1 + strlen(arg);
1272 p = xrealloc(p, 1, len);
1273 strlcat(p, " ", len);
1274 strlcat(p, arg, len);
1275 }
1276 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001277 options->num_subsystems++;
1278 break;
1279
1280 case sMaxStartups:
1281 arg = strdelim(&cp);
1282 if (!arg || *arg == '\0')
1283 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001284 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001285 if ((n = sscanf(arg, "%d:%d:%d",
1286 &options->max_startups_begin,
1287 &options->max_startups_rate,
1288 &options->max_startups)) == 3) {
1289 if (options->max_startups_begin >
1290 options->max_startups ||
1291 options->max_startups_rate > 100 ||
1292 options->max_startups_rate < 1)
1293 fatal("%s line %d: Illegal MaxStartups spec.",
1294 filename, linenum);
1295 } else if (n != 1)
1296 fatal("%s line %d: Illegal MaxStartups spec.",
1297 filename, linenum);
1298 else
1299 options->max_startups = options->max_startups_begin;
1300 break;
1301
Darren Tucker89413db2004-05-24 10:36:23 +10001302 case sMaxAuthTries:
1303 intptr = &options->max_authtries;
1304 goto parse_int;
1305
Damien Miller7207f642008-05-19 15:34:50 +10001306 case sMaxSessions:
1307 intptr = &options->max_sessions;
1308 goto parse_int;
1309
Ben Lindstromade03f62001-12-06 18:22:17 +00001310 case sBanner:
1311 charptr = &options->banner;
1312 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001313
Ben Lindstromade03f62001-12-06 18:22:17 +00001314 /*
1315 * These options can contain %X options expanded at
1316 * connect time, so that you can specify paths like:
1317 *
1318 * AuthorizedKeysFile /etc/ssh_keys/%u
1319 */
1320 case sAuthorizedKeysFile:
Damien Millerd8478b62011-05-29 21:39:36 +10001321 if (*activep && options->num_authkeys_files == 0) {
1322 while ((arg = strdelim(&cp)) && *arg != '\0') {
1323 if (options->num_authkeys_files >=
1324 MAX_AUTHKEYS_FILES)
1325 fatal("%s line %d: "
1326 "too many authorized keys files.",
1327 filename, linenum);
1328 options->authorized_keys_files[
1329 options->num_authkeys_files++] =
1330 tilde_expand_filename(arg, getuid());
1331 }
1332 }
1333 return 0;
1334
Damien Miller30da3442010-05-10 11:58:03 +10001335 case sAuthorizedPrincipalsFile:
1336 charptr = &options->authorized_principals_file;
Damien Millerc4cb47b2010-03-22 05:52:26 +11001337 arg = strdelim(&cp);
1338 if (!arg || *arg == '\0')
1339 fatal("%s line %d: missing file name.",
1340 filename, linenum);
1341 if (*activep && *charptr == NULL) {
Damien Miller4a5f0d32010-03-22 05:53:04 +11001342 *charptr = tilde_expand_filename(arg, getuid());
Damien Millerc4cb47b2010-03-22 05:52:26 +11001343 /* increase optional counter */
1344 if (intptr != NULL)
1345 *intptr = *intptr + 1;
1346 }
1347 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001348
1349 case sClientAliveInterval:
1350 intptr = &options->client_alive_interval;
1351 goto parse_time;
1352
1353 case sClientAliveCountMax:
1354 intptr = &options->client_alive_count_max;
1355 goto parse_int;
1356
Darren Tucker46bc0752004-05-02 22:11:30 +10001357 case sAcceptEnv:
1358 while ((arg = strdelim(&cp)) && *arg != '\0') {
1359 if (strchr(arg, '=') != NULL)
1360 fatal("%s line %d: Invalid environment name.",
1361 filename, linenum);
1362 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1363 fatal("%s line %d: too many allow env.",
1364 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001365 if (!*activep)
Damien Millerc24da772012-06-20 21:53:58 +10001366 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001367 options->accept_env[options->num_accept_env++] =
1368 xstrdup(arg);
1369 }
1370 break;
1371
Damien Millerd27b9472005-12-13 19:29:02 +11001372 case sPermitTunnel:
1373 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001374 arg = strdelim(&cp);
1375 if (!arg || *arg == '\0')
1376 fatal("%s line %d: Missing yes/point-to-point/"
1377 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001378 value = -1;
1379 for (i = 0; tunmode_desc[i].val != -1; i++)
1380 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1381 value = tunmode_desc[i].val;
1382 break;
1383 }
1384 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001385 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1386 "no argument: %s", filename, linenum, arg);
1387 if (*intptr == -1)
1388 *intptr = value;
1389 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001390
Darren Tucker45150472006-07-12 22:34:17 +10001391 case sMatch:
1392 if (cmdline)
1393 fatal("Match directive not supported as a command-line "
1394 "option");
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001395 value = match_cfg_line(&cp, linenum, connectinfo);
Darren Tucker45150472006-07-12 22:34:17 +10001396 if (value < 0)
1397 fatal("%s line %d: Bad Match condition", filename,
1398 linenum);
1399 *activep = value;
1400 break;
1401
Damien Miller9b439df2006-07-24 14:04:00 +10001402 case sPermitOpen:
1403 arg = strdelim(&cp);
1404 if (!arg || *arg == '\0')
1405 fatal("%s line %d: missing PermitOpen specification",
1406 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001407 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001408 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001409 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001410 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001411 options->num_permitted_opens = 0;
1412 }
Damien Miller9b439df2006-07-24 14:04:00 +10001413 break;
1414 }
Damien Millerc6081482012-04-22 11:18:53 +10001415 if (strcmp(arg, "none") == 0) {
1416 if (*activep && n == -1) {
1417 channel_clear_adm_permitted_opens();
1418 options->num_permitted_opens = 1;
1419 channel_disable_adm_local_opens();
1420 }
1421 break;
1422 }
Damien Millera29b95e2007-01-05 16:28:36 +11001423 if (*activep && n == -1)
1424 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001425 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1426 p = hpdelim(&arg);
1427 if (p == NULL)
1428 fatal("%s line %d: missing host in PermitOpen",
1429 filename, linenum);
1430 p = cleanhostname(p);
Darren Tucker1338b9e2011-10-02 18:57:35 +11001431 if (arg == NULL || ((port = permitopen_port(arg)) < 0))
Damien Millera765cf42006-07-24 14:08:13 +10001432 fatal("%s line %d: bad port number in "
1433 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001434 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001435 options->num_permitted_opens =
1436 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001437 }
Damien Miller9b439df2006-07-24 14:04:00 +10001438 break;
1439
Damien Millere2754432006-07-24 14:06:47 +10001440 case sForceCommand:
1441 if (cp == NULL)
1442 fatal("%.200s line %d: Missing argument.", filename,
1443 linenum);
1444 len = strspn(cp, WHITESPACE);
1445 if (*activep && options->adm_forced_command == NULL)
1446 options->adm_forced_command = xstrdup(cp + len);
1447 return 0;
1448
Damien Millerd8cb1f12008-02-10 22:40:12 +11001449 case sChrootDirectory:
1450 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001451
1452 arg = strdelim(&cp);
1453 if (!arg || *arg == '\0')
1454 fatal("%s line %d: missing file name.",
1455 filename, linenum);
1456 if (*activep && *charptr == NULL)
1457 *charptr = xstrdup(arg);
1458 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001459
Damien Miller1aed65e2010-03-04 21:53:35 +11001460 case sTrustedUserCAKeys:
1461 charptr = &options->trusted_user_ca_keys;
1462 goto parse_filename;
1463
1464 case sRevokedKeys:
1465 charptr = &options->revoked_keys_file;
1466 goto parse_filename;
1467
Damien Miller0dac6fb2010-11-20 15:19:38 +11001468 case sIPQoS:
1469 arg = strdelim(&cp);
1470 if ((value = parse_ipqos(arg)) == -1)
1471 fatal("%s line %d: Bad IPQoS value: %s",
1472 filename, linenum, arg);
1473 arg = strdelim(&cp);
1474 if (arg == NULL)
1475 value2 = value;
1476 else if ((value2 = parse_ipqos(arg)) == -1)
1477 fatal("%s line %d: Bad IPQoS value: %s",
1478 filename, linenum, arg);
1479 if (*activep) {
1480 options->ip_qos_interactive = value;
1481 options->ip_qos_bulk = value2;
1482 }
1483 break;
1484
Damien Miller23528812012-04-22 11:24:43 +10001485 case sVersionAddendum:
1486 if (cp == NULL)
1487 fatal("%.200s line %d: Missing argument.", filename,
1488 linenum);
1489 len = strspn(cp, WHITESPACE);
1490 if (*activep && options->version_addendum == NULL) {
1491 if (strcasecmp(cp + len, "none") == 0)
1492 options->version_addendum = xstrdup("");
1493 else if (strchr(cp + len, '\r') != NULL)
1494 fatal("%.200s line %d: Invalid argument",
1495 filename, linenum);
1496 else
1497 options->version_addendum = xstrdup(cp + len);
1498 }
1499 return 0;
1500
Ben Lindstromade03f62001-12-06 18:22:17 +00001501 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001502 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001503 filename, linenum, arg);
1504 while (arg)
1505 arg = strdelim(&cp);
1506 break;
1507
Damien Millerf9b3feb2003-05-16 11:38:32 +10001508 case sUnsupported:
1509 logit("%s line %d: Unsupported option %s",
1510 filename, linenum, arg);
1511 while (arg)
1512 arg = strdelim(&cp);
1513 break;
1514
Ben Lindstromade03f62001-12-06 18:22:17 +00001515 default:
1516 fatal("%s line %d: Missing handler for opcode %s (%d)",
1517 filename, linenum, arg, opcode);
1518 }
1519 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1520 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1521 filename, linenum, arg);
1522 return 0;
1523}
1524
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001525/* Reads the server configuration file. */
1526
Damien Miller4af51302000-04-16 11:18:38 +10001527void
Darren Tucker645ab752004-06-25 13:33:20 +10001528load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001529{
Damien Miller46cb75a2012-07-31 12:22:37 +10001530 char line[4096], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001531 FILE *f;
Damien Miller46cb75a2012-07-31 12:22:37 +10001532 int lineno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001533
Darren Tucker645ab752004-06-25 13:33:20 +10001534 debug2("%s: filename %s", __func__, filename);
1535 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001536 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001537 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001538 }
Darren Tucker645ab752004-06-25 13:33:20 +10001539 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001540 while (fgets(line, sizeof(line), f)) {
Damien Miller46cb75a2012-07-31 12:22:37 +10001541 lineno++;
1542 if (strlen(line) == sizeof(line) - 1)
1543 fatal("%s line %d too long", filename, lineno);
Darren Tucker645ab752004-06-25 13:33:20 +10001544 /*
1545 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001546 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001547 * line numbers later for error messages
1548 */
1549 if ((cp = strchr(line, '#')) != NULL)
1550 memcpy(cp, "\n", 2);
1551 cp = line + strspn(line, " \t\r");
1552
1553 buffer_append(conf, cp, strlen(cp));
1554 }
1555 buffer_append(conf, "\0", 1);
1556 fclose(f);
1557 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1558}
1559
1560void
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001561parse_server_match_config(ServerOptions *options,
1562 struct connection_info *connectinfo)
Darren Tucker645ab752004-06-25 13:33:20 +10001563{
Darren Tucker45150472006-07-12 22:34:17 +10001564 ServerOptions mo;
1565
1566 initialize_server_options(&mo);
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001567 parse_server_config(&mo, "reprocess config", &cfg, connectinfo);
Darren Tucker1629c072007-02-19 22:25:37 +11001568 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001569}
1570
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001571int parse_server_match_testspec(struct connection_info *ci, char *spec)
1572{
1573 char *p;
1574
1575 while ((p = strsep(&spec, ",")) && *p != '\0') {
1576 if (strncmp(p, "addr=", 5) == 0) {
1577 ci->address = xstrdup(p + 5);
1578 } else if (strncmp(p, "host=", 5) == 0) {
1579 ci->host = xstrdup(p + 5);
1580 } else if (strncmp(p, "user=", 5) == 0) {
1581 ci->user = xstrdup(p + 5);
1582 } else if (strncmp(p, "laddr=", 6) == 0) {
1583 ci->laddress = xstrdup(p + 6);
1584 } else if (strncmp(p, "lport=", 6) == 0) {
1585 ci->lport = a2port(p + 6);
1586 if (ci->lport == -1) {
1587 fprintf(stderr, "Invalid port '%s' in test mode"
1588 " specification %s\n", p+6, p);
1589 return -1;
1590 }
1591 } else {
1592 fprintf(stderr, "Invalid test mode specification %s\n",
1593 p);
1594 return -1;
1595 }
1596 }
1597 return 0;
1598}
1599
1600/*
1601 * returns 1 for a complete spec, 0 for partial spec and -1 for an
1602 * empty spec.
1603 */
1604int server_match_spec_complete(struct connection_info *ci)
1605{
1606 if (ci->user && ci->host && ci->address)
1607 return 1; /* complete */
1608 if (!ci->user && !ci->host && !ci->address)
1609 return -1; /* empty */
1610 return 0; /* partial */
1611}
1612
Darren Tucker1629c072007-02-19 22:25:37 +11001613/* Helper macros */
1614#define M_CP_INTOPT(n) do {\
1615 if (src->n != -1) \
1616 dst->n = src->n; \
1617} while (0)
1618#define M_CP_STROPT(n) do {\
1619 if (src->n != NULL) { \
1620 if (dst->n != NULL) \
1621 xfree(dst->n); \
1622 dst->n = src->n; \
1623 } \
1624} while(0)
Damien Millerd8478b62011-05-29 21:39:36 +10001625#define M_CP_STRARRAYOPT(n, num_n) do {\
1626 if (src->num_n != 0) { \
1627 for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
1628 dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
1629 } \
1630} while(0)
Darren Tucker1629c072007-02-19 22:25:37 +11001631
1632/*
1633 * Copy any supported values that are set.
1634 *
Darren Tucker3b59dfa2009-06-21 17:54:47 +10001635 * If the preauth flag is set, we do not bother copying the string or
Darren Tucker1629c072007-02-19 22:25:37 +11001636 * array values that are not used pre-authentication, because any that we
1637 * do use must be explictly sent in mm_getpwnamallow().
1638 */
Darren Tucker45150472006-07-12 22:34:17 +10001639void
Darren Tucker1629c072007-02-19 22:25:37 +11001640copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001641{
Darren Tucker1629c072007-02-19 22:25:37 +11001642 M_CP_INTOPT(password_authentication);
1643 M_CP_INTOPT(gss_authentication);
1644 M_CP_INTOPT(rsa_authentication);
1645 M_CP_INTOPT(pubkey_authentication);
1646 M_CP_INTOPT(kerberos_authentication);
1647 M_CP_INTOPT(hostbased_authentication);
Damien Millerab6de352010-06-26 09:38:45 +10001648 M_CP_INTOPT(hostbased_uses_name_from_packet_only);
Darren Tucker1629c072007-02-19 22:25:37 +11001649 M_CP_INTOPT(kbd_interactive_authentication);
Damien Miller01ed2272008-11-05 16:20:46 +11001650 M_CP_INTOPT(zero_knowledge_password_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001651 M_CP_INTOPT(permit_root_login);
Damien Miller51bde602008-11-03 19:23:10 +11001652 M_CP_INTOPT(permit_empty_passwd);
Darren Tucker1629c072007-02-19 22:25:37 +11001653
1654 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001655 M_CP_INTOPT(allow_agent_forwarding);
Damien Millerab6de352010-06-26 09:38:45 +10001656 M_CP_INTOPT(permit_tun);
Darren Tucker1629c072007-02-19 22:25:37 +11001657 M_CP_INTOPT(gateway_ports);
1658 M_CP_INTOPT(x11_display_offset);
1659 M_CP_INTOPT(x11_forwarding);
1660 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001661 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001662 M_CP_INTOPT(max_authtries);
Damien Miller0dac6fb2010-11-20 15:19:38 +11001663 M_CP_INTOPT(ip_qos_interactive);
1664 M_CP_INTOPT(ip_qos_bulk);
Darren Tucker1629c072007-02-19 22:25:37 +11001665
Damien Millerf2e407e2011-05-20 19:04:14 +10001666 /* See comment in servconf.h */
1667 COPY_MATCH_STRING_OPTS();
Damien Miller5d74e582011-05-20 19:03:31 +10001668
Damien Millerc2411902011-05-20 19:03:49 +10001669 /*
1670 * The only things that should be below this point are string options
1671 * which are only used after authentication.
1672 */
Damien Miller5d74e582011-05-20 19:03:31 +10001673 if (preauth)
1674 return;
Damien Millerd8478b62011-05-29 21:39:36 +10001675
Damien Miller5d74e582011-05-20 19:03:31 +10001676 M_CP_STROPT(adm_forced_command);
1677 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001678}
1679
Darren Tucker1629c072007-02-19 22:25:37 +11001680#undef M_CP_INTOPT
1681#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +10001682#undef M_CP_STRARRAYOPT
Darren Tucker1629c072007-02-19 22:25:37 +11001683
Darren Tucker45150472006-07-12 22:34:17 +10001684void
1685parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001686 struct connection_info *connectinfo)
Darren Tucker45150472006-07-12 22:34:17 +10001687{
1688 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001689 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001690
1691 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1692
Darren Tucker9fbac712004-08-12 22:41:44 +10001693 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001694 active = connectinfo ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001695 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001696 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001697 if (process_server_config_line(options, cp, filename,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001698 linenum++, &active, connectinfo) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001699 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001700 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001701 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001702 if (bad_options > 0)
1703 fatal("%s: terminating, %d bad configuration options",
1704 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001705}
Darren Tuckere7140f22008-06-10 23:01:51 +10001706
1707static const char *
Damien Miller82c55872011-06-23 08:20:30 +10001708fmt_multistate_int(int val, const struct multistate *m)
1709{
1710 u_int i;
1711
1712 for (i = 0; m[i].key != NULL; i++) {
1713 if (m[i].value == val)
1714 return m[i].key;
1715 }
1716 return "UNKNOWN";
1717}
1718
1719static const char *
Darren Tuckere7140f22008-06-10 23:01:51 +10001720fmt_intarg(ServerOpCodes code, int val)
1721{
Damien Miller82c55872011-06-23 08:20:30 +10001722 if (val == -1)
1723 return "unset";
1724 switch (code) {
1725 case sAddressFamily:
1726 return fmt_multistate_int(val, multistate_addressfamily);
1727 case sPermitRootLogin:
1728 return fmt_multistate_int(val, multistate_permitrootlogin);
1729 case sGatewayPorts:
1730 return fmt_multistate_int(val, multistate_gatewayports);
1731 case sCompression:
1732 return fmt_multistate_int(val, multistate_compression);
Damien Miller69ff1df2011-06-23 08:30:03 +10001733 case sUsePrivilegeSeparation:
1734 return fmt_multistate_int(val, multistate_privsep);
Damien Miller82c55872011-06-23 08:20:30 +10001735 case sProtocol:
Darren Tuckere7140f22008-06-10 23:01:51 +10001736 switch (val) {
1737 case SSH_PROTO_1:
1738 return "1";
1739 case SSH_PROTO_2:
1740 return "2";
1741 case (SSH_PROTO_1|SSH_PROTO_2):
1742 return "2,1";
1743 default:
1744 return "UNKNOWN";
1745 }
Damien Miller82c55872011-06-23 08:20:30 +10001746 default:
1747 switch (val) {
1748 case 0:
1749 return "no";
1750 case 1:
1751 return "yes";
1752 default:
1753 return "UNKNOWN";
1754 }
Darren Tuckere7140f22008-06-10 23:01:51 +10001755 }
Darren Tuckere7140f22008-06-10 23:01:51 +10001756}
1757
1758static const char *
1759lookup_opcode_name(ServerOpCodes code)
1760{
1761 u_int i;
1762
1763 for (i = 0; keywords[i].name != NULL; i++)
1764 if (keywords[i].opcode == code)
1765 return(keywords[i].name);
1766 return "UNKNOWN";
1767}
1768
1769static void
1770dump_cfg_int(ServerOpCodes code, int val)
1771{
1772 printf("%s %d\n", lookup_opcode_name(code), val);
1773}
1774
1775static void
1776dump_cfg_fmtint(ServerOpCodes code, int val)
1777{
1778 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1779}
1780
1781static void
1782dump_cfg_string(ServerOpCodes code, const char *val)
1783{
1784 if (val == NULL)
1785 return;
1786 printf("%s %s\n", lookup_opcode_name(code), val);
1787}
1788
1789static void
1790dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1791{
1792 u_int i;
1793
1794 for (i = 0; i < count; i++)
Damien Millerd8478b62011-05-29 21:39:36 +10001795 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1796}
1797
1798static void
1799dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
1800{
1801 u_int i;
1802
1803 printf("%s", lookup_opcode_name(code));
1804 for (i = 0; i < count; i++)
1805 printf(" %s", vals[i]);
1806 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10001807}
1808
1809void
1810dump_config(ServerOptions *o)
1811{
1812 u_int i;
1813 int ret;
1814 struct addrinfo *ai;
1815 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1816
1817 /* these are usually at the top of the config */
1818 for (i = 0; i < o->num_ports; i++)
1819 printf("port %d\n", o->ports[i]);
1820 dump_cfg_fmtint(sProtocol, o->protocol);
1821 dump_cfg_fmtint(sAddressFamily, o->address_family);
1822
1823 /* ListenAddress must be after Port */
1824 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1825 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1826 sizeof(addr), port, sizeof(port),
1827 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1828 error("getnameinfo failed: %.100s",
1829 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1830 strerror(errno));
1831 } else {
1832 if (ai->ai_family == AF_INET6)
1833 printf("listenaddress [%s]:%s\n", addr, port);
1834 else
1835 printf("listenaddress %s:%s\n", addr, port);
1836 }
1837 }
1838
1839 /* integer arguments */
Damien Miller212f0b02008-07-23 17:42:29 +10001840#ifdef USE_PAM
1841 dump_cfg_int(sUsePAM, o->use_pam);
1842#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001843 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1844 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1845 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1846 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1847 dump_cfg_int(sMaxAuthTries, o->max_authtries);
Damien Miller7fc5c0f2008-11-05 16:12:11 +11001848 dump_cfg_int(sMaxSessions, o->max_sessions);
Darren Tuckere7140f22008-06-10 23:01:51 +10001849 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1850 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1851
1852 /* formatted integer arguments */
1853 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1854 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1855 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1856 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1857 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1858 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1859 o->hostbased_uses_name_from_packet_only);
1860 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1861 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
Damien Miller6ef430d2008-07-23 17:40:04 +10001862#ifdef KRB5
Darren Tuckere7140f22008-06-10 23:01:51 +10001863 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1864 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1865 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
Damien Miller6ef430d2008-07-23 17:40:04 +10001866# ifdef USE_AFS
Darren Tuckere7140f22008-06-10 23:01:51 +10001867 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
Damien Miller6ef430d2008-07-23 17:40:04 +10001868# endif
1869#endif
1870#ifdef GSSAPI
Darren Tuckere7140f22008-06-10 23:01:51 +10001871 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1872 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
Damien Miller6ef430d2008-07-23 17:40:04 +10001873#endif
Damien Miller01ed2272008-11-05 16:20:46 +11001874#ifdef JPAKE
1875 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
1876 o->zero_knowledge_password_authentication);
1877#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001878 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1879 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1880 o->kbd_interactive_authentication);
1881 dump_cfg_fmtint(sChallengeResponseAuthentication,
1882 o->challenge_response_authentication);
1883 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1884 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1885 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1886 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1887 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1888 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1889 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1890 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1891 dump_cfg_fmtint(sUseLogin, o->use_login);
1892 dump_cfg_fmtint(sCompression, o->compression);
1893 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1894 dump_cfg_fmtint(sUseDNS, o->use_dns);
1895 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1896 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1897
1898 /* string arguments */
1899 dump_cfg_string(sPidFile, o->pid_file);
1900 dump_cfg_string(sXAuthLocation, o->xauth_location);
1901 dump_cfg_string(sCiphers, o->ciphers);
1902 dump_cfg_string(sMacs, o->macs);
1903 dump_cfg_string(sBanner, o->banner);
Darren Tuckere7140f22008-06-10 23:01:51 +10001904 dump_cfg_string(sForceCommand, o->adm_forced_command);
Darren Tuckerd3300452010-01-10 19:26:43 +11001905 dump_cfg_string(sChrootDirectory, o->chroot_directory);
Damien Miller1aed65e2010-03-04 21:53:35 +11001906 dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
1907 dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
Damien Miller30da3442010-05-10 11:58:03 +10001908 dump_cfg_string(sAuthorizedPrincipalsFile,
1909 o->authorized_principals_file);
Damien Miller23528812012-04-22 11:24:43 +10001910 dump_cfg_string(sVersionAddendum, o->version_addendum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001911
1912 /* string arguments requiring a lookup */
1913 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1914 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1915
1916 /* string array arguments */
Damien Millerd8478b62011-05-29 21:39:36 +10001917 dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
1918 o->authorized_keys_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001919 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1920 o->host_key_files);
Damien Miller0a80ca12010-02-27 07:55:05 +11001921 dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
1922 o->host_cert_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001923 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1924 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1925 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1926 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1927 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1928
1929 /* other arguments */
1930 for (i = 0; i < o->num_subsystems; i++)
1931 printf("subsystem %s %s\n", o->subsystem_name[i],
1932 o->subsystem_args[i]);
1933
1934 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1935 o->max_startups_rate, o->max_startups);
1936
1937 for (i = 0; tunmode_desc[i].val != -1; i++)
1938 if (tunmode_desc[i].val == o->permit_tun) {
1939 s = tunmode_desc[i].text;
1940 break;
1941 }
1942 dump_cfg_string(sPermitTunnel, s);
1943
Damien Miller91475862011-05-05 14:14:34 +10001944 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
1945 printf("%s\n", iptos2str(o->ip_qos_bulk));
Damien Miller0dac6fb2010-11-20 15:19:38 +11001946
Darren Tuckere7140f22008-06-10 23:01:51 +10001947 channel_print_adm_permitted_opens();
Darren Tuckere7140f22008-06-10 23:01:51 +10001948}