blob: 67e7d7db32dfef0ad600800855eff48e2908e27f [file] [log] [blame]
Damien Miller307c1d12008-06-16 07:56:20 +10001/* $OpenBSD: servconf.c,v 1.184 2008/06/15 16:58:40 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10005 *
Damien Millere4340be2000-09-16 13:29:08 +11006 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110011 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100012
13#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Damien Millere3b60b52006-07-10 21:08:03 +100015#include <sys/types.h>
16#include <sys/socket.h>
17
Damien Millerb8fe89c2006-07-24 14:51:00 +100018#include <netdb.h>
Damien Miller565ca3f2006-08-19 00:23:15 +100019#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100020#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100021#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100022#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100023#include <signal.h>
Damien Millere6b3b612006-07-24 14:01:23 +100024#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100025#include <stdarg.h>
Darren Tuckere7140f22008-06-10 23:01:51 +100026#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100027
Damien Millerb84886b2008-05-19 15:05:07 +100028#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100029#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100032#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033#include "servconf.h"
Damien Miller78928792000-04-12 20:17:38 +100034#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "misc.h"
37#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000039#include "kex.h"
40#include "mac.h"
Darren Tucker45150472006-07-12 22:34:17 +100041#include "match.h"
Damien Miller9b439df2006-07-24 14:04:00 +100042#include "channels.h"
Damien Miller565ca3f2006-08-19 00:23:15 +100043#include "groupaccess.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044
Ben Lindstrombba81212001-06-25 05:01:22 +000045static void add_listen_addr(ServerOptions *, char *, u_short);
46static void add_one_listen_addr(ServerOptions *, char *, u_short);
Damien Miller34132e52000-01-14 15:45:46 +110047
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000048/* Use of privilege separation or not */
49extern int use_privsep;
Darren Tucker45150472006-07-12 22:34:17 +100050extern Buffer cfg;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052/* Initializes the server options to their default values. */
53
Damien Miller4af51302000-04-16 11:18:38 +100054void
Damien Miller95def091999-11-25 00:26:21 +110055initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056{
Damien Miller95def091999-11-25 00:26:21 +110057 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110058
59 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100060 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110061
62 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110063 options->num_ports = 0;
64 options->ports_from_cmdline = 0;
65 options->listen_addrs = NULL;
Darren Tucker0f383232005-01-20 10:57:56 +110066 options->address_family = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110067 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100068 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110069 options->server_key_bits = -1;
70 options->login_grace_time = -1;
71 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000072 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110073 options->ignore_rhosts = -1;
74 options->ignore_user_known_hosts = -1;
75 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000076 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110077 options->x11_forwarding = -1;
78 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110079 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100080 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110081 options->strict_modes = -1;
Damien Miller12c150e2003-12-17 16:31:10 +110082 options->tcp_keep_alive = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110083 options->log_facility = SYSLOG_FACILITY_NOT_SET;
84 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110085 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000086 options->hostbased_authentication = -1;
87 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110088 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110089 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110090 options->kerberos_authentication = -1;
91 options->kerberos_or_local_passwd = -1;
92 options->kerberos_ticket_cleanup = -1;
Darren Tucker22ef5082003-12-31 11:37:34 +110093 options->kerberos_get_afs_token = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +100094 options->gss_authentication=-1;
95 options->gss_cleanup_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +110096 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110097 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +000098 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110099 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000100 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +1100101 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000102 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100103 options->allow_tcp_forwarding = -1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000104 options->allow_agent_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +1100105 options->num_allow_users = 0;
106 options->num_deny_users = 0;
107 options->num_allow_groups = 0;
108 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +1000109 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000110 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000111 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000112 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000113 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000114 options->max_startups_begin = -1;
115 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000116 options->max_startups = -1;
Darren Tucker89413db2004-05-24 10:36:23 +1000117 options->max_authtries = -1;
Damien Miller7207f642008-05-19 15:34:50 +1000118 options->max_sessions = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000119 options->banner = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +1000120 options->use_dns = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000121 options->client_alive_interval = -1;
122 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000123 options->authorized_keys_file = NULL;
124 options->authorized_keys_file2 = NULL;
Darren Tucker46bc0752004-05-02 22:11:30 +1000125 options->num_accept_env = 0;
Damien Millerd27b9472005-12-13 19:29:02 +1100126 options->permit_tun = -1;
Damien Millera765cf42006-07-24 14:08:13 +1000127 options->num_permitted_opens = -1;
Damien Millere2754432006-07-24 14:06:47 +1000128 options->adm_forced_command = NULL;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100129 options->chroot_directory = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130}
131
Damien Miller4af51302000-04-16 11:18:38 +1000132void
Damien Miller95def091999-11-25 00:26:21 +1100133fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134{
Damien Miller726273e2001-11-12 11:40:11 +1100135 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000136 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000137 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100138
139 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100140 if (options->protocol == SSH_PROTO_UNKNOWN)
141 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
142 if (options->num_host_key_files == 0) {
143 /* fill default hostkeys for protocols */
144 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100145 options->host_key_files[options->num_host_key_files++] =
146 _PATH_HOST_KEY_FILE;
147 if (options->protocol & SSH_PROTO_2) {
148 options->host_key_files[options->num_host_key_files++] =
149 _PATH_HOST_RSA_KEY_FILE;
150 options->host_key_files[options->num_host_key_files++] =
151 _PATH_HOST_DSA_KEY_FILE;
152 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100153 }
Damien Miller34132e52000-01-14 15:45:46 +1100154 if (options->num_ports == 0)
155 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
156 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000157 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000158 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000159 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100160 if (options->server_key_bits == -1)
161 options->server_key_bits = 768;
162 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000163 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100164 if (options->key_regeneration_time == -1)
165 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000166 if (options->permit_root_login == PERMIT_NOT_SET)
167 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100168 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100169 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100170 if (options->ignore_user_known_hosts == -1)
171 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100172 if (options->print_motd == -1)
173 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000174 if (options->print_lastlog == -1)
175 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100176 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100177 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100178 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100179 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100180 if (options->x11_use_localhost == -1)
181 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000182 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000183 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100184 if (options->strict_modes == -1)
185 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100186 if (options->tcp_keep_alive == -1)
187 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100188 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100189 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100190 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000191 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100192 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100193 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000194 if (options->hostbased_authentication == -1)
195 options->hostbased_authentication = 0;
196 if (options->hostbased_uses_name_from_packet_only == -1)
197 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100198 if (options->rsa_authentication == -1)
199 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100200 if (options->pubkey_authentication == -1)
201 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100202 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000203 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100204 if (options->kerberos_or_local_passwd == -1)
205 options->kerberos_or_local_passwd = 1;
206 if (options->kerberos_ticket_cleanup == -1)
207 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100208 if (options->kerberos_get_afs_token == -1)
209 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000210 if (options->gss_authentication == -1)
211 options->gss_authentication = 0;
212 if (options->gss_cleanup_creds == -1)
213 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100214 if (options->password_authentication == -1)
215 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100216 if (options->kbd_interactive_authentication == -1)
217 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000218 if (options->challenge_response_authentication == -1)
219 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100220 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100221 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000222 if (options->permit_user_env == -1)
223 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100224 if (options->use_login == -1)
225 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000226 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000227 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100228 if (options->allow_tcp_forwarding == -1)
229 options->allow_tcp_forwarding = 1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000230 if (options->allow_agent_forwarding == -1)
231 options->allow_agent_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000232 if (options->gateway_ports == -1)
233 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000234 if (options->max_startups == -1)
235 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000236 if (options->max_startups_rate == -1)
237 options->max_startups_rate = 100; /* 100% */
238 if (options->max_startups_begin == -1)
239 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000240 if (options->max_authtries == -1)
241 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller7207f642008-05-19 15:34:50 +1000242 if (options->max_sessions == -1)
243 options->max_sessions = DEFAULT_SESSIONS_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000244 if (options->use_dns == -1)
245 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000246 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100247 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000248 if (options->client_alive_count_max == -1)
249 options->client_alive_count_max = 3;
Damien Miller75413ac2001-11-12 11:14:35 +1100250 if (options->authorized_keys_file2 == NULL) {
251 /* authorized_keys_file2 falls back to authorized_keys_file */
252 if (options->authorized_keys_file != NULL)
253 options->authorized_keys_file2 = options->authorized_keys_file;
254 else
255 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
256 }
257 if (options->authorized_keys_file == NULL)
258 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerd27b9472005-12-13 19:29:02 +1100259 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100260 options->permit_tun = SSH_TUNMODE_NO;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000261
Ben Lindstromfb62a692002-06-06 19:47:11 +0000262 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000263 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000264 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000265
Tim Rice40017b02002-07-14 13:36:49 -0700266#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000267 if (use_privsep && options->compression == 1) {
268 error("This platform does not support both privilege "
269 "separation and compression");
270 error("Compression disabled");
271 options->compression = 0;
272 }
273#endif
274
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275}
276
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100278typedef enum {
279 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100280 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000281 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100282 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100283 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
284 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000285 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100286 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100287 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000288 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100289 sPasswordAuthentication, sKbdInteractiveAuthentication,
290 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000291 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100292 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100293 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000294 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100295 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000296 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000297 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
Damien Miller7207f642008-05-19 15:34:50 +1000298 sMaxStartups, sMaxAuthTries, sMaxSessions,
Damien Miller3a961dc2003-06-03 10:25:48 +1000299 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100300 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000301 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Damien Millerd27b9472005-12-13 19:29:02 +1100302 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Damien Millerd8cb1f12008-02-10 22:40:12 +1100303 sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
Damien Miller4f755cd2008-05-19 14:57:41 +1000304 sUsePrivilegeSeparation, sAllowAgentForwarding,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000305 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306} ServerOpCodes;
307
Darren Tucker45150472006-07-12 22:34:17 +1000308#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
309#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
310#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
311
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100313static struct {
314 const char *name;
315 ServerOpCodes opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000316 u_int flags;
Damien Miller95def091999-11-25 00:26:21 +1100317} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100318 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000319#ifdef USE_PAM
Darren Tucker45150472006-07-12 22:34:17 +1000320 { "usepam", sUsePAM, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000321#else
Darren Tucker45150472006-07-12 22:34:17 +1000322 { "usepam", sUnsupported, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000323#endif
Darren Tucker45150472006-07-12 22:34:17 +1000324 { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
Damien Miller726273e2001-11-12 11:40:11 +1100325 /* Standard Options */
Darren Tucker45150472006-07-12 22:34:17 +1000326 { "port", sPort, SSHCFG_GLOBAL },
327 { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
328 { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
329 { "pidfile", sPidFile, SSHCFG_GLOBAL },
330 { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
331 { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
332 { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
Darren Tucker15f94272008-01-01 20:36:56 +1100333 { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000334 { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
335 { "loglevel", sLogLevel, SSHCFG_GLOBAL },
336 { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100337 { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
338 { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000339 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100340 { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
341 { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000342 { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000343#ifdef KRB5
Darren Tucker1629c072007-02-19 22:25:37 +1100344 { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000345 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
346 { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100347#ifdef USE_AFS
Darren Tucker45150472006-07-12 22:34:17 +1000348 { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000349#else
Darren Tucker45150472006-07-12 22:34:17 +1000350 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker409cb322004-01-05 22:36:51 +1100351#endif
352#else
Darren Tucker1629c072007-02-19 22:25:37 +1100353 { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000354 { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
355 { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
356 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000357#endif
Darren Tucker45150472006-07-12 22:34:17 +1000358 { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
359 { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000360#ifdef GSSAPI
Darren Tucker1629c072007-02-19 22:25:37 +1100361 { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000362 { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000363#else
Darren Tucker1629c072007-02-19 22:25:37 +1100364 { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000365 { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000366#endif
Darren Tucker1629c072007-02-19 22:25:37 +1100367 { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
368 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
Darren Tucker1d75f222007-03-01 21:31:28 +1100369 { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000370 { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
371 { "checkmail", sDeprecated, SSHCFG_GLOBAL },
372 { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
373 { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
374 { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
375 { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
376 { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
377 { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
Damien Millerd1de9952006-07-24 14:05:48 +1000378 { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
379 { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
380 { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000381 { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
382 { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
383 { "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },
384 { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
385 { "uselogin", sUseLogin, SSHCFG_GLOBAL },
386 { "compression", sCompression, SSHCFG_GLOBAL },
387 { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
388 { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
389 { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
Damien Miller4f755cd2008-05-19 14:57:41 +1000390 { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000391 { "allowusers", sAllowUsers, SSHCFG_GLOBAL },
392 { "denyusers", sDenyUsers, SSHCFG_GLOBAL },
393 { "allowgroups", sAllowGroups, SSHCFG_GLOBAL },
394 { "denygroups", sDenyGroups, SSHCFG_GLOBAL },
395 { "ciphers", sCiphers, SSHCFG_GLOBAL },
396 { "macs", sMacs, SSHCFG_GLOBAL },
397 { "protocol", sProtocol, SSHCFG_GLOBAL },
398 { "gatewayports", sGatewayPorts, SSHCFG_ALL },
399 { "subsystem", sSubsystem, SSHCFG_GLOBAL },
400 { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
Damien Miller307c1d12008-06-16 07:56:20 +1000401 { "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
Damien Miller7207f642008-05-19 15:34:50 +1000402 { "maxsessions", sMaxSessions, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100403 { "banner", sBanner, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000404 { "usedns", sUseDNS, SSHCFG_GLOBAL },
405 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
406 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
407 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
408 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
409 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL },
410 { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL },
411 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL },
412 { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
413 { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL },
Damien Miller9b439df2006-07-24 14:04:00 +1000414 { "match", sMatch, SSHCFG_ALL },
415 { "permitopen", sPermitOpen, SSHCFG_ALL },
Damien Millere2754432006-07-24 14:06:47 +1000416 { "forcecommand", sForceCommand, SSHCFG_ALL },
Damien Millerd8cb1f12008-02-10 22:40:12 +1100417 { "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000418 { NULL, sBadOption, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419};
420
Darren Tuckere7140f22008-06-10 23:01:51 +1000421static struct {
422 int val;
423 char *text;
424} tunmode_desc[] = {
425 { SSH_TUNMODE_NO, "no" },
426 { SSH_TUNMODE_POINTOPOINT, "point-to-point" },
427 { SSH_TUNMODE_ETHERNET, "ethernet" },
428 { SSH_TUNMODE_YES, "yes" },
429 { -1, NULL }
430};
431
Damien Miller5428f641999-11-25 11:54:57 +1100432/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000433 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100434 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435
Damien Miller4af51302000-04-16 11:18:38 +1000436static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100437parse_token(const char *cp, const char *filename,
Darren Tucker45150472006-07-12 22:34:17 +1000438 int linenum, u_int *flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000440 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Damien Miller95def091999-11-25 00:26:21 +1100442 for (i = 0; keywords[i].name; i++)
Darren Tucker45150472006-07-12 22:34:17 +1000443 if (strcasecmp(cp, keywords[i].name) == 0) {
444 *flags = keywords[i].flags;
Damien Miller95def091999-11-25 00:26:21 +1100445 return keywords[i].opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000446 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000448 error("%s: line %d: Bad configuration option: %s",
449 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100450 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451}
452
Ben Lindstrombba81212001-06-25 05:01:22 +0000453static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000454add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100455{
Damien Millereccb9de2005-06-17 12:59:34 +1000456 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100457
458 if (options->num_ports == 0)
459 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100460 if (options->address_family == -1)
461 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000462 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000463 for (i = 0; i < options->num_ports; i++)
464 add_one_listen_addr(options, addr, options->ports[i]);
465 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000466 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000467}
468
Ben Lindstrombba81212001-06-25 05:01:22 +0000469static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000470add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
471{
472 struct addrinfo hints, *ai, *aitop;
473 char strport[NI_MAXSERV];
474 int gaierr;
475
476 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100477 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000478 hints.ai_socktype = SOCK_STREAM;
479 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000480 snprintf(strport, sizeof strport, "%u", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000481 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
482 fatal("bad addr or host: %s (%s)",
483 addr ? addr : "<NULL>",
Darren Tucker4abde772007-12-29 02:43:51 +1100484 ssh_gai_strerror(gaierr));
Ben Lindstromc510af42001-04-07 17:25:48 +0000485 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
486 ;
487 ai->ai_next = options->listen_addrs;
488 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100489}
490
Darren Tucker45150472006-07-12 22:34:17 +1000491/*
492 * The strategy for the Match blocks is that the config file is parsed twice.
493 *
494 * The first time is at startup. activep is initialized to 1 and the
495 * directives in the global context are processed and acted on. Hitting a
496 * Match directive unsets activep and the directives inside the block are
497 * checked for syntax only.
498 *
499 * The second time is after a connection has been established but before
500 * authentication. activep is initialized to 2 and global config directives
501 * are ignored since they have already been processed. If the criteria in a
502 * Match block is met, activep is set and the subsequent directives
503 * processed and actioned until EOF or another Match block unsets it. Any
504 * options set are copied into the main server config.
505 *
506 * Potential additions/improvements:
507 * - Add Match support for pre-kex directives, eg Protocol, Ciphers.
508 *
509 * - Add a Tag directive (idea from David Leonard) ala pf, eg:
510 * Match Address 192.168.0.*
511 * Tag trusted
512 * Match Group wheel
513 * Tag trusted
514 * Match Tag trusted
515 * AllowTcpForwarding yes
516 * GatewayPorts clientspecified
517 * [...]
518 *
519 * - Add a PermittedChannelRequests directive
520 * Match Group shell
521 * PermittedChannelRequests session,forwarded-tcpip
522 */
523
524static int
Damien Miller565ca3f2006-08-19 00:23:15 +1000525match_cfg_line_group(const char *grps, int line, const char *user)
526{
527 int result = 0;
528 u_int ngrps = 0;
529 char *arg, *p, *cp, *grplist[MAX_MATCH_GROUPS];
530 struct passwd *pw;
531
532 /*
533 * Even if we do not have a user yet, we still need to check for
534 * valid syntax.
535 */
536 arg = cp = xstrdup(grps);
537 while ((p = strsep(&cp, ",")) != NULL && *p != '\0') {
538 if (ngrps >= MAX_MATCH_GROUPS) {
539 error("line %d: too many groups in Match Group", line);
540 result = -1;
541 goto out;
542 }
543 grplist[ngrps++] = p;
544 }
545
546 if (user == NULL)
547 goto out;
548
549 if ((pw = getpwnam(user)) == NULL) {
550 debug("Can't match group at line %d because user %.100s does "
551 "not exist", line, user);
552 } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
553 debug("Can't Match group because user %.100s not in any group "
554 "at line %d", user, line);
555 } else if (ga_match(grplist, ngrps) != 1) {
556 debug("user %.100s does not match group %.100s at line %d",
557 user, arg, line);
558 } else {
559 debug("user %.100s matched group %.100s at line %d", user,
560 arg, line);
561 result = 1;
562 }
563out:
564 ga_free();
565 xfree(arg);
566 return result;
567}
568
569static int
Darren Tucker45150472006-07-12 22:34:17 +1000570match_cfg_line(char **condition, int line, const char *user, const char *host,
571 const char *address)
572{
573 int result = 1;
574 char *arg, *attrib, *cp = *condition;
575 size_t len;
576
577 if (user == NULL)
578 debug3("checking syntax for 'Match %s'", cp);
579 else
580 debug3("checking match for '%s' user %s host %s addr %s", cp,
581 user ? user : "(null)", host ? host : "(null)",
582 address ? address : "(null)");
583
584 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
585 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
586 error("Missing Match criteria for %s", attrib);
587 return -1;
588 }
589 len = strlen(arg);
590 if (strcasecmp(attrib, "user") == 0) {
591 if (!user) {
592 result = 0;
593 continue;
594 }
595 if (match_pattern_list(user, arg, len, 0) != 1)
596 result = 0;
597 else
598 debug("user %.100s matched 'User %.100s' at "
599 "line %d", user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000600 } else if (strcasecmp(attrib, "group") == 0) {
601 switch (match_cfg_line_group(arg, line, user)) {
602 case -1:
603 return -1;
604 case 0:
605 result = 0;
606 }
Darren Tucker45150472006-07-12 22:34:17 +1000607 } else if (strcasecmp(attrib, "host") == 0) {
608 if (!host) {
609 result = 0;
610 continue;
611 }
612 if (match_hostname(host, arg, len) != 1)
613 result = 0;
614 else
615 debug("connection from %.100s matched 'Host "
616 "%.100s' at line %d", host, arg, line);
617 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tucker7a3935d2008-06-10 22:59:10 +1000618 switch (addr_match_list(address, arg)) {
619 case 1:
Darren Tucker45150472006-07-12 22:34:17 +1000620 debug("connection from %.100s matched 'Address "
621 "%.100s' at line %d", address, arg, line);
Darren Tucker7a3935d2008-06-10 22:59:10 +1000622 break;
623 case 0:
Darren Tucker896ad5a2008-06-11 09:34:46 +1000624 case -1:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000625 result = 0;
626 break;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000627 case -2:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000628 return -1;
629 }
Darren Tucker45150472006-07-12 22:34:17 +1000630 } else {
631 error("Unsupported Match attribute %s", attrib);
632 return -1;
633 }
634 }
635 if (user != NULL)
636 debug3("match %sfound", result ? "" : "not ");
637 *condition = cp;
638 return result;
639}
640
Damien Millere2754432006-07-24 14:06:47 +1000641#define WHITESPACE " \t\r\n"
642
Ben Lindstromade03f62001-12-06 18:22:17 +0000643int
644process_server_config_line(ServerOptions *options, char *line,
Darren Tucker45150472006-07-12 22:34:17 +1000645 const char *filename, int linenum, int *activep, const char *user,
646 const char *host, const char *address)
Ben Lindstromade03f62001-12-06 18:22:17 +0000647{
648 char *cp, **charptr, *arg, *p;
Darren Tucker45150472006-07-12 22:34:17 +1000649 int cmdline = 0, *intptr, value, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100650 SyslogFacility *log_facility_ptr;
651 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000652 ServerOpCodes opcode;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100653 u_short port;
Darren Tucker45150472006-07-12 22:34:17 +1000654 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000655 size_t len;
Ben Lindstromade03f62001-12-06 18:22:17 +0000656
657 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100658 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100659 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000660 /* Ignore leading whitespace */
661 if (*arg == '\0')
662 arg = strdelim(&cp);
663 if (!arg || !*arg || *arg == '#')
664 return 0;
665 intptr = NULL;
666 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000667 opcode = parse_token(arg, filename, linenum, &flags);
668
669 if (activep == NULL) { /* We are processing a command line directive */
670 cmdline = 1;
671 activep = &cmdline;
672 }
673 if (*activep && opcode != sMatch)
674 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
675 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
676 if (user == NULL) {
677 fatal("%s line %d: Directive '%s' is not allowed "
678 "within a Match block", filename, linenum, arg);
679 } else { /* this is a directive we have already processed */
680 while (arg)
681 arg = strdelim(&cp);
682 return 0;
683 }
684 }
685
Ben Lindstromade03f62001-12-06 18:22:17 +0000686 switch (opcode) {
687 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000688 case sUsePAM:
689 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000690 goto parse_flag;
691
692 /* Standard Options */
693 case sBadOption:
694 return -1;
695 case sPort:
696 /* ignore ports from configfile if cmdline specifies ports */
697 if (options->ports_from_cmdline)
698 return 0;
699 if (options->listen_addrs != NULL)
700 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100701 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000702 if (options->num_ports >= MAX_PORTS)
703 fatal("%s line %d: too many ports.",
704 filename, linenum);
705 arg = strdelim(&cp);
706 if (!arg || *arg == '\0')
707 fatal("%s line %d: missing port number.",
708 filename, linenum);
709 options->ports[options->num_ports++] = a2port(arg);
710 if (options->ports[options->num_ports-1] == 0)
711 fatal("%s line %d: Badly formatted port number.",
712 filename, linenum);
713 break;
714
715 case sServerKeyBits:
716 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000717 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000718 arg = strdelim(&cp);
719 if (!arg || *arg == '\0')
720 fatal("%s line %d: missing integer value.",
721 filename, linenum);
722 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000723 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000724 *intptr = value;
725 break;
726
727 case sLoginGraceTime:
728 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000729 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000730 arg = strdelim(&cp);
731 if (!arg || *arg == '\0')
732 fatal("%s line %d: missing time value.",
733 filename, linenum);
734 if ((value = convtime(arg)) == -1)
735 fatal("%s line %d: invalid time value.",
736 filename, linenum);
737 if (*intptr == -1)
738 *intptr = value;
739 break;
740
741 case sKeyRegenerationTime:
742 intptr = &options->key_regeneration_time;
743 goto parse_time;
744
745 case sListenAddress:
746 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100747 if (arg == NULL || *arg == '\0')
748 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000749 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000750 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
751 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
752 && strchr(p+1, ':') != NULL) {
753 add_listen_addr(options, arg, 0);
754 break;
755 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100756 p = hpdelim(&arg);
757 if (p == NULL)
758 fatal("%s line %d: bad address:port usage",
759 filename, linenum);
760 p = cleanhostname(p);
761 if (arg == NULL)
762 port = 0;
763 else if ((port = a2port(arg)) == 0)
764 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000765
Damien Millerf91ee4c2005-03-01 21:24:33 +1100766 add_listen_addr(options, p, port);
767
Ben Lindstromade03f62001-12-06 18:22:17 +0000768 break;
769
Darren Tucker0f383232005-01-20 10:57:56 +1100770 case sAddressFamily:
771 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000772 if (!arg || *arg == '\0')
773 fatal("%s line %d: missing address family.",
774 filename, linenum);
Darren Tucker0f383232005-01-20 10:57:56 +1100775 intptr = &options->address_family;
776 if (options->listen_addrs != NULL)
777 fatal("%s line %d: address family must be specified before "
778 "ListenAddress.", filename, linenum);
779 if (strcasecmp(arg, "inet") == 0)
780 value = AF_INET;
781 else if (strcasecmp(arg, "inet6") == 0)
782 value = AF_INET6;
783 else if (strcasecmp(arg, "any") == 0)
784 value = AF_UNSPEC;
785 else
786 fatal("%s line %d: unsupported address family \"%s\".",
787 filename, linenum, arg);
788 if (*intptr == -1)
789 *intptr = value;
790 break;
791
Ben Lindstromade03f62001-12-06 18:22:17 +0000792 case sHostKeyFile:
793 intptr = &options->num_host_key_files;
794 if (*intptr >= MAX_HOSTKEYS)
795 fatal("%s line %d: too many host keys specified (max %d).",
796 filename, linenum, MAX_HOSTKEYS);
797 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000798 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000799 arg = strdelim(&cp);
800 if (!arg || *arg == '\0')
801 fatal("%s line %d: missing file name.",
802 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000803 if (*activep && *charptr == NULL) {
Ben Lindstromade03f62001-12-06 18:22:17 +0000804 *charptr = tilde_expand_filename(arg, getuid());
805 /* increase optional counter */
806 if (intptr != NULL)
807 *intptr = *intptr + 1;
808 }
809 break;
810
811 case sPidFile:
812 charptr = &options->pid_file;
813 goto parse_filename;
814
815 case sPermitRootLogin:
816 intptr = &options->permit_root_login;
817 arg = strdelim(&cp);
818 if (!arg || *arg == '\0')
819 fatal("%s line %d: missing yes/"
820 "without-password/forced-commands-only/no "
821 "argument.", filename, linenum);
822 value = 0; /* silence compiler */
823 if (strcmp(arg, "without-password") == 0)
824 value = PERMIT_NO_PASSWD;
825 else if (strcmp(arg, "forced-commands-only") == 0)
826 value = PERMIT_FORCED_ONLY;
827 else if (strcmp(arg, "yes") == 0)
828 value = PERMIT_YES;
829 else if (strcmp(arg, "no") == 0)
830 value = PERMIT_NO;
831 else
832 fatal("%s line %d: Bad yes/"
833 "without-password/forced-commands-only/no "
834 "argument: %s", filename, linenum, arg);
Darren Tucker15f94272008-01-01 20:36:56 +1100835 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000836 *intptr = value;
837 break;
838
839 case sIgnoreRhosts:
840 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000841 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000842 arg = strdelim(&cp);
843 if (!arg || *arg == '\0')
844 fatal("%s line %d: missing yes/no argument.",
845 filename, linenum);
846 value = 0; /* silence compiler */
847 if (strcmp(arg, "yes") == 0)
848 value = 1;
849 else if (strcmp(arg, "no") == 0)
850 value = 0;
851 else
852 fatal("%s line %d: Bad yes/no argument: %s",
853 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000854 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000855 *intptr = value;
856 break;
857
858 case sIgnoreUserKnownHosts:
859 intptr = &options->ignore_user_known_hosts;
860 goto parse_flag;
861
Ben Lindstromade03f62001-12-06 18:22:17 +0000862 case sRhostsRSAAuthentication:
863 intptr = &options->rhosts_rsa_authentication;
864 goto parse_flag;
865
866 case sHostbasedAuthentication:
867 intptr = &options->hostbased_authentication;
868 goto parse_flag;
869
870 case sHostbasedUsesNameFromPacketOnly:
871 intptr = &options->hostbased_uses_name_from_packet_only;
872 goto parse_flag;
873
874 case sRSAAuthentication:
875 intptr = &options->rsa_authentication;
876 goto parse_flag;
877
878 case sPubkeyAuthentication:
879 intptr = &options->pubkey_authentication;
880 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000881
Ben Lindstromade03f62001-12-06 18:22:17 +0000882 case sKerberosAuthentication:
883 intptr = &options->kerberos_authentication;
884 goto parse_flag;
885
886 case sKerberosOrLocalPasswd:
887 intptr = &options->kerberos_or_local_passwd;
888 goto parse_flag;
889
890 case sKerberosTicketCleanup:
891 intptr = &options->kerberos_ticket_cleanup;
892 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000893
Darren Tucker22ef5082003-12-31 11:37:34 +1100894 case sKerberosGetAFSToken:
895 intptr = &options->kerberos_get_afs_token;
896 goto parse_flag;
897
Darren Tucker0efd1552003-08-26 11:49:55 +1000898 case sGssAuthentication:
899 intptr = &options->gss_authentication;
900 goto parse_flag;
901
902 case sGssCleanupCreds:
903 intptr = &options->gss_cleanup_creds;
904 goto parse_flag;
905
Ben Lindstromade03f62001-12-06 18:22:17 +0000906 case sPasswordAuthentication:
907 intptr = &options->password_authentication;
908 goto parse_flag;
909
910 case sKbdInteractiveAuthentication:
911 intptr = &options->kbd_interactive_authentication;
912 goto parse_flag;
913
914 case sChallengeResponseAuthentication:
915 intptr = &options->challenge_response_authentication;
916 goto parse_flag;
917
918 case sPrintMotd:
919 intptr = &options->print_motd;
920 goto parse_flag;
921
922 case sPrintLastLog:
923 intptr = &options->print_lastlog;
924 goto parse_flag;
925
926 case sX11Forwarding:
927 intptr = &options->x11_forwarding;
928 goto parse_flag;
929
930 case sX11DisplayOffset:
931 intptr = &options->x11_display_offset;
932 goto parse_int;
933
Damien Miller95c249f2002-02-05 12:11:34 +1100934 case sX11UseLocalhost:
935 intptr = &options->x11_use_localhost;
936 goto parse_flag;
937
Ben Lindstromade03f62001-12-06 18:22:17 +0000938 case sXAuthLocation:
939 charptr = &options->xauth_location;
940 goto parse_filename;
941
942 case sStrictModes:
943 intptr = &options->strict_modes;
944 goto parse_flag;
945
Damien Miller12c150e2003-12-17 16:31:10 +1100946 case sTCPKeepAlive:
947 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +0000948 goto parse_flag;
949
950 case sEmptyPasswd:
951 intptr = &options->permit_empty_passwd;
952 goto parse_flag;
953
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000954 case sPermitUserEnvironment:
955 intptr = &options->permit_user_env;
956 goto parse_flag;
957
Ben Lindstromade03f62001-12-06 18:22:17 +0000958 case sUseLogin:
959 intptr = &options->use_login;
960 goto parse_flag;
961
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000962 case sCompression:
963 intptr = &options->compression;
Damien Miller9786e6e2005-07-26 21:54:56 +1000964 arg = strdelim(&cp);
965 if (!arg || *arg == '\0')
966 fatal("%s line %d: missing yes/no/delayed "
967 "argument.", filename, linenum);
968 value = 0; /* silence compiler */
969 if (strcmp(arg, "delayed") == 0)
970 value = COMP_DELAYED;
971 else if (strcmp(arg, "yes") == 0)
972 value = COMP_ZLIB;
973 else if (strcmp(arg, "no") == 0)
974 value = COMP_NONE;
975 else
976 fatal("%s line %d: Bad yes/no/delayed "
977 "argument: %s", filename, linenum, arg);
978 if (*intptr == -1)
979 *intptr = value;
980 break;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000981
Ben Lindstromade03f62001-12-06 18:22:17 +0000982 case sGatewayPorts:
983 intptr = &options->gateway_ports;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100984 arg = strdelim(&cp);
985 if (!arg || *arg == '\0')
986 fatal("%s line %d: missing yes/no/clientspecified "
987 "argument.", filename, linenum);
988 value = 0; /* silence compiler */
989 if (strcmp(arg, "clientspecified") == 0)
990 value = 2;
991 else if (strcmp(arg, "yes") == 0)
992 value = 1;
993 else if (strcmp(arg, "no") == 0)
994 value = 0;
995 else
996 fatal("%s line %d: Bad yes/no/clientspecified "
997 "argument: %s", filename, linenum, arg);
Darren Tucker82347a82007-02-25 20:37:52 +1100998 if (*activep && *intptr == -1)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100999 *intptr = value;
1000 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001001
Damien Miller3a961dc2003-06-03 10:25:48 +10001002 case sUseDNS:
1003 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001004 goto parse_flag;
1005
1006 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001007 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001008 arg = strdelim(&cp);
1009 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001010 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001011 fatal("%.200s line %d: unsupported log facility '%s'",
1012 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001013 if (*log_facility_ptr == -1)
1014 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001015 break;
1016
1017 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001018 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001019 arg = strdelim(&cp);
1020 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001021 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001022 fatal("%.200s line %d: unsupported log level '%s'",
1023 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001024 if (*log_level_ptr == -1)
1025 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001026 break;
1027
1028 case sAllowTcpForwarding:
1029 intptr = &options->allow_tcp_forwarding;
1030 goto parse_flag;
1031
Damien Miller4f755cd2008-05-19 14:57:41 +10001032 case sAllowAgentForwarding:
1033 intptr = &options->allow_agent_forwarding;
1034 goto parse_flag;
1035
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001036 case sUsePrivilegeSeparation:
1037 intptr = &use_privsep;
1038 goto parse_flag;
1039
Ben Lindstromade03f62001-12-06 18:22:17 +00001040 case sAllowUsers:
1041 while ((arg = strdelim(&cp)) && *arg != '\0') {
1042 if (options->num_allow_users >= MAX_ALLOW_USERS)
1043 fatal("%s line %d: too many allow users.",
1044 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001045 options->allow_users[options->num_allow_users++] =
1046 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001047 }
1048 break;
1049
1050 case sDenyUsers:
1051 while ((arg = strdelim(&cp)) && *arg != '\0') {
1052 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001053 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001054 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001055 options->deny_users[options->num_deny_users++] =
1056 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001057 }
1058 break;
1059
1060 case sAllowGroups:
1061 while ((arg = strdelim(&cp)) && *arg != '\0') {
1062 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1063 fatal("%s line %d: too many allow groups.",
1064 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001065 options->allow_groups[options->num_allow_groups++] =
1066 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001067 }
1068 break;
1069
1070 case sDenyGroups:
1071 while ((arg = strdelim(&cp)) && *arg != '\0') {
1072 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1073 fatal("%s line %d: too many deny groups.",
1074 filename, linenum);
1075 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
1076 }
1077 break;
1078
1079 case sCiphers:
1080 arg = strdelim(&cp);
1081 if (!arg || *arg == '\0')
1082 fatal("%s line %d: Missing argument.", filename, linenum);
1083 if (!ciphers_valid(arg))
1084 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1085 filename, linenum, arg ? arg : "<NONE>");
1086 if (options->ciphers == NULL)
1087 options->ciphers = xstrdup(arg);
1088 break;
1089
1090 case sMacs:
1091 arg = strdelim(&cp);
1092 if (!arg || *arg == '\0')
1093 fatal("%s line %d: Missing argument.", filename, linenum);
1094 if (!mac_valid(arg))
1095 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1096 filename, linenum, arg ? arg : "<NONE>");
1097 if (options->macs == NULL)
1098 options->macs = xstrdup(arg);
1099 break;
1100
1101 case sProtocol:
1102 intptr = &options->protocol;
1103 arg = strdelim(&cp);
1104 if (!arg || *arg == '\0')
1105 fatal("%s line %d: Missing argument.", filename, linenum);
1106 value = proto_spec(arg);
1107 if (value == SSH_PROTO_UNKNOWN)
1108 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001109 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001110 if (*intptr == SSH_PROTO_UNKNOWN)
1111 *intptr = value;
1112 break;
1113
1114 case sSubsystem:
1115 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1116 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001117 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001118 }
1119 arg = strdelim(&cp);
1120 if (!arg || *arg == '\0')
1121 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001122 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001123 if (!*activep) {
1124 arg = strdelim(&cp);
1125 break;
1126 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001127 for (i = 0; i < options->num_subsystems; i++)
1128 if (strcmp(arg, options->subsystem_name[i]) == 0)
1129 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001130 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001131 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1132 arg = strdelim(&cp);
1133 if (!arg || *arg == '\0')
1134 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001135 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001136 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001137
1138 /* Collect arguments (separate to executable) */
1139 p = xstrdup(arg);
1140 len = strlen(p) + 1;
1141 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1142 len += 1 + strlen(arg);
1143 p = xrealloc(p, 1, len);
1144 strlcat(p, " ", len);
1145 strlcat(p, arg, len);
1146 }
1147 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001148 options->num_subsystems++;
1149 break;
1150
1151 case sMaxStartups:
1152 arg = strdelim(&cp);
1153 if (!arg || *arg == '\0')
1154 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001155 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001156 if ((n = sscanf(arg, "%d:%d:%d",
1157 &options->max_startups_begin,
1158 &options->max_startups_rate,
1159 &options->max_startups)) == 3) {
1160 if (options->max_startups_begin >
1161 options->max_startups ||
1162 options->max_startups_rate > 100 ||
1163 options->max_startups_rate < 1)
1164 fatal("%s line %d: Illegal MaxStartups spec.",
1165 filename, linenum);
1166 } else if (n != 1)
1167 fatal("%s line %d: Illegal MaxStartups spec.",
1168 filename, linenum);
1169 else
1170 options->max_startups = options->max_startups_begin;
1171 break;
1172
Darren Tucker89413db2004-05-24 10:36:23 +10001173 case sMaxAuthTries:
1174 intptr = &options->max_authtries;
1175 goto parse_int;
1176
Damien Miller7207f642008-05-19 15:34:50 +10001177 case sMaxSessions:
1178 intptr = &options->max_sessions;
1179 goto parse_int;
1180
Ben Lindstromade03f62001-12-06 18:22:17 +00001181 case sBanner:
1182 charptr = &options->banner;
1183 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001184
Ben Lindstromade03f62001-12-06 18:22:17 +00001185 /*
1186 * These options can contain %X options expanded at
1187 * connect time, so that you can specify paths like:
1188 *
1189 * AuthorizedKeysFile /etc/ssh_keys/%u
1190 */
1191 case sAuthorizedKeysFile:
1192 case sAuthorizedKeysFile2:
Damien Miller4dec5d72006-08-05 11:38:40 +10001193 charptr = (opcode == sAuthorizedKeysFile) ?
Ben Lindstromade03f62001-12-06 18:22:17 +00001194 &options->authorized_keys_file :
1195 &options->authorized_keys_file2;
1196 goto parse_filename;
1197
1198 case sClientAliveInterval:
1199 intptr = &options->client_alive_interval;
1200 goto parse_time;
1201
1202 case sClientAliveCountMax:
1203 intptr = &options->client_alive_count_max;
1204 goto parse_int;
1205
Darren Tucker46bc0752004-05-02 22:11:30 +10001206 case sAcceptEnv:
1207 while ((arg = strdelim(&cp)) && *arg != '\0') {
1208 if (strchr(arg, '=') != NULL)
1209 fatal("%s line %d: Invalid environment name.",
1210 filename, linenum);
1211 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1212 fatal("%s line %d: too many allow env.",
1213 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001214 if (!*activep)
1215 break;
Darren Tucker46bc0752004-05-02 22:11:30 +10001216 options->accept_env[options->num_accept_env++] =
1217 xstrdup(arg);
1218 }
1219 break;
1220
Damien Millerd27b9472005-12-13 19:29:02 +11001221 case sPermitTunnel:
1222 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001223 arg = strdelim(&cp);
1224 if (!arg || *arg == '\0')
1225 fatal("%s line %d: Missing yes/point-to-point/"
1226 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001227 value = -1;
1228 for (i = 0; tunmode_desc[i].val != -1; i++)
1229 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1230 value = tunmode_desc[i].val;
1231 break;
1232 }
1233 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001234 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1235 "no argument: %s", filename, linenum, arg);
1236 if (*intptr == -1)
1237 *intptr = value;
1238 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001239
Darren Tucker45150472006-07-12 22:34:17 +10001240 case sMatch:
1241 if (cmdline)
1242 fatal("Match directive not supported as a command-line "
1243 "option");
1244 value = match_cfg_line(&cp, linenum, user, host, address);
1245 if (value < 0)
1246 fatal("%s line %d: Bad Match condition", filename,
1247 linenum);
1248 *activep = value;
1249 break;
1250
Damien Miller9b439df2006-07-24 14:04:00 +10001251 case sPermitOpen:
1252 arg = strdelim(&cp);
1253 if (!arg || *arg == '\0')
1254 fatal("%s line %d: missing PermitOpen specification",
1255 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001256 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001257 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001258 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001259 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001260 options->num_permitted_opens = 0;
1261 }
Damien Miller9b439df2006-07-24 14:04:00 +10001262 break;
1263 }
Damien Millera29b95e2007-01-05 16:28:36 +11001264 if (*activep && n == -1)
1265 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001266 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1267 p = hpdelim(&arg);
1268 if (p == NULL)
1269 fatal("%s line %d: missing host in PermitOpen",
1270 filename, linenum);
1271 p = cleanhostname(p);
1272 if (arg == NULL || (port = a2port(arg)) == 0)
1273 fatal("%s line %d: bad port number in "
1274 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001275 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001276 options->num_permitted_opens =
1277 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001278 }
Damien Miller9b439df2006-07-24 14:04:00 +10001279 break;
1280
Damien Millere2754432006-07-24 14:06:47 +10001281 case sForceCommand:
1282 if (cp == NULL)
1283 fatal("%.200s line %d: Missing argument.", filename,
1284 linenum);
1285 len = strspn(cp, WHITESPACE);
1286 if (*activep && options->adm_forced_command == NULL)
1287 options->adm_forced_command = xstrdup(cp + len);
1288 return 0;
1289
Damien Millerd8cb1f12008-02-10 22:40:12 +11001290 case sChrootDirectory:
1291 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001292
1293 arg = strdelim(&cp);
1294 if (!arg || *arg == '\0')
1295 fatal("%s line %d: missing file name.",
1296 filename, linenum);
1297 if (*activep && *charptr == NULL)
1298 *charptr = xstrdup(arg);
1299 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001300
Ben Lindstromade03f62001-12-06 18:22:17 +00001301 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001302 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001303 filename, linenum, arg);
1304 while (arg)
1305 arg = strdelim(&cp);
1306 break;
1307
Damien Millerf9b3feb2003-05-16 11:38:32 +10001308 case sUnsupported:
1309 logit("%s line %d: Unsupported option %s",
1310 filename, linenum, arg);
1311 while (arg)
1312 arg = strdelim(&cp);
1313 break;
1314
Ben Lindstromade03f62001-12-06 18:22:17 +00001315 default:
1316 fatal("%s line %d: Missing handler for opcode %s (%d)",
1317 filename, linenum, arg, opcode);
1318 }
1319 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1320 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1321 filename, linenum, arg);
1322 return 0;
1323}
1324
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001325/* Reads the server configuration file. */
1326
Damien Miller4af51302000-04-16 11:18:38 +10001327void
Darren Tucker645ab752004-06-25 13:33:20 +10001328load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001329{
Darren Tucker645ab752004-06-25 13:33:20 +10001330 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001331 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001332
Darren Tucker645ab752004-06-25 13:33:20 +10001333 debug2("%s: filename %s", __func__, filename);
1334 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001335 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001336 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001337 }
Darren Tucker645ab752004-06-25 13:33:20 +10001338 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001339 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001340 /*
1341 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001342 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001343 * line numbers later for error messages
1344 */
1345 if ((cp = strchr(line, '#')) != NULL)
1346 memcpy(cp, "\n", 2);
1347 cp = line + strspn(line, " \t\r");
1348
1349 buffer_append(conf, cp, strlen(cp));
1350 }
1351 buffer_append(conf, "\0", 1);
1352 fclose(f);
1353 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1354}
1355
1356void
Darren Tucker45150472006-07-12 22:34:17 +10001357parse_server_match_config(ServerOptions *options, const char *user,
1358 const char *host, const char *address)
Darren Tucker645ab752004-06-25 13:33:20 +10001359{
Darren Tucker45150472006-07-12 22:34:17 +10001360 ServerOptions mo;
1361
1362 initialize_server_options(&mo);
1363 parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
Darren Tucker1629c072007-02-19 22:25:37 +11001364 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001365}
1366
Darren Tucker1629c072007-02-19 22:25:37 +11001367/* Helper macros */
1368#define M_CP_INTOPT(n) do {\
1369 if (src->n != -1) \
1370 dst->n = src->n; \
1371} while (0)
1372#define M_CP_STROPT(n) do {\
1373 if (src->n != NULL) { \
1374 if (dst->n != NULL) \
1375 xfree(dst->n); \
1376 dst->n = src->n; \
1377 } \
1378} while(0)
1379
1380/*
1381 * Copy any supported values that are set.
1382 *
1383 * If the preauth flag is set, we do not bother copying the the string or
1384 * array values that are not used pre-authentication, because any that we
1385 * do use must be explictly sent in mm_getpwnamallow().
1386 */
Darren Tucker45150472006-07-12 22:34:17 +10001387void
Darren Tucker1629c072007-02-19 22:25:37 +11001388copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001389{
Darren Tucker1629c072007-02-19 22:25:37 +11001390 M_CP_INTOPT(password_authentication);
1391 M_CP_INTOPT(gss_authentication);
1392 M_CP_INTOPT(rsa_authentication);
1393 M_CP_INTOPT(pubkey_authentication);
1394 M_CP_INTOPT(kerberos_authentication);
1395 M_CP_INTOPT(hostbased_authentication);
1396 M_CP_INTOPT(kbd_interactive_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001397 M_CP_INTOPT(permit_root_login);
Darren Tucker1629c072007-02-19 22:25:37 +11001398
1399 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001400 M_CP_INTOPT(allow_agent_forwarding);
Darren Tucker1629c072007-02-19 22:25:37 +11001401 M_CP_INTOPT(gateway_ports);
1402 M_CP_INTOPT(x11_display_offset);
1403 M_CP_INTOPT(x11_forwarding);
1404 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001405 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001406 M_CP_INTOPT(max_authtries);
Darren Tucker1629c072007-02-19 22:25:37 +11001407
1408 M_CP_STROPT(banner);
1409 if (preauth)
1410 return;
1411 M_CP_STROPT(adm_forced_command);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001412 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001413}
1414
Darren Tucker1629c072007-02-19 22:25:37 +11001415#undef M_CP_INTOPT
1416#undef M_CP_STROPT
1417
Darren Tucker45150472006-07-12 22:34:17 +10001418void
1419parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1420 const char *user, const char *host, const char *address)
1421{
1422 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001423 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001424
1425 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1426
Darren Tucker9fbac712004-08-12 22:41:44 +10001427 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker45150472006-07-12 22:34:17 +10001428 active = user ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001429 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001430 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001431 if (process_server_config_line(options, cp, filename,
Darren Tucker45150472006-07-12 22:34:17 +10001432 linenum++, &active, user, host, address) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001433 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001435 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001436 if (bad_options > 0)
1437 fatal("%s: terminating, %d bad configuration options",
1438 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439}
Darren Tuckere7140f22008-06-10 23:01:51 +10001440
1441static const char *
1442fmt_intarg(ServerOpCodes code, int val)
1443{
1444 if (code == sAddressFamily) {
1445 switch (val) {
1446 case AF_INET:
1447 return "inet";
1448 case AF_INET6:
1449 return "inet6";
1450 case AF_UNSPEC:
1451 return "any";
1452 default:
1453 return "UNKNOWN";
1454 }
1455 }
1456 if (code == sPermitRootLogin) {
1457 switch (val) {
1458 case PERMIT_NO_PASSWD:
1459 return "without-passord";
1460 case PERMIT_FORCED_ONLY:
1461 return "forced-commands-only";
1462 case PERMIT_YES:
1463 return "yes";
1464 }
1465 }
1466 if (code == sProtocol) {
1467 switch (val) {
1468 case SSH_PROTO_1:
1469 return "1";
1470 case SSH_PROTO_2:
1471 return "2";
1472 case (SSH_PROTO_1|SSH_PROTO_2):
1473 return "2,1";
1474 default:
1475 return "UNKNOWN";
1476 }
1477 }
1478 if (code == sGatewayPorts && val == 2)
1479 return "clientspecified";
1480 if (code == sCompression && val == COMP_DELAYED)
1481 return "delayed";
1482 switch (val) {
1483 case -1:
1484 return "unset";
1485 case 0:
1486 return "no";
1487 case 1:
1488 return "yes";
1489 }
1490 return "UNKNOWN";
1491}
1492
1493static const char *
1494lookup_opcode_name(ServerOpCodes code)
1495{
1496 u_int i;
1497
1498 for (i = 0; keywords[i].name != NULL; i++)
1499 if (keywords[i].opcode == code)
1500 return(keywords[i].name);
1501 return "UNKNOWN";
1502}
1503
1504static void
1505dump_cfg_int(ServerOpCodes code, int val)
1506{
1507 printf("%s %d\n", lookup_opcode_name(code), val);
1508}
1509
1510static void
1511dump_cfg_fmtint(ServerOpCodes code, int val)
1512{
1513 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1514}
1515
1516static void
1517dump_cfg_string(ServerOpCodes code, const char *val)
1518{
1519 if (val == NULL)
1520 return;
1521 printf("%s %s\n", lookup_opcode_name(code), val);
1522}
1523
1524static void
1525dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1526{
1527 u_int i;
1528
1529 for (i = 0; i < count; i++)
1530 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1531}
1532
1533void
1534dump_config(ServerOptions *o)
1535{
1536 u_int i;
1537 int ret;
1538 struct addrinfo *ai;
1539 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1540
1541 /* these are usually at the top of the config */
1542 for (i = 0; i < o->num_ports; i++)
1543 printf("port %d\n", o->ports[i]);
1544 dump_cfg_fmtint(sProtocol, o->protocol);
1545 dump_cfg_fmtint(sAddressFamily, o->address_family);
1546
1547 /* ListenAddress must be after Port */
1548 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1549 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1550 sizeof(addr), port, sizeof(port),
1551 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1552 error("getnameinfo failed: %.100s",
1553 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1554 strerror(errno));
1555 } else {
1556 if (ai->ai_family == AF_INET6)
1557 printf("listenaddress [%s]:%s\n", addr, port);
1558 else
1559 printf("listenaddress %s:%s\n", addr, port);
1560 }
1561 }
1562
1563 /* integer arguments */
1564 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1565 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1566 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1567 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1568 dump_cfg_int(sMaxAuthTries, o->max_authtries);
1569 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1570 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1571
1572 /* formatted integer arguments */
1573 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1574 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1575 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1576 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1577 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1578 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1579 o->hostbased_uses_name_from_packet_only);
1580 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1581 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
1582 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1583 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1584 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
1585 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
1586 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1587 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
1588 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1589 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1590 o->kbd_interactive_authentication);
1591 dump_cfg_fmtint(sChallengeResponseAuthentication,
1592 o->challenge_response_authentication);
1593 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1594 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1595 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1596 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1597 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1598 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1599 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1600 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1601 dump_cfg_fmtint(sUseLogin, o->use_login);
1602 dump_cfg_fmtint(sCompression, o->compression);
1603 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1604 dump_cfg_fmtint(sUseDNS, o->use_dns);
1605 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1606 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1607
1608 /* string arguments */
1609 dump_cfg_string(sPidFile, o->pid_file);
1610 dump_cfg_string(sXAuthLocation, o->xauth_location);
1611 dump_cfg_string(sCiphers, o->ciphers);
1612 dump_cfg_string(sMacs, o->macs);
1613 dump_cfg_string(sBanner, o->banner);
1614 dump_cfg_string(sAuthorizedKeysFile, o->authorized_keys_file);
1615 dump_cfg_string(sAuthorizedKeysFile2, o->authorized_keys_file2);
1616 dump_cfg_string(sForceCommand, o->adm_forced_command);
1617
1618 /* string arguments requiring a lookup */
1619 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1620 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1621
1622 /* string array arguments */
1623 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1624 o->host_key_files);
1625 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1626 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1627 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1628 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1629 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1630
1631 /* other arguments */
1632 for (i = 0; i < o->num_subsystems; i++)
1633 printf("subsystem %s %s\n", o->subsystem_name[i],
1634 o->subsystem_args[i]);
1635
1636 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1637 o->max_startups_rate, o->max_startups);
1638
1639 for (i = 0; tunmode_desc[i].val != -1; i++)
1640 if (tunmode_desc[i].val == o->permit_tun) {
1641 s = tunmode_desc[i].text;
1642 break;
1643 }
1644 dump_cfg_string(sPermitTunnel, s);
1645
1646 printf("permitopen");
1647 channel_print_adm_permitted_opens();
1648 printf("\n");
1649}