blob: ee2e531a0a59f07506ac46279fc28744804a1220 [file] [log] [blame]
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001
Damien Miller46cb75a2012-07-31 12:22:37 +10002/* $OpenBSD: servconf.c,v 1.229 2012/07/13 01:35:21 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/*
621 * All of the attributes on a single Match line are ANDed together, so we need to check every
622 * attribute and set the result to zero if any attribute does not match.
623 */
Damien Miller565ca3f2006-08-19 00:23:15 +1000624static int
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000625match_cfg_line(char **condition, int line, struct connection_info *ci)
Darren Tucker45150472006-07-12 22:34:17 +1000626{
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000627 int result = 1, port;
Darren Tucker45150472006-07-12 22:34:17 +1000628 char *arg, *attrib, *cp = *condition;
629 size_t len;
630
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000631 if (ci == NULL)
Darren Tucker45150472006-07-12 22:34:17 +1000632 debug3("checking syntax for 'Match %s'", cp);
633 else
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000634 debug3("checking match for '%s' user %s host %s addr %s "
635 "laddr %s lport %d", cp, ci->user ? ci->user : "(null)",
636 ci->host ? ci->host : "(null)",
637 ci->address ? ci->address : "(null)",
638 ci->laddress ? ci->laddress : "(null)", ci->lport);
Darren Tucker45150472006-07-12 22:34:17 +1000639
640 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
641 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
642 error("Missing Match criteria for %s", attrib);
643 return -1;
644 }
645 len = strlen(arg);
646 if (strcasecmp(attrib, "user") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000647 if (ci == NULL || ci->user == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000648 result = 0;
649 continue;
650 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000651 if (match_pattern_list(ci->user, arg, len, 0) != 1)
Darren Tucker45150472006-07-12 22:34:17 +1000652 result = 0;
653 else
654 debug("user %.100s matched 'User %.100s' at "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000655 "line %d", ci->user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000656 } else if (strcasecmp(attrib, "group") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000657 if (ci == NULL || ci->user == NULL) {
658 result = 0;
659 continue;
660 }
661 switch (match_cfg_line_group(arg, line, ci->user)) {
Damien Miller565ca3f2006-08-19 00:23:15 +1000662 case -1:
663 return -1;
664 case 0:
665 result = 0;
666 }
Darren Tucker45150472006-07-12 22:34:17 +1000667 } else if (strcasecmp(attrib, "host") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000668 if (ci == NULL || ci->host == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000669 result = 0;
670 continue;
671 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000672 if (match_hostname(ci->host, arg, len) != 1)
Darren Tucker45150472006-07-12 22:34:17 +1000673 result = 0;
674 else
675 debug("connection from %.100s matched 'Host "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000676 "%.100s' at line %d", ci->host, arg, line);
Darren Tucker45150472006-07-12 22:34:17 +1000677 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000678 if (ci == NULL || ci->address == NULL) {
679 result = 0;
680 continue;
681 }
682 switch (addr_match_list(ci->address, arg)) {
Darren Tucker7a3935d2008-06-10 22:59:10 +1000683 case 1:
Darren Tucker45150472006-07-12 22:34:17 +1000684 debug("connection from %.100s matched 'Address "
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000685 "%.100s' at line %d", ci->address, arg, line);
Darren Tucker7a3935d2008-06-10 22:59:10 +1000686 break;
687 case 0:
Darren Tucker896ad5a2008-06-11 09:34:46 +1000688 case -1:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000689 result = 0;
690 break;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000691 case -2:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000692 return -1;
693 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000694 } else if (strcasecmp(attrib, "localaddress") == 0){
695 if (ci == NULL || ci->laddress == NULL) {
696 result = 0;
697 continue;
698 }
699 switch (addr_match_list(ci->laddress, arg)) {
700 case 1:
701 debug("connection from %.100s matched "
702 "'LocalAddress %.100s' at line %d",
703 ci->laddress, arg, line);
704 break;
705 case 0:
706 case -1:
707 result = 0;
708 break;
709 case -2:
710 return -1;
711 }
712 } else if (strcasecmp(attrib, "localport") == 0) {
713 if ((port = a2port(arg)) == -1) {
714 error("Invalid LocalPort '%s' on Match line",
715 arg);
716 return -1;
717 }
718 if (ci == NULL || ci->lport == 0) {
719 result = 0;
720 continue;
721 }
722 /* TODO support port lists */
723 if (port == ci->lport)
724 debug("connection from %.100s matched "
725 "'LocalPort %d' at line %d",
726 ci->laddress, port, line);
727 else
728 result = 0;
Darren Tucker45150472006-07-12 22:34:17 +1000729 } else {
730 error("Unsupported Match attribute %s", attrib);
731 return -1;
732 }
733 }
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000734 if (ci != NULL)
Darren Tucker45150472006-07-12 22:34:17 +1000735 debug3("match %sfound", result ? "" : "not ");
736 *condition = cp;
737 return result;
738}
739
Damien Millere2754432006-07-24 14:06:47 +1000740#define WHITESPACE " \t\r\n"
741
Damien Miller33322122011-06-20 14:43:11 +1000742/* Multistate option parsing */
743struct multistate {
744 char *key;
745 int value;
746};
747static const struct multistate multistate_addressfamily[] = {
748 { "inet", AF_INET },
749 { "inet6", AF_INET6 },
750 { "any", AF_UNSPEC },
751 { NULL, -1 }
752};
753static const struct multistate multistate_permitrootlogin[] = {
754 { "without-password", PERMIT_NO_PASSWD },
755 { "forced-commands-only", PERMIT_FORCED_ONLY },
756 { "yes", PERMIT_YES },
757 { "no", PERMIT_NO },
758 { NULL, -1 }
759};
760static const struct multistate multistate_compression[] = {
761 { "delayed", COMP_DELAYED },
762 { "yes", COMP_ZLIB },
763 { "no", COMP_NONE },
764 { NULL, -1 }
765};
766static const struct multistate multistate_gatewayports[] = {
767 { "clientspecified", 2 },
768 { "yes", 1 },
769 { "no", 0 },
770 { NULL, -1 }
771};
Damien Miller69ff1df2011-06-23 08:30:03 +1000772static const struct multistate multistate_privsep[] = {
Damien Miller5a5c2b92012-07-31 12:21:34 +1000773 { "yes", PRIVSEP_NOSANDBOX },
774 { "sandbox", PRIVSEP_ON },
775 { "nosandbox", PRIVSEP_NOSANDBOX },
Damien Miller69ff1df2011-06-23 08:30:03 +1000776 { "no", PRIVSEP_OFF },
777 { NULL, -1 }
778};
Damien Miller33322122011-06-20 14:43:11 +1000779
Ben Lindstromade03f62001-12-06 18:22:17 +0000780int
781process_server_config_line(ServerOptions *options, char *line,
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000782 const char *filename, int linenum, int *activep,
783 struct connection_info *connectinfo)
Ben Lindstromade03f62001-12-06 18:22:17 +0000784{
785 char *cp, **charptr, *arg, *p;
Damien Miller0dac6fb2010-11-20 15:19:38 +1100786 int cmdline = 0, *intptr, value, value2, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100787 SyslogFacility *log_facility_ptr;
788 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000789 ServerOpCodes opcode;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100790 int port;
Darren Tucker45150472006-07-12 22:34:17 +1000791 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000792 size_t len;
Damien Miller33322122011-06-20 14:43:11 +1000793 const struct multistate *multistate_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000794
795 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100796 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100797 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000798 /* Ignore leading whitespace */
799 if (*arg == '\0')
800 arg = strdelim(&cp);
801 if (!arg || !*arg || *arg == '#')
802 return 0;
803 intptr = NULL;
804 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000805 opcode = parse_token(arg, filename, linenum, &flags);
806
807 if (activep == NULL) { /* We are processing a command line directive */
808 cmdline = 1;
809 activep = &cmdline;
810 }
811 if (*activep && opcode != sMatch)
812 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
813 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
Darren Tuckerfbcf8272012-05-19 19:37:01 +1000814 if (connectinfo == NULL) {
Darren Tucker45150472006-07-12 22:34:17 +1000815 fatal("%s line %d: Directive '%s' is not allowed "
816 "within a Match block", filename, linenum, arg);
817 } else { /* this is a directive we have already processed */
818 while (arg)
819 arg = strdelim(&cp);
820 return 0;
821 }
822 }
823
Ben Lindstromade03f62001-12-06 18:22:17 +0000824 switch (opcode) {
825 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000826 case sUsePAM:
827 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000828 goto parse_flag;
829
830 /* Standard Options */
831 case sBadOption:
832 return -1;
833 case sPort:
834 /* ignore ports from configfile if cmdline specifies ports */
835 if (options->ports_from_cmdline)
836 return 0;
837 if (options->listen_addrs != NULL)
838 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100839 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000840 if (options->num_ports >= MAX_PORTS)
841 fatal("%s line %d: too many ports.",
842 filename, linenum);
843 arg = strdelim(&cp);
844 if (!arg || *arg == '\0')
845 fatal("%s line %d: missing port number.",
846 filename, linenum);
847 options->ports[options->num_ports++] = a2port(arg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100848 if (options->ports[options->num_ports-1] <= 0)
Ben Lindstromade03f62001-12-06 18:22:17 +0000849 fatal("%s line %d: Badly formatted port number.",
850 filename, linenum);
851 break;
852
853 case sServerKeyBits:
854 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000855 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000856 arg = strdelim(&cp);
857 if (!arg || *arg == '\0')
858 fatal("%s line %d: missing integer value.",
859 filename, linenum);
860 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000861 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000862 *intptr = value;
863 break;
864
865 case sLoginGraceTime:
866 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000867 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000868 arg = strdelim(&cp);
869 if (!arg || *arg == '\0')
870 fatal("%s line %d: missing time value.",
871 filename, linenum);
872 if ((value = convtime(arg)) == -1)
873 fatal("%s line %d: invalid time value.",
874 filename, linenum);
875 if (*intptr == -1)
876 *intptr = value;
877 break;
878
879 case sKeyRegenerationTime:
880 intptr = &options->key_regeneration_time;
881 goto parse_time;
882
883 case sListenAddress:
884 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100885 if (arg == NULL || *arg == '\0')
886 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000887 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000888 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
889 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
890 && strchr(p+1, ':') != NULL) {
891 add_listen_addr(options, arg, 0);
892 break;
893 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100894 p = hpdelim(&arg);
895 if (p == NULL)
896 fatal("%s line %d: bad address:port usage",
897 filename, linenum);
898 p = cleanhostname(p);
899 if (arg == NULL)
900 port = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100901 else if ((port = a2port(arg)) <= 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100902 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000903
Damien Millerf91ee4c2005-03-01 21:24:33 +1100904 add_listen_addr(options, p, port);
905
Ben Lindstromade03f62001-12-06 18:22:17 +0000906 break;
907
Darren Tucker0f383232005-01-20 10:57:56 +1100908 case sAddressFamily:
Damien Miller33322122011-06-20 14:43:11 +1000909 intptr = &options->address_family;
910 multistate_ptr = multistate_addressfamily;
911 if (options->listen_addrs != NULL)
912 fatal("%s line %d: address family must be specified "
913 "before ListenAddress.", filename, linenum);
914 parse_multistate:
Darren Tucker0f383232005-01-20 10:57:56 +1100915 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000916 if (!arg || *arg == '\0')
Damien Miller33322122011-06-20 14:43:11 +1000917 fatal("%s line %d: missing argument.",
Damien Miller17b23d82005-05-26 12:11:56 +1000918 filename, linenum);
Damien Miller33322122011-06-20 14:43:11 +1000919 value = -1;
920 for (i = 0; multistate_ptr[i].key != NULL; i++) {
921 if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
922 value = multistate_ptr[i].value;
923 break;
924 }
925 }
926 if (value == -1)
927 fatal("%s line %d: unsupported option \"%s\".",
Darren Tucker0f383232005-01-20 10:57:56 +1100928 filename, linenum, arg);
Damien Miller33322122011-06-20 14:43:11 +1000929 if (*activep && *intptr == -1)
Darren Tucker0f383232005-01-20 10:57:56 +1100930 *intptr = value;
931 break;
932
Ben Lindstromade03f62001-12-06 18:22:17 +0000933 case sHostKeyFile:
934 intptr = &options->num_host_key_files;
935 if (*intptr >= MAX_HOSTKEYS)
936 fatal("%s line %d: too many host keys specified (max %d).",
937 filename, linenum, MAX_HOSTKEYS);
938 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000939 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000940 arg = strdelim(&cp);
941 if (!arg || *arg == '\0')
942 fatal("%s line %d: missing file name.",
943 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000944 if (*activep && *charptr == NULL) {
Darren Tucker88b6fb22010-01-13 22:44:29 +1100945 *charptr = derelativise_path(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000946 /* increase optional counter */
947 if (intptr != NULL)
948 *intptr = *intptr + 1;
949 }
950 break;
951
Damien Miller0a80ca12010-02-27 07:55:05 +1100952 case sHostCertificate:
953 intptr = &options->num_host_cert_files;
954 if (*intptr >= MAX_HOSTKEYS)
955 fatal("%s line %d: too many host certificates "
956 "specified (max %d).", filename, linenum,
957 MAX_HOSTCERTS);
958 charptr = &options->host_cert_files[*intptr];
959 goto parse_filename;
960 break;
961
Ben Lindstromade03f62001-12-06 18:22:17 +0000962 case sPidFile:
963 charptr = &options->pid_file;
964 goto parse_filename;
965
966 case sPermitRootLogin:
967 intptr = &options->permit_root_login;
Damien Miller33322122011-06-20 14:43:11 +1000968 multistate_ptr = multistate_permitrootlogin;
969 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +0000970
971 case sIgnoreRhosts:
972 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000973 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000974 arg = strdelim(&cp);
975 if (!arg || *arg == '\0')
976 fatal("%s line %d: missing yes/no argument.",
977 filename, linenum);
978 value = 0; /* silence compiler */
979 if (strcmp(arg, "yes") == 0)
980 value = 1;
981 else if (strcmp(arg, "no") == 0)
982 value = 0;
983 else
984 fatal("%s line %d: Bad yes/no argument: %s",
985 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000986 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000987 *intptr = value;
988 break;
989
990 case sIgnoreUserKnownHosts:
991 intptr = &options->ignore_user_known_hosts;
992 goto parse_flag;
993
Ben Lindstromade03f62001-12-06 18:22:17 +0000994 case sRhostsRSAAuthentication:
995 intptr = &options->rhosts_rsa_authentication;
996 goto parse_flag;
997
998 case sHostbasedAuthentication:
999 intptr = &options->hostbased_authentication;
1000 goto parse_flag;
1001
1002 case sHostbasedUsesNameFromPacketOnly:
1003 intptr = &options->hostbased_uses_name_from_packet_only;
1004 goto parse_flag;
1005
1006 case sRSAAuthentication:
1007 intptr = &options->rsa_authentication;
1008 goto parse_flag;
1009
1010 case sPubkeyAuthentication:
1011 intptr = &options->pubkey_authentication;
1012 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +10001013
Ben Lindstromade03f62001-12-06 18:22:17 +00001014 case sKerberosAuthentication:
1015 intptr = &options->kerberos_authentication;
1016 goto parse_flag;
1017
1018 case sKerberosOrLocalPasswd:
1019 intptr = &options->kerberos_or_local_passwd;
1020 goto parse_flag;
1021
1022 case sKerberosTicketCleanup:
1023 intptr = &options->kerberos_ticket_cleanup;
1024 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +10001025
Darren Tucker22ef5082003-12-31 11:37:34 +11001026 case sKerberosGetAFSToken:
1027 intptr = &options->kerberos_get_afs_token;
1028 goto parse_flag;
1029
Darren Tucker0efd1552003-08-26 11:49:55 +10001030 case sGssAuthentication:
1031 intptr = &options->gss_authentication;
1032 goto parse_flag;
1033
1034 case sGssCleanupCreds:
1035 intptr = &options->gss_cleanup_creds;
1036 goto parse_flag;
1037
Ben Lindstromade03f62001-12-06 18:22:17 +00001038 case sPasswordAuthentication:
1039 intptr = &options->password_authentication;
1040 goto parse_flag;
1041
Damien Miller01ed2272008-11-05 16:20:46 +11001042 case sZeroKnowledgePasswordAuthentication:
1043 intptr = &options->zero_knowledge_password_authentication;
1044 goto parse_flag;
1045
Ben Lindstromade03f62001-12-06 18:22:17 +00001046 case sKbdInteractiveAuthentication:
1047 intptr = &options->kbd_interactive_authentication;
1048 goto parse_flag;
1049
1050 case sChallengeResponseAuthentication:
1051 intptr = &options->challenge_response_authentication;
1052 goto parse_flag;
1053
1054 case sPrintMotd:
1055 intptr = &options->print_motd;
1056 goto parse_flag;
1057
1058 case sPrintLastLog:
1059 intptr = &options->print_lastlog;
1060 goto parse_flag;
1061
1062 case sX11Forwarding:
1063 intptr = &options->x11_forwarding;
1064 goto parse_flag;
1065
1066 case sX11DisplayOffset:
1067 intptr = &options->x11_display_offset;
1068 goto parse_int;
1069
Damien Miller95c249f2002-02-05 12:11:34 +11001070 case sX11UseLocalhost:
1071 intptr = &options->x11_use_localhost;
1072 goto parse_flag;
1073
Ben Lindstromade03f62001-12-06 18:22:17 +00001074 case sXAuthLocation:
1075 charptr = &options->xauth_location;
1076 goto parse_filename;
1077
1078 case sStrictModes:
1079 intptr = &options->strict_modes;
1080 goto parse_flag;
1081
Damien Miller12c150e2003-12-17 16:31:10 +11001082 case sTCPKeepAlive:
1083 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +00001084 goto parse_flag;
1085
1086 case sEmptyPasswd:
1087 intptr = &options->permit_empty_passwd;
1088 goto parse_flag;
1089
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001090 case sPermitUserEnvironment:
1091 intptr = &options->permit_user_env;
1092 goto parse_flag;
1093
Ben Lindstromade03f62001-12-06 18:22:17 +00001094 case sUseLogin:
1095 intptr = &options->use_login;
1096 goto parse_flag;
1097
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001098 case sCompression:
1099 intptr = &options->compression;
Damien Miller33322122011-06-20 14:43:11 +10001100 multistate_ptr = multistate_compression;
1101 goto parse_multistate;
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001102
Ben Lindstromade03f62001-12-06 18:22:17 +00001103 case sGatewayPorts:
1104 intptr = &options->gateway_ports;
Damien Miller33322122011-06-20 14:43:11 +10001105 multistate_ptr = multistate_gatewayports;
1106 goto parse_multistate;
Ben Lindstromade03f62001-12-06 18:22:17 +00001107
Damien Miller3a961dc2003-06-03 10:25:48 +10001108 case sUseDNS:
1109 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001110 goto parse_flag;
1111
1112 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001113 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001114 arg = strdelim(&cp);
1115 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001116 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001117 fatal("%.200s line %d: unsupported log facility '%s'",
1118 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001119 if (*log_facility_ptr == -1)
1120 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001121 break;
1122
1123 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001124 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001125 arg = strdelim(&cp);
1126 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001127 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001128 fatal("%.200s line %d: unsupported log level '%s'",
1129 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001130 if (*log_level_ptr == -1)
1131 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001132 break;
1133
1134 case sAllowTcpForwarding:
1135 intptr = &options->allow_tcp_forwarding;
1136 goto parse_flag;
1137
Damien Miller4f755cd2008-05-19 14:57:41 +10001138 case sAllowAgentForwarding:
1139 intptr = &options->allow_agent_forwarding;
1140 goto parse_flag;
1141
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001142 case sUsePrivilegeSeparation:
1143 intptr = &use_privsep;
Damien Miller69ff1df2011-06-23 08:30:03 +10001144 multistate_ptr = multistate_privsep;
1145 goto parse_multistate;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001146
Ben Lindstromade03f62001-12-06 18:22:17 +00001147 case sAllowUsers:
1148 while ((arg = strdelim(&cp)) && *arg != '\0') {
1149 if (options->num_allow_users >= MAX_ALLOW_USERS)
1150 fatal("%s line %d: too many allow users.",
1151 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001152 if (!*activep)
1153 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001154 options->allow_users[options->num_allow_users++] =
1155 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001156 }
1157 break;
1158
1159 case sDenyUsers:
1160 while ((arg = strdelim(&cp)) && *arg != '\0') {
1161 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001162 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001163 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001164 if (!*activep)
1165 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001166 options->deny_users[options->num_deny_users++] =
1167 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001168 }
1169 break;
1170
1171 case sAllowGroups:
1172 while ((arg = strdelim(&cp)) && *arg != '\0') {
1173 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1174 fatal("%s line %d: too many allow groups.",
1175 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001176 if (!*activep)
1177 continue;
Ben Lindstrome1353632002-06-23 21:29:23 +00001178 options->allow_groups[options->num_allow_groups++] =
1179 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001180 }
1181 break;
1182
1183 case sDenyGroups:
1184 while ((arg = strdelim(&cp)) && *arg != '\0') {
1185 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1186 fatal("%s line %d: too many deny groups.",
1187 filename, linenum);
Damien Millerc24da772012-06-20 21:53:58 +10001188 if (!*activep)
1189 continue;
1190 options->deny_groups[options->num_deny_groups++] =
1191 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001192 }
1193 break;
1194
1195 case sCiphers:
1196 arg = strdelim(&cp);
1197 if (!arg || *arg == '\0')
1198 fatal("%s line %d: Missing argument.", filename, linenum);
1199 if (!ciphers_valid(arg))
1200 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1201 filename, linenum, arg ? arg : "<NONE>");
1202 if (options->ciphers == NULL)
1203 options->ciphers = xstrdup(arg);
1204 break;
1205
1206 case sMacs:
1207 arg = strdelim(&cp);
1208 if (!arg || *arg == '\0')
1209 fatal("%s line %d: Missing argument.", filename, linenum);
1210 if (!mac_valid(arg))
1211 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1212 filename, linenum, arg ? arg : "<NONE>");
1213 if (options->macs == NULL)
1214 options->macs = xstrdup(arg);
1215 break;
1216
Damien Millerd5f62bf2010-09-24 22:11:14 +10001217 case sKexAlgorithms:
1218 arg = strdelim(&cp);
1219 if (!arg || *arg == '\0')
1220 fatal("%s line %d: Missing argument.",
1221 filename, linenum);
1222 if (!kex_names_valid(arg))
1223 fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
1224 filename, linenum, arg ? arg : "<NONE>");
1225 if (options->kex_algorithms == NULL)
1226 options->kex_algorithms = xstrdup(arg);
1227 break;
1228
Ben Lindstromade03f62001-12-06 18:22:17 +00001229 case sProtocol:
1230 intptr = &options->protocol;
1231 arg = strdelim(&cp);
1232 if (!arg || *arg == '\0')
1233 fatal("%s line %d: Missing argument.", filename, linenum);
1234 value = proto_spec(arg);
1235 if (value == SSH_PROTO_UNKNOWN)
1236 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001237 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001238 if (*intptr == SSH_PROTO_UNKNOWN)
1239 *intptr = value;
1240 break;
1241
1242 case sSubsystem:
1243 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1244 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001245 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001246 }
1247 arg = strdelim(&cp);
1248 if (!arg || *arg == '\0')
1249 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001250 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001251 if (!*activep) {
1252 arg = strdelim(&cp);
1253 break;
1254 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001255 for (i = 0; i < options->num_subsystems; i++)
1256 if (strcmp(arg, options->subsystem_name[i]) == 0)
1257 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001258 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001259 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1260 arg = strdelim(&cp);
1261 if (!arg || *arg == '\0')
1262 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001263 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001264 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001265
1266 /* Collect arguments (separate to executable) */
1267 p = xstrdup(arg);
1268 len = strlen(p) + 1;
1269 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1270 len += 1 + strlen(arg);
1271 p = xrealloc(p, 1, len);
1272 strlcat(p, " ", len);
1273 strlcat(p, arg, len);
1274 }
1275 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001276 options->num_subsystems++;
1277 break;
1278
1279 case sMaxStartups:
1280 arg = strdelim(&cp);
1281 if (!arg || *arg == '\0')
1282 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001283 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001284 if ((n = sscanf(arg, "%d:%d:%d",
1285 &options->max_startups_begin,
1286 &options->max_startups_rate,
1287 &options->max_startups)) == 3) {
1288 if (options->max_startups_begin >
1289 options->max_startups ||
1290 options->max_startups_rate > 100 ||
1291 options->max_startups_rate < 1)
1292 fatal("%s line %d: Illegal MaxStartups spec.",
1293 filename, linenum);
1294 } else if (n != 1)
1295 fatal("%s line %d: Illegal MaxStartups spec.",
1296 filename, linenum);
1297 else
1298 options->max_startups = options->max_startups_begin;
1299 break;
1300
Darren Tucker89413db2004-05-24 10:36:23 +10001301 case sMaxAuthTries:
1302 intptr = &options->max_authtries;
1303 goto parse_int;
1304
Damien Miller7207f642008-05-19 15:34:50 +10001305 case sMaxSessions:
1306 intptr = &options->max_sessions;
1307 goto parse_int;
1308
Ben Lindstromade03f62001-12-06 18:22:17 +00001309 case sBanner:
1310 charptr = &options->banner;
1311 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001312
Ben Lindstromade03f62001-12-06 18:22:17 +00001313 /*
1314 * These options can contain %X options expanded at
1315 * connect time, so that you can specify paths like:
1316 *
1317 * AuthorizedKeysFile /etc/ssh_keys/%u
1318 */
1319 case sAuthorizedKeysFile:
Damien Millerd8478b62011-05-29 21:39:36 +10001320 if (*activep && options->num_authkeys_files == 0) {
1321 while ((arg = strdelim(&cp)) && *arg != '\0') {
1322 if (options->num_authkeys_files >=
1323 MAX_AUTHKEYS_FILES)
1324 fatal("%s line %d: "
1325 "too many authorized keys files.",
1326 filename, linenum);
1327 options->authorized_keys_files[
1328 options->num_authkeys_files++] =
1329 tilde_expand_filename(arg, getuid());
1330 }
1331 }
1332 return 0;
1333
Damien Miller30da3442010-05-10 11:58:03 +10001334 case sAuthorizedPrincipalsFile:
1335 charptr = &options->authorized_principals_file;
Damien Millerc4cb47b2010-03-22 05:52:26 +11001336 arg = strdelim(&cp);
1337 if (!arg || *arg == '\0')
1338 fatal("%s line %d: missing file name.",
1339 filename, linenum);
1340 if (*activep && *charptr == NULL) {
Damien Miller4a5f0d32010-03-22 05:53:04 +11001341 *charptr = tilde_expand_filename(arg, getuid());
Damien Millerc4cb47b2010-03-22 05:52:26 +11001342 /* increase optional counter */
1343 if (intptr != NULL)
1344 *intptr = *intptr + 1;
1345 }
1346 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001347
1348 case sClientAliveInterval:
1349 intptr = &options->client_alive_interval;
1350 goto parse_time;
1351
1352 case sClientAliveCountMax:
1353 intptr = &options->client_alive_count_max;
1354 goto parse_int;
1355
Darren Tucker46bc0752004-05-02 22:11:30 +10001356 case sAcceptEnv:
1357 while ((arg = strdelim(&cp)) && *arg != '\0') {
1358 if (strchr(arg, '=') != NULL)
1359 fatal("%s line %d: Invalid environment name.",
1360 filename, linenum);
1361 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1362 fatal("%s line %d: too many allow env.",
1363 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001364 if (!*activep)
Damien Millerc24da772012-06-20 21:53:58 +10001365 continue;
Darren Tucker46bc0752004-05-02 22:11:30 +10001366 options->accept_env[options->num_accept_env++] =
1367 xstrdup(arg);
1368 }
1369 break;
1370
Damien Millerd27b9472005-12-13 19:29:02 +11001371 case sPermitTunnel:
1372 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001373 arg = strdelim(&cp);
1374 if (!arg || *arg == '\0')
1375 fatal("%s line %d: Missing yes/point-to-point/"
1376 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001377 value = -1;
1378 for (i = 0; tunmode_desc[i].val != -1; i++)
1379 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1380 value = tunmode_desc[i].val;
1381 break;
1382 }
1383 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001384 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1385 "no argument: %s", filename, linenum, arg);
1386 if (*intptr == -1)
1387 *intptr = value;
1388 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001389
Darren Tucker45150472006-07-12 22:34:17 +10001390 case sMatch:
1391 if (cmdline)
1392 fatal("Match directive not supported as a command-line "
1393 "option");
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001394 value = match_cfg_line(&cp, linenum, connectinfo);
Darren Tucker45150472006-07-12 22:34:17 +10001395 if (value < 0)
1396 fatal("%s line %d: Bad Match condition", filename,
1397 linenum);
1398 *activep = value;
1399 break;
1400
Damien Miller9b439df2006-07-24 14:04:00 +10001401 case sPermitOpen:
1402 arg = strdelim(&cp);
1403 if (!arg || *arg == '\0')
1404 fatal("%s line %d: missing PermitOpen specification",
1405 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001406 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001407 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001408 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001409 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001410 options->num_permitted_opens = 0;
1411 }
Damien Miller9b439df2006-07-24 14:04:00 +10001412 break;
1413 }
Damien Millerc6081482012-04-22 11:18:53 +10001414 if (strcmp(arg, "none") == 0) {
1415 if (*activep && n == -1) {
1416 channel_clear_adm_permitted_opens();
1417 options->num_permitted_opens = 1;
1418 channel_disable_adm_local_opens();
1419 }
1420 break;
1421 }
Damien Millera29b95e2007-01-05 16:28:36 +11001422 if (*activep && n == -1)
1423 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001424 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1425 p = hpdelim(&arg);
1426 if (p == NULL)
1427 fatal("%s line %d: missing host in PermitOpen",
1428 filename, linenum);
1429 p = cleanhostname(p);
Darren Tucker1338b9e2011-10-02 18:57:35 +11001430 if (arg == NULL || ((port = permitopen_port(arg)) < 0))
Damien Millera765cf42006-07-24 14:08:13 +10001431 fatal("%s line %d: bad port number in "
1432 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001433 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001434 options->num_permitted_opens =
1435 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001436 }
Damien Miller9b439df2006-07-24 14:04:00 +10001437 break;
1438
Damien Millere2754432006-07-24 14:06:47 +10001439 case sForceCommand:
1440 if (cp == NULL)
1441 fatal("%.200s line %d: Missing argument.", filename,
1442 linenum);
1443 len = strspn(cp, WHITESPACE);
1444 if (*activep && options->adm_forced_command == NULL)
1445 options->adm_forced_command = xstrdup(cp + len);
1446 return 0;
1447
Damien Millerd8cb1f12008-02-10 22:40:12 +11001448 case sChrootDirectory:
1449 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001450
1451 arg = strdelim(&cp);
1452 if (!arg || *arg == '\0')
1453 fatal("%s line %d: missing file name.",
1454 filename, linenum);
1455 if (*activep && *charptr == NULL)
1456 *charptr = xstrdup(arg);
1457 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001458
Damien Miller1aed65e2010-03-04 21:53:35 +11001459 case sTrustedUserCAKeys:
1460 charptr = &options->trusted_user_ca_keys;
1461 goto parse_filename;
1462
1463 case sRevokedKeys:
1464 charptr = &options->revoked_keys_file;
1465 goto parse_filename;
1466
Damien Miller0dac6fb2010-11-20 15:19:38 +11001467 case sIPQoS:
1468 arg = strdelim(&cp);
1469 if ((value = parse_ipqos(arg)) == -1)
1470 fatal("%s line %d: Bad IPQoS value: %s",
1471 filename, linenum, arg);
1472 arg = strdelim(&cp);
1473 if (arg == NULL)
1474 value2 = value;
1475 else if ((value2 = parse_ipqos(arg)) == -1)
1476 fatal("%s line %d: Bad IPQoS value: %s",
1477 filename, linenum, arg);
1478 if (*activep) {
1479 options->ip_qos_interactive = value;
1480 options->ip_qos_bulk = value2;
1481 }
1482 break;
1483
Damien Miller23528812012-04-22 11:24:43 +10001484 case sVersionAddendum:
1485 if (cp == NULL)
1486 fatal("%.200s line %d: Missing argument.", filename,
1487 linenum);
1488 len = strspn(cp, WHITESPACE);
1489 if (*activep && options->version_addendum == NULL) {
1490 if (strcasecmp(cp + len, "none") == 0)
1491 options->version_addendum = xstrdup("");
1492 else if (strchr(cp + len, '\r') != NULL)
1493 fatal("%.200s line %d: Invalid argument",
1494 filename, linenum);
1495 else
1496 options->version_addendum = xstrdup(cp + len);
1497 }
1498 return 0;
1499
Ben Lindstromade03f62001-12-06 18:22:17 +00001500 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001501 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001502 filename, linenum, arg);
1503 while (arg)
1504 arg = strdelim(&cp);
1505 break;
1506
Damien Millerf9b3feb2003-05-16 11:38:32 +10001507 case sUnsupported:
1508 logit("%s line %d: Unsupported option %s",
1509 filename, linenum, arg);
1510 while (arg)
1511 arg = strdelim(&cp);
1512 break;
1513
Ben Lindstromade03f62001-12-06 18:22:17 +00001514 default:
1515 fatal("%s line %d: Missing handler for opcode %s (%d)",
1516 filename, linenum, arg, opcode);
1517 }
1518 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1519 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1520 filename, linenum, arg);
1521 return 0;
1522}
1523
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001524/* Reads the server configuration file. */
1525
Damien Miller4af51302000-04-16 11:18:38 +10001526void
Darren Tucker645ab752004-06-25 13:33:20 +10001527load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528{
Damien Miller46cb75a2012-07-31 12:22:37 +10001529 char line[4096], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001530 FILE *f;
Damien Miller46cb75a2012-07-31 12:22:37 +10001531 int lineno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001532
Darren Tucker645ab752004-06-25 13:33:20 +10001533 debug2("%s: filename %s", __func__, filename);
1534 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001535 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001536 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001537 }
Darren Tucker645ab752004-06-25 13:33:20 +10001538 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001539 while (fgets(line, sizeof(line), f)) {
Damien Miller46cb75a2012-07-31 12:22:37 +10001540 lineno++;
1541 if (strlen(line) == sizeof(line) - 1)
1542 fatal("%s line %d too long", filename, lineno);
Darren Tucker645ab752004-06-25 13:33:20 +10001543 /*
1544 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001545 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001546 * line numbers later for error messages
1547 */
1548 if ((cp = strchr(line, '#')) != NULL)
1549 memcpy(cp, "\n", 2);
1550 cp = line + strspn(line, " \t\r");
1551
1552 buffer_append(conf, cp, strlen(cp));
1553 }
1554 buffer_append(conf, "\0", 1);
1555 fclose(f);
1556 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1557}
1558
1559void
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001560parse_server_match_config(ServerOptions *options,
1561 struct connection_info *connectinfo)
Darren Tucker645ab752004-06-25 13:33:20 +10001562{
Darren Tucker45150472006-07-12 22:34:17 +10001563 ServerOptions mo;
1564
1565 initialize_server_options(&mo);
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001566 parse_server_config(&mo, "reprocess config", &cfg, connectinfo);
Darren Tucker1629c072007-02-19 22:25:37 +11001567 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001568}
1569
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001570int parse_server_match_testspec(struct connection_info *ci, char *spec)
1571{
1572 char *p;
1573
1574 while ((p = strsep(&spec, ",")) && *p != '\0') {
1575 if (strncmp(p, "addr=", 5) == 0) {
1576 ci->address = xstrdup(p + 5);
1577 } else if (strncmp(p, "host=", 5) == 0) {
1578 ci->host = xstrdup(p + 5);
1579 } else if (strncmp(p, "user=", 5) == 0) {
1580 ci->user = xstrdup(p + 5);
1581 } else if (strncmp(p, "laddr=", 6) == 0) {
1582 ci->laddress = xstrdup(p + 6);
1583 } else if (strncmp(p, "lport=", 6) == 0) {
1584 ci->lport = a2port(p + 6);
1585 if (ci->lport == -1) {
1586 fprintf(stderr, "Invalid port '%s' in test mode"
1587 " specification %s\n", p+6, p);
1588 return -1;
1589 }
1590 } else {
1591 fprintf(stderr, "Invalid test mode specification %s\n",
1592 p);
1593 return -1;
1594 }
1595 }
1596 return 0;
1597}
1598
1599/*
1600 * returns 1 for a complete spec, 0 for partial spec and -1 for an
1601 * empty spec.
1602 */
1603int server_match_spec_complete(struct connection_info *ci)
1604{
1605 if (ci->user && ci->host && ci->address)
1606 return 1; /* complete */
1607 if (!ci->user && !ci->host && !ci->address)
1608 return -1; /* empty */
1609 return 0; /* partial */
1610}
1611
Darren Tucker1629c072007-02-19 22:25:37 +11001612/* Helper macros */
1613#define M_CP_INTOPT(n) do {\
1614 if (src->n != -1) \
1615 dst->n = src->n; \
1616} while (0)
1617#define M_CP_STROPT(n) do {\
1618 if (src->n != NULL) { \
1619 if (dst->n != NULL) \
1620 xfree(dst->n); \
1621 dst->n = src->n; \
1622 } \
1623} while(0)
Damien Millerd8478b62011-05-29 21:39:36 +10001624#define M_CP_STRARRAYOPT(n, num_n) do {\
1625 if (src->num_n != 0) { \
1626 for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
1627 dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
1628 } \
1629} while(0)
Darren Tucker1629c072007-02-19 22:25:37 +11001630
1631/*
1632 * Copy any supported values that are set.
1633 *
Darren Tucker3b59dfa2009-06-21 17:54:47 +10001634 * If the preauth flag is set, we do not bother copying the string or
Darren Tucker1629c072007-02-19 22:25:37 +11001635 * array values that are not used pre-authentication, because any that we
1636 * do use must be explictly sent in mm_getpwnamallow().
1637 */
Darren Tucker45150472006-07-12 22:34:17 +10001638void
Darren Tucker1629c072007-02-19 22:25:37 +11001639copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001640{
Darren Tucker1629c072007-02-19 22:25:37 +11001641 M_CP_INTOPT(password_authentication);
1642 M_CP_INTOPT(gss_authentication);
1643 M_CP_INTOPT(rsa_authentication);
1644 M_CP_INTOPT(pubkey_authentication);
1645 M_CP_INTOPT(kerberos_authentication);
1646 M_CP_INTOPT(hostbased_authentication);
Damien Millerab6de352010-06-26 09:38:45 +10001647 M_CP_INTOPT(hostbased_uses_name_from_packet_only);
Darren Tucker1629c072007-02-19 22:25:37 +11001648 M_CP_INTOPT(kbd_interactive_authentication);
Damien Miller01ed2272008-11-05 16:20:46 +11001649 M_CP_INTOPT(zero_knowledge_password_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001650 M_CP_INTOPT(permit_root_login);
Damien Miller51bde602008-11-03 19:23:10 +11001651 M_CP_INTOPT(permit_empty_passwd);
Darren Tucker1629c072007-02-19 22:25:37 +11001652
1653 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001654 M_CP_INTOPT(allow_agent_forwarding);
Damien Millerab6de352010-06-26 09:38:45 +10001655 M_CP_INTOPT(permit_tun);
Darren Tucker1629c072007-02-19 22:25:37 +11001656 M_CP_INTOPT(gateway_ports);
1657 M_CP_INTOPT(x11_display_offset);
1658 M_CP_INTOPT(x11_forwarding);
1659 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001660 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001661 M_CP_INTOPT(max_authtries);
Damien Miller0dac6fb2010-11-20 15:19:38 +11001662 M_CP_INTOPT(ip_qos_interactive);
1663 M_CP_INTOPT(ip_qos_bulk);
Darren Tucker1629c072007-02-19 22:25:37 +11001664
Damien Millerf2e407e2011-05-20 19:04:14 +10001665 /* See comment in servconf.h */
1666 COPY_MATCH_STRING_OPTS();
Damien Miller5d74e582011-05-20 19:03:31 +10001667
Damien Millerc2411902011-05-20 19:03:49 +10001668 /*
1669 * The only things that should be below this point are string options
1670 * which are only used after authentication.
1671 */
Damien Miller5d74e582011-05-20 19:03:31 +10001672 if (preauth)
1673 return;
Damien Millerd8478b62011-05-29 21:39:36 +10001674
Damien Miller5d74e582011-05-20 19:03:31 +10001675 M_CP_STROPT(adm_forced_command);
1676 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001677}
1678
Darren Tucker1629c072007-02-19 22:25:37 +11001679#undef M_CP_INTOPT
1680#undef M_CP_STROPT
Damien Millerd8478b62011-05-29 21:39:36 +10001681#undef M_CP_STRARRAYOPT
Darren Tucker1629c072007-02-19 22:25:37 +11001682
Darren Tucker45150472006-07-12 22:34:17 +10001683void
1684parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001685 struct connection_info *connectinfo)
Darren Tucker45150472006-07-12 22:34:17 +10001686{
1687 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001688 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001689
1690 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1691
Darren Tucker9fbac712004-08-12 22:41:44 +10001692 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001693 active = connectinfo ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001694 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001695 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001696 if (process_server_config_line(options, cp, filename,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001697 linenum++, &active, connectinfo) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001698 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001699 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001700 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001701 if (bad_options > 0)
1702 fatal("%s: terminating, %d bad configuration options",
1703 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001704}
Darren Tuckere7140f22008-06-10 23:01:51 +10001705
1706static const char *
Damien Miller82c55872011-06-23 08:20:30 +10001707fmt_multistate_int(int val, const struct multistate *m)
1708{
1709 u_int i;
1710
1711 for (i = 0; m[i].key != NULL; i++) {
1712 if (m[i].value == val)
1713 return m[i].key;
1714 }
1715 return "UNKNOWN";
1716}
1717
1718static const char *
Darren Tuckere7140f22008-06-10 23:01:51 +10001719fmt_intarg(ServerOpCodes code, int val)
1720{
Damien Miller82c55872011-06-23 08:20:30 +10001721 if (val == -1)
1722 return "unset";
1723 switch (code) {
1724 case sAddressFamily:
1725 return fmt_multistate_int(val, multistate_addressfamily);
1726 case sPermitRootLogin:
1727 return fmt_multistate_int(val, multistate_permitrootlogin);
1728 case sGatewayPorts:
1729 return fmt_multistate_int(val, multistate_gatewayports);
1730 case sCompression:
1731 return fmt_multistate_int(val, multistate_compression);
Damien Miller69ff1df2011-06-23 08:30:03 +10001732 case sUsePrivilegeSeparation:
1733 return fmt_multistate_int(val, multistate_privsep);
Damien Miller82c55872011-06-23 08:20:30 +10001734 case sProtocol:
Darren Tuckere7140f22008-06-10 23:01:51 +10001735 switch (val) {
1736 case SSH_PROTO_1:
1737 return "1";
1738 case SSH_PROTO_2:
1739 return "2";
1740 case (SSH_PROTO_1|SSH_PROTO_2):
1741 return "2,1";
1742 default:
1743 return "UNKNOWN";
1744 }
Damien Miller82c55872011-06-23 08:20:30 +10001745 default:
1746 switch (val) {
1747 case 0:
1748 return "no";
1749 case 1:
1750 return "yes";
1751 default:
1752 return "UNKNOWN";
1753 }
Darren Tuckere7140f22008-06-10 23:01:51 +10001754 }
Darren Tuckere7140f22008-06-10 23:01:51 +10001755}
1756
1757static const char *
1758lookup_opcode_name(ServerOpCodes code)
1759{
1760 u_int i;
1761
1762 for (i = 0; keywords[i].name != NULL; i++)
1763 if (keywords[i].opcode == code)
1764 return(keywords[i].name);
1765 return "UNKNOWN";
1766}
1767
1768static void
1769dump_cfg_int(ServerOpCodes code, int val)
1770{
1771 printf("%s %d\n", lookup_opcode_name(code), val);
1772}
1773
1774static void
1775dump_cfg_fmtint(ServerOpCodes code, int val)
1776{
1777 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1778}
1779
1780static void
1781dump_cfg_string(ServerOpCodes code, const char *val)
1782{
1783 if (val == NULL)
1784 return;
1785 printf("%s %s\n", lookup_opcode_name(code), val);
1786}
1787
1788static void
1789dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1790{
1791 u_int i;
1792
1793 for (i = 0; i < count; i++)
Damien Millerd8478b62011-05-29 21:39:36 +10001794 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1795}
1796
1797static void
1798dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
1799{
1800 u_int i;
1801
1802 printf("%s", lookup_opcode_name(code));
1803 for (i = 0; i < count; i++)
1804 printf(" %s", vals[i]);
1805 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10001806}
1807
1808void
1809dump_config(ServerOptions *o)
1810{
1811 u_int i;
1812 int ret;
1813 struct addrinfo *ai;
1814 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1815
1816 /* these are usually at the top of the config */
1817 for (i = 0; i < o->num_ports; i++)
1818 printf("port %d\n", o->ports[i]);
1819 dump_cfg_fmtint(sProtocol, o->protocol);
1820 dump_cfg_fmtint(sAddressFamily, o->address_family);
1821
1822 /* ListenAddress must be after Port */
1823 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1824 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1825 sizeof(addr), port, sizeof(port),
1826 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1827 error("getnameinfo failed: %.100s",
1828 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1829 strerror(errno));
1830 } else {
1831 if (ai->ai_family == AF_INET6)
1832 printf("listenaddress [%s]:%s\n", addr, port);
1833 else
1834 printf("listenaddress %s:%s\n", addr, port);
1835 }
1836 }
1837
1838 /* integer arguments */
Damien Miller212f0b02008-07-23 17:42:29 +10001839#ifdef USE_PAM
1840 dump_cfg_int(sUsePAM, o->use_pam);
1841#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001842 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1843 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1844 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1845 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1846 dump_cfg_int(sMaxAuthTries, o->max_authtries);
Damien Miller7fc5c0f2008-11-05 16:12:11 +11001847 dump_cfg_int(sMaxSessions, o->max_sessions);
Darren Tuckere7140f22008-06-10 23:01:51 +10001848 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1849 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1850
1851 /* formatted integer arguments */
1852 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1853 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1854 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1855 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1856 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1857 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1858 o->hostbased_uses_name_from_packet_only);
1859 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1860 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
Damien Miller6ef430d2008-07-23 17:40:04 +10001861#ifdef KRB5
Darren Tuckere7140f22008-06-10 23:01:51 +10001862 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1863 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1864 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
Damien Miller6ef430d2008-07-23 17:40:04 +10001865# ifdef USE_AFS
Darren Tuckere7140f22008-06-10 23:01:51 +10001866 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
Damien Miller6ef430d2008-07-23 17:40:04 +10001867# endif
1868#endif
1869#ifdef GSSAPI
Darren Tuckere7140f22008-06-10 23:01:51 +10001870 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1871 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
Damien Miller6ef430d2008-07-23 17:40:04 +10001872#endif
Damien Miller01ed2272008-11-05 16:20:46 +11001873#ifdef JPAKE
1874 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
1875 o->zero_knowledge_password_authentication);
1876#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001877 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1878 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1879 o->kbd_interactive_authentication);
1880 dump_cfg_fmtint(sChallengeResponseAuthentication,
1881 o->challenge_response_authentication);
1882 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1883 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1884 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1885 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1886 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1887 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1888 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1889 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1890 dump_cfg_fmtint(sUseLogin, o->use_login);
1891 dump_cfg_fmtint(sCompression, o->compression);
1892 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1893 dump_cfg_fmtint(sUseDNS, o->use_dns);
1894 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1895 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1896
1897 /* string arguments */
1898 dump_cfg_string(sPidFile, o->pid_file);
1899 dump_cfg_string(sXAuthLocation, o->xauth_location);
1900 dump_cfg_string(sCiphers, o->ciphers);
1901 dump_cfg_string(sMacs, o->macs);
1902 dump_cfg_string(sBanner, o->banner);
Darren Tuckere7140f22008-06-10 23:01:51 +10001903 dump_cfg_string(sForceCommand, o->adm_forced_command);
Darren Tuckerd3300452010-01-10 19:26:43 +11001904 dump_cfg_string(sChrootDirectory, o->chroot_directory);
Damien Miller1aed65e2010-03-04 21:53:35 +11001905 dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
1906 dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
Damien Miller30da3442010-05-10 11:58:03 +10001907 dump_cfg_string(sAuthorizedPrincipalsFile,
1908 o->authorized_principals_file);
Damien Miller23528812012-04-22 11:24:43 +10001909 dump_cfg_string(sVersionAddendum, o->version_addendum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001910
1911 /* string arguments requiring a lookup */
1912 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1913 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1914
1915 /* string array arguments */
Damien Millerd8478b62011-05-29 21:39:36 +10001916 dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
1917 o->authorized_keys_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001918 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1919 o->host_key_files);
Damien Miller0a80ca12010-02-27 07:55:05 +11001920 dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,
1921 o->host_cert_files);
Darren Tuckere7140f22008-06-10 23:01:51 +10001922 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1923 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1924 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1925 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1926 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1927
1928 /* other arguments */
1929 for (i = 0; i < o->num_subsystems; i++)
1930 printf("subsystem %s %s\n", o->subsystem_name[i],
1931 o->subsystem_args[i]);
1932
1933 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1934 o->max_startups_rate, o->max_startups);
1935
1936 for (i = 0; tunmode_desc[i].val != -1; i++)
1937 if (tunmode_desc[i].val == o->permit_tun) {
1938 s = tunmode_desc[i].text;
1939 break;
1940 }
1941 dump_cfg_string(sPermitTunnel, s);
1942
Damien Miller91475862011-05-05 14:14:34 +10001943 printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
1944 printf("%s\n", iptos2str(o->ip_qos_bulk));
Damien Miller0dac6fb2010-11-20 15:19:38 +11001945
Darren Tuckere7140f22008-06-10 23:01:51 +10001946 channel_print_adm_permitted_opens();
Darren Tuckere7140f22008-06-10 23:01:51 +10001947}