blob: 9ad08ce870dbe17f86dffb8e971f78bb997ba1a7 [file] [log] [blame]
Darren Tucker535b5e12010-01-08 18:56:48 +11001/* $OpenBSD: servconf.c,v 1.199 2009/12/29 16:38:41 stevesk 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
Damien Miller3dc71ad2009-01-28 16:31:22 +110045static void add_listen_addr(ServerOptions *, char *, int);
46static void add_one_listen_addr(ServerOptions *, char *, int);
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 Miller01ed2272008-11-05 16:20:46 +1100130 options->zero_knowledge_password_authentication = -1;
Darren Tucker34e314d2010-01-08 17:03:46 +1100131 options->rdomain = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132}
133
Damien Miller4af51302000-04-16 11:18:38 +1000134void
Damien Miller95def091999-11-25 00:26:21 +1100135fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136{
Damien Miller726273e2001-11-12 11:40:11 +1100137 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000138 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000139 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100140
141 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100142 if (options->protocol == SSH_PROTO_UNKNOWN)
Darren Tuckerbad50762009-10-11 21:51:08 +1100143 options->protocol = SSH_PROTO_2;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100144 if (options->num_host_key_files == 0) {
145 /* fill default hostkeys for protocols */
146 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100147 options->host_key_files[options->num_host_key_files++] =
148 _PATH_HOST_KEY_FILE;
149 if (options->protocol & SSH_PROTO_2) {
150 options->host_key_files[options->num_host_key_files++] =
151 _PATH_HOST_RSA_KEY_FILE;
152 options->host_key_files[options->num_host_key_files++] =
153 _PATH_HOST_DSA_KEY_FILE;
154 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100155 }
Damien Miller34132e52000-01-14 15:45:46 +1100156 if (options->num_ports == 0)
157 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
158 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000159 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000160 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000161 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100162 if (options->server_key_bits == -1)
Darren Tucker7499b0c2008-07-02 22:35:43 +1000163 options->server_key_bits = 1024;
Damien Miller95def091999-11-25 00:26:21 +1100164 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000165 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100166 if (options->key_regeneration_time == -1)
167 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000168 if (options->permit_root_login == PERMIT_NOT_SET)
169 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100170 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100171 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100172 if (options->ignore_user_known_hosts == -1)
173 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100174 if (options->print_motd == -1)
175 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000176 if (options->print_lastlog == -1)
177 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100178 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100179 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100180 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100181 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100182 if (options->x11_use_localhost == -1)
183 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000184 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000185 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100186 if (options->strict_modes == -1)
187 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100188 if (options->tcp_keep_alive == -1)
189 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100190 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100191 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100192 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000193 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100194 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100195 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000196 if (options->hostbased_authentication == -1)
197 options->hostbased_authentication = 0;
198 if (options->hostbased_uses_name_from_packet_only == -1)
199 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100200 if (options->rsa_authentication == -1)
201 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100202 if (options->pubkey_authentication == -1)
203 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100204 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000205 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100206 if (options->kerberos_or_local_passwd == -1)
207 options->kerberos_or_local_passwd = 1;
208 if (options->kerberos_ticket_cleanup == -1)
209 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100210 if (options->kerberos_get_afs_token == -1)
211 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000212 if (options->gss_authentication == -1)
213 options->gss_authentication = 0;
214 if (options->gss_cleanup_creds == -1)
215 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100216 if (options->password_authentication == -1)
217 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100218 if (options->kbd_interactive_authentication == -1)
219 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000220 if (options->challenge_response_authentication == -1)
221 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100222 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100223 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000224 if (options->permit_user_env == -1)
225 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100226 if (options->use_login == -1)
227 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000228 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000229 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100230 if (options->allow_tcp_forwarding == -1)
231 options->allow_tcp_forwarding = 1;
Damien Miller4f755cd2008-05-19 14:57:41 +1000232 if (options->allow_agent_forwarding == -1)
233 options->allow_agent_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000234 if (options->gateway_ports == -1)
235 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000236 if (options->max_startups == -1)
237 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000238 if (options->max_startups_rate == -1)
239 options->max_startups_rate = 100; /* 100% */
240 if (options->max_startups_begin == -1)
241 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000242 if (options->max_authtries == -1)
243 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller7207f642008-05-19 15:34:50 +1000244 if (options->max_sessions == -1)
245 options->max_sessions = DEFAULT_SESSIONS_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000246 if (options->use_dns == -1)
247 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000248 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100249 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000250 if (options->client_alive_count_max == -1)
251 options->client_alive_count_max = 3;
Damien Miller75413ac2001-11-12 11:14:35 +1100252 if (options->authorized_keys_file2 == NULL) {
253 /* authorized_keys_file2 falls back to authorized_keys_file */
254 if (options->authorized_keys_file != NULL)
255 options->authorized_keys_file2 = options->authorized_keys_file;
256 else
257 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
258 }
259 if (options->authorized_keys_file == NULL)
260 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerd27b9472005-12-13 19:29:02 +1100261 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100262 options->permit_tun = SSH_TUNMODE_NO;
Damien Miller01ed2272008-11-05 16:20:46 +1100263 if (options->zero_knowledge_password_authentication == -1)
264 options->zero_knowledge_password_authentication = 0;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000265
Ben Lindstromfb62a692002-06-06 19:47:11 +0000266 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000267 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000268 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000269
Tim Rice40017b02002-07-14 13:36:49 -0700270#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000271 if (use_privsep && options->compression == 1) {
272 error("This platform does not support both privilege "
273 "separation and compression");
274 error("Compression disabled");
275 options->compression = 0;
276 }
277#endif
278
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279}
280
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100282typedef enum {
283 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100284 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000285 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100286 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100287 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
288 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000289 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100290 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100291 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000292 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100293 sPasswordAuthentication, sKbdInteractiveAuthentication,
294 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000295 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100296 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100297 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000298 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100299 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000300 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000301 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
Damien Miller7207f642008-05-19 15:34:50 +1000302 sMaxStartups, sMaxAuthTries, sMaxSessions,
Damien Miller3a961dc2003-06-03 10:25:48 +1000303 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100304 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000305 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Damien Millerd27b9472005-12-13 19:29:02 +1100306 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Damien Millerd8cb1f12008-02-10 22:40:12 +1100307 sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
Darren Tucker34e314d2010-01-08 17:03:46 +1100308 sUsePrivilegeSeparation, sAllowAgentForwarding, sRDomain,
Damien Miller01ed2272008-11-05 16:20:46 +1100309 sZeroKnowledgePasswordAuthentication,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000310 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311} ServerOpCodes;
312
Darren Tucker45150472006-07-12 22:34:17 +1000313#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
314#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
315#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
316
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100318static struct {
319 const char *name;
320 ServerOpCodes opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000321 u_int flags;
Damien Miller95def091999-11-25 00:26:21 +1100322} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100323 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000324#ifdef USE_PAM
Darren Tucker45150472006-07-12 22:34:17 +1000325 { "usepam", sUsePAM, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000326#else
Darren Tucker45150472006-07-12 22:34:17 +1000327 { "usepam", sUnsupported, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000328#endif
Darren Tucker45150472006-07-12 22:34:17 +1000329 { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
Damien Miller726273e2001-11-12 11:40:11 +1100330 /* Standard Options */
Darren Tucker45150472006-07-12 22:34:17 +1000331 { "port", sPort, SSHCFG_GLOBAL },
332 { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
333 { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
334 { "pidfile", sPidFile, SSHCFG_GLOBAL },
335 { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
336 { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
337 { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
Darren Tucker15f94272008-01-01 20:36:56 +1100338 { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000339 { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
340 { "loglevel", sLogLevel, SSHCFG_GLOBAL },
341 { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100342 { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
343 { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000344 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100345 { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
346 { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
Darren Tucker64cee362009-06-21 20:26:17 +1000347 { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000348#ifdef KRB5
Darren Tucker1629c072007-02-19 22:25:37 +1100349 { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000350 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
351 { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100352#ifdef USE_AFS
Darren Tucker45150472006-07-12 22:34:17 +1000353 { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000354#else
Darren Tucker45150472006-07-12 22:34:17 +1000355 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker409cb322004-01-05 22:36:51 +1100356#endif
357#else
Darren Tucker1629c072007-02-19 22:25:37 +1100358 { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000359 { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
360 { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
361 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000362#endif
Darren Tucker45150472006-07-12 22:34:17 +1000363 { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
364 { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000365#ifdef GSSAPI
Darren Tucker1629c072007-02-19 22:25:37 +1100366 { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000367 { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000368#else
Darren Tucker1629c072007-02-19 22:25:37 +1100369 { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000370 { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000371#endif
Darren Tucker1629c072007-02-19 22:25:37 +1100372 { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
373 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
Darren Tucker1d75f222007-03-01 21:31:28 +1100374 { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000375 { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
Damien Miller01ed2272008-11-05 16:20:46 +1100376#ifdef JPAKE
377 { "zeroknowledgepasswordauthentication", sZeroKnowledgePasswordAuthentication, SSHCFG_ALL },
378#else
379 { "zeroknowledgepasswordauthentication", sUnsupported, SSHCFG_ALL },
380#endif
Darren Tucker45150472006-07-12 22:34:17 +1000381 { "checkmail", sDeprecated, SSHCFG_GLOBAL },
382 { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
383 { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
384 { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
385 { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
386 { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
387 { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
Damien Millerd1de9952006-07-24 14:05:48 +1000388 { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
389 { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
390 { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000391 { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
392 { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
Damien Miller51bde602008-11-03 19:23:10 +1100393 { "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000394 { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
395 { "uselogin", sUseLogin, SSHCFG_GLOBAL },
396 { "compression", sCompression, SSHCFG_GLOBAL },
397 { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
398 { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
399 { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
Damien Miller4f755cd2008-05-19 14:57:41 +1000400 { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000401 { "allowusers", sAllowUsers, SSHCFG_GLOBAL },
402 { "denyusers", sDenyUsers, SSHCFG_GLOBAL },
403 { "allowgroups", sAllowGroups, SSHCFG_GLOBAL },
404 { "denygroups", sDenyGroups, SSHCFG_GLOBAL },
405 { "ciphers", sCiphers, SSHCFG_GLOBAL },
406 { "macs", sMacs, SSHCFG_GLOBAL },
407 { "protocol", sProtocol, SSHCFG_GLOBAL },
408 { "gatewayports", sGatewayPorts, SSHCFG_ALL },
409 { "subsystem", sSubsystem, SSHCFG_GLOBAL },
410 { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
Damien Miller307c1d12008-06-16 07:56:20 +1000411 { "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
Damien Miller7207f642008-05-19 15:34:50 +1000412 { "maxsessions", sMaxSessions, SSHCFG_ALL },
Darren Tucker1629c072007-02-19 22:25:37 +1100413 { "banner", sBanner, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000414 { "usedns", sUseDNS, SSHCFG_GLOBAL },
415 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
416 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
417 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
418 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
419 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL },
420 { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL },
Darren Tucker64cee362009-06-21 20:26:17 +1000421 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
Darren Tucker45150472006-07-12 22:34:17 +1000422 { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
423 { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL },
Darren Tucker64cee362009-06-21 20:26:17 +1000424 { "match", sMatch, SSHCFG_ALL },
Damien Miller9b439df2006-07-24 14:04:00 +1000425 { "permitopen", sPermitOpen, SSHCFG_ALL },
Damien Millere2754432006-07-24 14:06:47 +1000426 { "forcecommand", sForceCommand, SSHCFG_ALL },
Darren Tucker1f5e3dc2010-01-08 19:53:52 +1100427#ifdef USE_ROUTINGDOMAIN
Darren Tucker535b5e12010-01-08 18:56:48 +1100428 { "routingdomain", sRDomain, SSHCFG_GLOBAL },
Darren Tucker1f5e3dc2010-01-08 19:53:52 +1100429#else
430 { "routingdomain", sUnsupported, SSHCFG_GLOBAL },
431#endif
Damien Millerd8cb1f12008-02-10 22:40:12 +1100432 { "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000433 { NULL, sBadOption, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434};
435
Darren Tuckere7140f22008-06-10 23:01:51 +1000436static struct {
437 int val;
438 char *text;
439} tunmode_desc[] = {
440 { SSH_TUNMODE_NO, "no" },
441 { SSH_TUNMODE_POINTOPOINT, "point-to-point" },
442 { SSH_TUNMODE_ETHERNET, "ethernet" },
443 { SSH_TUNMODE_YES, "yes" },
444 { -1, NULL }
445};
446
Damien Miller5428f641999-11-25 11:54:57 +1100447/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000448 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100449 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000450
Damien Miller4af51302000-04-16 11:18:38 +1000451static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100452parse_token(const char *cp, const char *filename,
Darren Tucker45150472006-07-12 22:34:17 +1000453 int linenum, u_int *flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000455 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456
Damien Miller95def091999-11-25 00:26:21 +1100457 for (i = 0; keywords[i].name; i++)
Darren Tucker45150472006-07-12 22:34:17 +1000458 if (strcasecmp(cp, keywords[i].name) == 0) {
459 *flags = keywords[i].flags;
Damien Miller95def091999-11-25 00:26:21 +1100460 return keywords[i].opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000461 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000462
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000463 error("%s: line %d: Bad configuration option: %s",
464 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100465 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466}
467
Ben Lindstrombba81212001-06-25 05:01:22 +0000468static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100469add_listen_addr(ServerOptions *options, char *addr, int port)
Damien Miller34132e52000-01-14 15:45:46 +1100470{
Damien Millereccb9de2005-06-17 12:59:34 +1000471 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100472
473 if (options->num_ports == 0)
474 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100475 if (options->address_family == -1)
476 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000477 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000478 for (i = 0; i < options->num_ports; i++)
479 add_one_listen_addr(options, addr, options->ports[i]);
480 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000481 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static void
Damien Miller3dc71ad2009-01-28 16:31:22 +1100485add_one_listen_addr(ServerOptions *options, char *addr, int port)
Ben Lindstromc510af42001-04-07 17:25:48 +0000486{
487 struct addrinfo hints, *ai, *aitop;
488 char strport[NI_MAXSERV];
489 int gaierr;
490
491 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100492 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000493 hints.ai_socktype = SOCK_STREAM;
494 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100495 snprintf(strport, sizeof strport, "%d", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000496 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
497 fatal("bad addr or host: %s (%s)",
498 addr ? addr : "<NULL>",
Darren Tucker4abde772007-12-29 02:43:51 +1100499 ssh_gai_strerror(gaierr));
Ben Lindstromc510af42001-04-07 17:25:48 +0000500 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
501 ;
502 ai->ai_next = options->listen_addrs;
503 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100504}
505
Darren Tucker45150472006-07-12 22:34:17 +1000506/*
507 * The strategy for the Match blocks is that the config file is parsed twice.
508 *
509 * The first time is at startup. activep is initialized to 1 and the
510 * directives in the global context are processed and acted on. Hitting a
511 * Match directive unsets activep and the directives inside the block are
512 * checked for syntax only.
513 *
514 * The second time is after a connection has been established but before
515 * authentication. activep is initialized to 2 and global config directives
516 * are ignored since they have already been processed. If the criteria in a
517 * Match block is met, activep is set and the subsequent directives
518 * processed and actioned until EOF or another Match block unsets it. Any
519 * options set are copied into the main server config.
520 *
521 * Potential additions/improvements:
522 * - Add Match support for pre-kex directives, eg Protocol, Ciphers.
523 *
524 * - Add a Tag directive (idea from David Leonard) ala pf, eg:
525 * Match Address 192.168.0.*
526 * Tag trusted
527 * Match Group wheel
528 * Tag trusted
529 * Match Tag trusted
530 * AllowTcpForwarding yes
531 * GatewayPorts clientspecified
532 * [...]
533 *
534 * - Add a PermittedChannelRequests directive
535 * Match Group shell
536 * PermittedChannelRequests session,forwarded-tcpip
537 */
538
539static int
Damien Miller565ca3f2006-08-19 00:23:15 +1000540match_cfg_line_group(const char *grps, int line, const char *user)
541{
542 int result = 0;
Damien Miller565ca3f2006-08-19 00:23:15 +1000543 struct passwd *pw;
544
Damien Miller565ca3f2006-08-19 00:23:15 +1000545 if (user == NULL)
546 goto out;
547
548 if ((pw = getpwnam(user)) == NULL) {
549 debug("Can't match group at line %d because user %.100s does "
550 "not exist", line, user);
551 } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
552 debug("Can't Match group because user %.100s not in any group "
553 "at line %d", user, line);
Darren Tuckerb03fd022008-07-04 13:51:12 +1000554 } else if (ga_match_pattern_list(grps) != 1) {
555 debug("user %.100s does not match group list %.100s at line %d",
556 user, grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000557 } else {
Darren Tuckerb03fd022008-07-04 13:51:12 +1000558 debug("user %.100s matched group list %.100s at line %d", user,
559 grps, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000560 result = 1;
561 }
562out:
563 ga_free();
Damien Miller565ca3f2006-08-19 00:23:15 +1000564 return result;
565}
566
567static int
Darren Tucker45150472006-07-12 22:34:17 +1000568match_cfg_line(char **condition, int line, const char *user, const char *host,
569 const char *address)
570{
571 int result = 1;
572 char *arg, *attrib, *cp = *condition;
573 size_t len;
574
575 if (user == NULL)
576 debug3("checking syntax for 'Match %s'", cp);
577 else
578 debug3("checking match for '%s' user %s host %s addr %s", cp,
579 user ? user : "(null)", host ? host : "(null)",
580 address ? address : "(null)");
581
582 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
583 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
584 error("Missing Match criteria for %s", attrib);
585 return -1;
586 }
587 len = strlen(arg);
588 if (strcasecmp(attrib, "user") == 0) {
589 if (!user) {
590 result = 0;
591 continue;
592 }
593 if (match_pattern_list(user, arg, len, 0) != 1)
594 result = 0;
595 else
596 debug("user %.100s matched 'User %.100s' at "
597 "line %d", user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000598 } else if (strcasecmp(attrib, "group") == 0) {
599 switch (match_cfg_line_group(arg, line, user)) {
600 case -1:
601 return -1;
602 case 0:
603 result = 0;
604 }
Darren Tucker45150472006-07-12 22:34:17 +1000605 } else if (strcasecmp(attrib, "host") == 0) {
606 if (!host) {
607 result = 0;
608 continue;
609 }
610 if (match_hostname(host, arg, len) != 1)
611 result = 0;
612 else
613 debug("connection from %.100s matched 'Host "
614 "%.100s' at line %d", host, arg, line);
615 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tucker7a3935d2008-06-10 22:59:10 +1000616 switch (addr_match_list(address, arg)) {
617 case 1:
Darren Tucker45150472006-07-12 22:34:17 +1000618 debug("connection from %.100s matched 'Address "
619 "%.100s' at line %d", address, arg, line);
Darren Tucker7a3935d2008-06-10 22:59:10 +1000620 break;
621 case 0:
Darren Tucker896ad5a2008-06-11 09:34:46 +1000622 case -1:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000623 result = 0;
624 break;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000625 case -2:
Darren Tucker7a3935d2008-06-10 22:59:10 +1000626 return -1;
627 }
Darren Tucker45150472006-07-12 22:34:17 +1000628 } else {
629 error("Unsupported Match attribute %s", attrib);
630 return -1;
631 }
632 }
633 if (user != NULL)
634 debug3("match %sfound", result ? "" : "not ");
635 *condition = cp;
636 return result;
637}
638
Damien Millere2754432006-07-24 14:06:47 +1000639#define WHITESPACE " \t\r\n"
640
Ben Lindstromade03f62001-12-06 18:22:17 +0000641int
642process_server_config_line(ServerOptions *options, char *line,
Darren Tucker45150472006-07-12 22:34:17 +1000643 const char *filename, int linenum, int *activep, const char *user,
644 const char *host, const char *address)
Ben Lindstromade03f62001-12-06 18:22:17 +0000645{
646 char *cp, **charptr, *arg, *p;
Darren Tucker45150472006-07-12 22:34:17 +1000647 int cmdline = 0, *intptr, value, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100648 SyslogFacility *log_facility_ptr;
649 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000650 ServerOpCodes opcode;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100651 int port;
Darren Tucker45150472006-07-12 22:34:17 +1000652 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000653 size_t len;
Ben Lindstromade03f62001-12-06 18:22:17 +0000654
655 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100656 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100657 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000658 /* Ignore leading whitespace */
659 if (*arg == '\0')
660 arg = strdelim(&cp);
661 if (!arg || !*arg || *arg == '#')
662 return 0;
663 intptr = NULL;
664 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000665 opcode = parse_token(arg, filename, linenum, &flags);
666
667 if (activep == NULL) { /* We are processing a command line directive */
668 cmdline = 1;
669 activep = &cmdline;
670 }
671 if (*activep && opcode != sMatch)
672 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
673 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
674 if (user == NULL) {
675 fatal("%s line %d: Directive '%s' is not allowed "
676 "within a Match block", filename, linenum, arg);
677 } else { /* this is a directive we have already processed */
678 while (arg)
679 arg = strdelim(&cp);
680 return 0;
681 }
682 }
683
Ben Lindstromade03f62001-12-06 18:22:17 +0000684 switch (opcode) {
685 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000686 case sUsePAM:
687 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000688 goto parse_flag;
689
690 /* Standard Options */
691 case sBadOption:
692 return -1;
693 case sPort:
694 /* ignore ports from configfile if cmdline specifies ports */
695 if (options->ports_from_cmdline)
696 return 0;
697 if (options->listen_addrs != NULL)
698 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100699 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000700 if (options->num_ports >= MAX_PORTS)
701 fatal("%s line %d: too many ports.",
702 filename, linenum);
703 arg = strdelim(&cp);
704 if (!arg || *arg == '\0')
705 fatal("%s line %d: missing port number.",
706 filename, linenum);
707 options->ports[options->num_ports++] = a2port(arg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100708 if (options->ports[options->num_ports-1] <= 0)
Ben Lindstromade03f62001-12-06 18:22:17 +0000709 fatal("%s line %d: Badly formatted port number.",
710 filename, linenum);
711 break;
712
713 case sServerKeyBits:
714 intptr = &options->server_key_bits;
Damien Miller7207f642008-05-19 15:34:50 +1000715 parse_int:
Ben Lindstromade03f62001-12-06 18:22:17 +0000716 arg = strdelim(&cp);
717 if (!arg || *arg == '\0')
718 fatal("%s line %d: missing integer value.",
719 filename, linenum);
720 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000721 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000722 *intptr = value;
723 break;
724
725 case sLoginGraceTime:
726 intptr = &options->login_grace_time;
Damien Miller7207f642008-05-19 15:34:50 +1000727 parse_time:
Ben Lindstromade03f62001-12-06 18:22:17 +0000728 arg = strdelim(&cp);
729 if (!arg || *arg == '\0')
730 fatal("%s line %d: missing time value.",
731 filename, linenum);
732 if ((value = convtime(arg)) == -1)
733 fatal("%s line %d: invalid time value.",
734 filename, linenum);
735 if (*intptr == -1)
736 *intptr = value;
737 break;
738
739 case sKeyRegenerationTime:
740 intptr = &options->key_regeneration_time;
741 goto parse_time;
742
743 case sListenAddress:
744 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100745 if (arg == NULL || *arg == '\0')
746 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000747 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000748 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
749 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
750 && strchr(p+1, ':') != NULL) {
751 add_listen_addr(options, arg, 0);
752 break;
753 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100754 p = hpdelim(&arg);
755 if (p == NULL)
756 fatal("%s line %d: bad address:port usage",
757 filename, linenum);
758 p = cleanhostname(p);
759 if (arg == NULL)
760 port = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100761 else if ((port = a2port(arg)) <= 0)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100762 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000763
Damien Millerf91ee4c2005-03-01 21:24:33 +1100764 add_listen_addr(options, p, port);
765
Ben Lindstromade03f62001-12-06 18:22:17 +0000766 break;
767
Darren Tucker0f383232005-01-20 10:57:56 +1100768 case sAddressFamily:
769 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000770 if (!arg || *arg == '\0')
771 fatal("%s line %d: missing address family.",
772 filename, linenum);
Darren Tucker0f383232005-01-20 10:57:56 +1100773 intptr = &options->address_family;
774 if (options->listen_addrs != NULL)
775 fatal("%s line %d: address family must be specified before "
776 "ListenAddress.", filename, linenum);
777 if (strcasecmp(arg, "inet") == 0)
778 value = AF_INET;
779 else if (strcasecmp(arg, "inet6") == 0)
780 value = AF_INET6;
781 else if (strcasecmp(arg, "any") == 0)
782 value = AF_UNSPEC;
783 else
784 fatal("%s line %d: unsupported address family \"%s\".",
785 filename, linenum, arg);
786 if (*intptr == -1)
787 *intptr = value;
788 break;
789
Ben Lindstromade03f62001-12-06 18:22:17 +0000790 case sHostKeyFile:
791 intptr = &options->num_host_key_files;
792 if (*intptr >= MAX_HOSTKEYS)
793 fatal("%s line %d: too many host keys specified (max %d).",
794 filename, linenum, MAX_HOSTKEYS);
795 charptr = &options->host_key_files[*intptr];
Damien Miller7207f642008-05-19 15:34:50 +1000796 parse_filename:
Ben Lindstromade03f62001-12-06 18:22:17 +0000797 arg = strdelim(&cp);
798 if (!arg || *arg == '\0')
799 fatal("%s line %d: missing file name.",
800 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000801 if (*activep && *charptr == NULL) {
Ben Lindstromade03f62001-12-06 18:22:17 +0000802 *charptr = tilde_expand_filename(arg, getuid());
803 /* increase optional counter */
804 if (intptr != NULL)
805 *intptr = *intptr + 1;
806 }
807 break;
808
809 case sPidFile:
810 charptr = &options->pid_file;
811 goto parse_filename;
812
813 case sPermitRootLogin:
814 intptr = &options->permit_root_login;
815 arg = strdelim(&cp);
816 if (!arg || *arg == '\0')
817 fatal("%s line %d: missing yes/"
818 "without-password/forced-commands-only/no "
819 "argument.", filename, linenum);
820 value = 0; /* silence compiler */
821 if (strcmp(arg, "without-password") == 0)
822 value = PERMIT_NO_PASSWD;
823 else if (strcmp(arg, "forced-commands-only") == 0)
824 value = PERMIT_FORCED_ONLY;
825 else if (strcmp(arg, "yes") == 0)
826 value = PERMIT_YES;
827 else if (strcmp(arg, "no") == 0)
828 value = PERMIT_NO;
829 else
830 fatal("%s line %d: Bad yes/"
831 "without-password/forced-commands-only/no "
832 "argument: %s", filename, linenum, arg);
Darren Tucker15f94272008-01-01 20:36:56 +1100833 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000834 *intptr = value;
835 break;
836
837 case sIgnoreRhosts:
838 intptr = &options->ignore_rhosts;
Damien Miller7207f642008-05-19 15:34:50 +1000839 parse_flag:
Ben Lindstromade03f62001-12-06 18:22:17 +0000840 arg = strdelim(&cp);
841 if (!arg || *arg == '\0')
842 fatal("%s line %d: missing yes/no argument.",
843 filename, linenum);
844 value = 0; /* silence compiler */
845 if (strcmp(arg, "yes") == 0)
846 value = 1;
847 else if (strcmp(arg, "no") == 0)
848 value = 0;
849 else
850 fatal("%s line %d: Bad yes/no argument: %s",
851 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000852 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000853 *intptr = value;
854 break;
855
856 case sIgnoreUserKnownHosts:
857 intptr = &options->ignore_user_known_hosts;
858 goto parse_flag;
859
Ben Lindstromade03f62001-12-06 18:22:17 +0000860 case sRhostsRSAAuthentication:
861 intptr = &options->rhosts_rsa_authentication;
862 goto parse_flag;
863
864 case sHostbasedAuthentication:
865 intptr = &options->hostbased_authentication;
866 goto parse_flag;
867
868 case sHostbasedUsesNameFromPacketOnly:
869 intptr = &options->hostbased_uses_name_from_packet_only;
870 goto parse_flag;
871
872 case sRSAAuthentication:
873 intptr = &options->rsa_authentication;
874 goto parse_flag;
875
876 case sPubkeyAuthentication:
877 intptr = &options->pubkey_authentication;
878 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000879
Ben Lindstromade03f62001-12-06 18:22:17 +0000880 case sKerberosAuthentication:
881 intptr = &options->kerberos_authentication;
882 goto parse_flag;
883
884 case sKerberosOrLocalPasswd:
885 intptr = &options->kerberos_or_local_passwd;
886 goto parse_flag;
887
888 case sKerberosTicketCleanup:
889 intptr = &options->kerberos_ticket_cleanup;
890 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000891
Darren Tucker22ef5082003-12-31 11:37:34 +1100892 case sKerberosGetAFSToken:
893 intptr = &options->kerberos_get_afs_token;
894 goto parse_flag;
895
Darren Tucker0efd1552003-08-26 11:49:55 +1000896 case sGssAuthentication:
897 intptr = &options->gss_authentication;
898 goto parse_flag;
899
900 case sGssCleanupCreds:
901 intptr = &options->gss_cleanup_creds;
902 goto parse_flag;
903
Ben Lindstromade03f62001-12-06 18:22:17 +0000904 case sPasswordAuthentication:
905 intptr = &options->password_authentication;
906 goto parse_flag;
907
Damien Miller01ed2272008-11-05 16:20:46 +1100908 case sZeroKnowledgePasswordAuthentication:
909 intptr = &options->zero_knowledge_password_authentication;
910 goto parse_flag;
911
Ben Lindstromade03f62001-12-06 18:22:17 +0000912 case sKbdInteractiveAuthentication:
913 intptr = &options->kbd_interactive_authentication;
914 goto parse_flag;
915
916 case sChallengeResponseAuthentication:
917 intptr = &options->challenge_response_authentication;
918 goto parse_flag;
919
920 case sPrintMotd:
921 intptr = &options->print_motd;
922 goto parse_flag;
923
924 case sPrintLastLog:
925 intptr = &options->print_lastlog;
926 goto parse_flag;
927
928 case sX11Forwarding:
929 intptr = &options->x11_forwarding;
930 goto parse_flag;
931
932 case sX11DisplayOffset:
933 intptr = &options->x11_display_offset;
934 goto parse_int;
935
Damien Miller95c249f2002-02-05 12:11:34 +1100936 case sX11UseLocalhost:
937 intptr = &options->x11_use_localhost;
938 goto parse_flag;
939
Ben Lindstromade03f62001-12-06 18:22:17 +0000940 case sXAuthLocation:
941 charptr = &options->xauth_location;
942 goto parse_filename;
943
944 case sStrictModes:
945 intptr = &options->strict_modes;
946 goto parse_flag;
947
Damien Miller12c150e2003-12-17 16:31:10 +1100948 case sTCPKeepAlive:
949 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +0000950 goto parse_flag;
951
952 case sEmptyPasswd:
953 intptr = &options->permit_empty_passwd;
954 goto parse_flag;
955
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000956 case sPermitUserEnvironment:
957 intptr = &options->permit_user_env;
958 goto parse_flag;
959
Ben Lindstromade03f62001-12-06 18:22:17 +0000960 case sUseLogin:
961 intptr = &options->use_login;
962 goto parse_flag;
963
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000964 case sCompression:
965 intptr = &options->compression;
Damien Miller9786e6e2005-07-26 21:54:56 +1000966 arg = strdelim(&cp);
967 if (!arg || *arg == '\0')
968 fatal("%s line %d: missing yes/no/delayed "
969 "argument.", filename, linenum);
970 value = 0; /* silence compiler */
971 if (strcmp(arg, "delayed") == 0)
972 value = COMP_DELAYED;
973 else if (strcmp(arg, "yes") == 0)
974 value = COMP_ZLIB;
975 else if (strcmp(arg, "no") == 0)
976 value = COMP_NONE;
977 else
978 fatal("%s line %d: Bad yes/no/delayed "
979 "argument: %s", filename, linenum, arg);
980 if (*intptr == -1)
981 *intptr = value;
982 break;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000983
Ben Lindstromade03f62001-12-06 18:22:17 +0000984 case sGatewayPorts:
985 intptr = &options->gateway_ports;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100986 arg = strdelim(&cp);
987 if (!arg || *arg == '\0')
988 fatal("%s line %d: missing yes/no/clientspecified "
989 "argument.", filename, linenum);
990 value = 0; /* silence compiler */
991 if (strcmp(arg, "clientspecified") == 0)
992 value = 2;
993 else if (strcmp(arg, "yes") == 0)
994 value = 1;
995 else if (strcmp(arg, "no") == 0)
996 value = 0;
997 else
998 fatal("%s line %d: Bad yes/no/clientspecified "
999 "argument: %s", filename, linenum, arg);
Darren Tucker82347a82007-02-25 20:37:52 +11001000 if (*activep && *intptr == -1)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001001 *intptr = value;
1002 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001003
Damien Miller3a961dc2003-06-03 10:25:48 +10001004 case sUseDNS:
1005 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +00001006 goto parse_flag;
1007
1008 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001009 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +00001010 arg = strdelim(&cp);
1011 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001012 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001013 fatal("%.200s line %d: unsupported log facility '%s'",
1014 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001015 if (*log_facility_ptr == -1)
1016 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001017 break;
1018
1019 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001020 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +00001021 arg = strdelim(&cp);
1022 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +11001023 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +00001024 fatal("%.200s line %d: unsupported log level '%s'",
1025 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001026 if (*log_level_ptr == -1)
1027 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001028 break;
1029
1030 case sAllowTcpForwarding:
1031 intptr = &options->allow_tcp_forwarding;
1032 goto parse_flag;
1033
Damien Miller4f755cd2008-05-19 14:57:41 +10001034 case sAllowAgentForwarding:
1035 intptr = &options->allow_agent_forwarding;
1036 goto parse_flag;
1037
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001038 case sUsePrivilegeSeparation:
1039 intptr = &use_privsep;
1040 goto parse_flag;
1041
Ben Lindstromade03f62001-12-06 18:22:17 +00001042 case sAllowUsers:
1043 while ((arg = strdelim(&cp)) && *arg != '\0') {
1044 if (options->num_allow_users >= MAX_ALLOW_USERS)
1045 fatal("%s line %d: too many allow users.",
1046 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001047 options->allow_users[options->num_allow_users++] =
1048 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001049 }
1050 break;
1051
1052 case sDenyUsers:
1053 while ((arg = strdelim(&cp)) && *arg != '\0') {
1054 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001055 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001056 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001057 options->deny_users[options->num_deny_users++] =
1058 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001059 }
1060 break;
1061
1062 case sAllowGroups:
1063 while ((arg = strdelim(&cp)) && *arg != '\0') {
1064 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1065 fatal("%s line %d: too many allow groups.",
1066 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001067 options->allow_groups[options->num_allow_groups++] =
1068 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001069 }
1070 break;
1071
1072 case sDenyGroups:
1073 while ((arg = strdelim(&cp)) && *arg != '\0') {
1074 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1075 fatal("%s line %d: too many deny groups.",
1076 filename, linenum);
1077 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
1078 }
1079 break;
1080
1081 case sCiphers:
1082 arg = strdelim(&cp);
1083 if (!arg || *arg == '\0')
1084 fatal("%s line %d: Missing argument.", filename, linenum);
1085 if (!ciphers_valid(arg))
1086 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1087 filename, linenum, arg ? arg : "<NONE>");
1088 if (options->ciphers == NULL)
1089 options->ciphers = xstrdup(arg);
1090 break;
1091
1092 case sMacs:
1093 arg = strdelim(&cp);
1094 if (!arg || *arg == '\0')
1095 fatal("%s line %d: Missing argument.", filename, linenum);
1096 if (!mac_valid(arg))
1097 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1098 filename, linenum, arg ? arg : "<NONE>");
1099 if (options->macs == NULL)
1100 options->macs = xstrdup(arg);
1101 break;
1102
1103 case sProtocol:
1104 intptr = &options->protocol;
1105 arg = strdelim(&cp);
1106 if (!arg || *arg == '\0')
1107 fatal("%s line %d: Missing argument.", filename, linenum);
1108 value = proto_spec(arg);
1109 if (value == SSH_PROTO_UNKNOWN)
1110 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001111 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001112 if (*intptr == SSH_PROTO_UNKNOWN)
1113 *intptr = value;
1114 break;
1115
1116 case sSubsystem:
1117 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1118 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001119 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001120 }
1121 arg = strdelim(&cp);
1122 if (!arg || *arg == '\0')
1123 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001124 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001125 if (!*activep) {
1126 arg = strdelim(&cp);
1127 break;
1128 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001129 for (i = 0; i < options->num_subsystems; i++)
1130 if (strcmp(arg, options->subsystem_name[i]) == 0)
1131 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001132 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001133 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1134 arg = strdelim(&cp);
1135 if (!arg || *arg == '\0')
1136 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001137 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001138 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001139
1140 /* Collect arguments (separate to executable) */
1141 p = xstrdup(arg);
1142 len = strlen(p) + 1;
1143 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1144 len += 1 + strlen(arg);
1145 p = xrealloc(p, 1, len);
1146 strlcat(p, " ", len);
1147 strlcat(p, arg, len);
1148 }
1149 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001150 options->num_subsystems++;
1151 break;
1152
1153 case sMaxStartups:
1154 arg = strdelim(&cp);
1155 if (!arg || *arg == '\0')
1156 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001157 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001158 if ((n = sscanf(arg, "%d:%d:%d",
1159 &options->max_startups_begin,
1160 &options->max_startups_rate,
1161 &options->max_startups)) == 3) {
1162 if (options->max_startups_begin >
1163 options->max_startups ||
1164 options->max_startups_rate > 100 ||
1165 options->max_startups_rate < 1)
1166 fatal("%s line %d: Illegal MaxStartups spec.",
1167 filename, linenum);
1168 } else if (n != 1)
1169 fatal("%s line %d: Illegal MaxStartups spec.",
1170 filename, linenum);
1171 else
1172 options->max_startups = options->max_startups_begin;
1173 break;
1174
Darren Tucker89413db2004-05-24 10:36:23 +10001175 case sMaxAuthTries:
1176 intptr = &options->max_authtries;
1177 goto parse_int;
1178
Damien Miller7207f642008-05-19 15:34:50 +10001179 case sMaxSessions:
1180 intptr = &options->max_sessions;
1181 goto parse_int;
1182
Ben Lindstromade03f62001-12-06 18:22:17 +00001183 case sBanner:
1184 charptr = &options->banner;
1185 goto parse_filename;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001186
Ben Lindstromade03f62001-12-06 18:22:17 +00001187 /*
1188 * These options can contain %X options expanded at
1189 * connect time, so that you can specify paths like:
1190 *
1191 * AuthorizedKeysFile /etc/ssh_keys/%u
1192 */
1193 case sAuthorizedKeysFile:
1194 case sAuthorizedKeysFile2:
Damien Miller4dec5d72006-08-05 11:38:40 +10001195 charptr = (opcode == sAuthorizedKeysFile) ?
Ben Lindstromade03f62001-12-06 18:22:17 +00001196 &options->authorized_keys_file :
1197 &options->authorized_keys_file2;
1198 goto parse_filename;
1199
1200 case sClientAliveInterval:
1201 intptr = &options->client_alive_interval;
1202 goto parse_time;
1203
1204 case sClientAliveCountMax:
1205 intptr = &options->client_alive_count_max;
1206 goto parse_int;
1207
Darren Tucker46bc0752004-05-02 22:11:30 +10001208 case sAcceptEnv:
1209 while ((arg = strdelim(&cp)) && *arg != '\0') {
1210 if (strchr(arg, '=') != NULL)
1211 fatal("%s line %d: Invalid environment name.",
1212 filename, linenum);
1213 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1214 fatal("%s line %d: too many allow env.",
1215 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001216 if (!*activep)
1217 break;
Darren Tucker46bc0752004-05-02 22:11:30 +10001218 options->accept_env[options->num_accept_env++] =
1219 xstrdup(arg);
1220 }
1221 break;
1222
Damien Millerd27b9472005-12-13 19:29:02 +11001223 case sPermitTunnel:
1224 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001225 arg = strdelim(&cp);
1226 if (!arg || *arg == '\0')
1227 fatal("%s line %d: Missing yes/point-to-point/"
1228 "ethernet/no argument.", filename, linenum);
Darren Tuckere7140f22008-06-10 23:01:51 +10001229 value = -1;
1230 for (i = 0; tunmode_desc[i].val != -1; i++)
1231 if (strcmp(tunmode_desc[i].text, arg) == 0) {
1232 value = tunmode_desc[i].val;
1233 break;
1234 }
1235 if (value == -1)
Damien Miller7b58e802005-12-13 19:33:19 +11001236 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1237 "no argument: %s", filename, linenum, arg);
1238 if (*intptr == -1)
1239 *intptr = value;
1240 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001241
Darren Tucker45150472006-07-12 22:34:17 +10001242 case sMatch:
1243 if (cmdline)
1244 fatal("Match directive not supported as a command-line "
1245 "option");
1246 value = match_cfg_line(&cp, linenum, user, host, address);
1247 if (value < 0)
1248 fatal("%s line %d: Bad Match condition", filename,
1249 linenum);
1250 *activep = value;
1251 break;
1252
Damien Miller9b439df2006-07-24 14:04:00 +10001253 case sPermitOpen:
1254 arg = strdelim(&cp);
1255 if (!arg || *arg == '\0')
1256 fatal("%s line %d: missing PermitOpen specification",
1257 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001258 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001259 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001260 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001261 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001262 options->num_permitted_opens = 0;
1263 }
Damien Miller9b439df2006-07-24 14:04:00 +10001264 break;
1265 }
Damien Millera29b95e2007-01-05 16:28:36 +11001266 if (*activep && n == -1)
1267 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001268 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1269 p = hpdelim(&arg);
1270 if (p == NULL)
1271 fatal("%s line %d: missing host in PermitOpen",
1272 filename, linenum);
1273 p = cleanhostname(p);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001274 if (arg == NULL || (port = a2port(arg)) <= 0)
Damien Millera765cf42006-07-24 14:08:13 +10001275 fatal("%s line %d: bad port number in "
1276 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001277 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001278 options->num_permitted_opens =
1279 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001280 }
Damien Miller9b439df2006-07-24 14:04:00 +10001281 break;
1282
Damien Millere2754432006-07-24 14:06:47 +10001283 case sForceCommand:
1284 if (cp == NULL)
1285 fatal("%.200s line %d: Missing argument.", filename,
1286 linenum);
1287 len = strspn(cp, WHITESPACE);
1288 if (*activep && options->adm_forced_command == NULL)
1289 options->adm_forced_command = xstrdup(cp + len);
1290 return 0;
1291
Damien Millerd8cb1f12008-02-10 22:40:12 +11001292 case sChrootDirectory:
1293 charptr = &options->chroot_directory;
Damien Miller54e37732008-02-10 22:48:55 +11001294
1295 arg = strdelim(&cp);
1296 if (!arg || *arg == '\0')
1297 fatal("%s line %d: missing file name.",
1298 filename, linenum);
1299 if (*activep && *charptr == NULL)
1300 *charptr = xstrdup(arg);
1301 break;
Damien Millerd8cb1f12008-02-10 22:40:12 +11001302
Darren Tucker1f5e3dc2010-01-08 19:53:52 +11001303#ifdef USE_ROUTINGDOMAIN
Darren Tucker34e314d2010-01-08 17:03:46 +11001304 case sRDomain:
1305 intptr = &options->rdomain;
Darren Tucker75456e82010-01-08 18:55:58 +11001306 arg = strdelim(&cp);
1307 if (!arg || *arg == '\0')
1308 fatal("%s line %d: missing rdomain value.",
1309 filename, linenum);
1310 if ((value = a2rdomain(arg)) == -1)
1311 fatal("%s line %d: invalid rdomain value.",
1312 filename, linenum);
1313 if (*intptr == -1)
1314 *intptr = value;
1315 break;
Darren Tucker1f5e3dc2010-01-08 19:53:52 +11001316#endif
Darren Tucker34e314d2010-01-08 17:03:46 +11001317
Ben Lindstromade03f62001-12-06 18:22:17 +00001318 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001319 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001320 filename, linenum, arg);
1321 while (arg)
1322 arg = strdelim(&cp);
1323 break;
1324
Damien Millerf9b3feb2003-05-16 11:38:32 +10001325 case sUnsupported:
1326 logit("%s line %d: Unsupported option %s",
1327 filename, linenum, arg);
1328 while (arg)
1329 arg = strdelim(&cp);
1330 break;
1331
Ben Lindstromade03f62001-12-06 18:22:17 +00001332 default:
1333 fatal("%s line %d: Missing handler for opcode %s (%d)",
1334 filename, linenum, arg, opcode);
1335 }
1336 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1337 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1338 filename, linenum, arg);
1339 return 0;
1340}
1341
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001342/* Reads the server configuration file. */
1343
Damien Miller4af51302000-04-16 11:18:38 +10001344void
Darren Tucker645ab752004-06-25 13:33:20 +10001345load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001346{
Darren Tucker645ab752004-06-25 13:33:20 +10001347 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001348 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349
Darren Tucker645ab752004-06-25 13:33:20 +10001350 debug2("%s: filename %s", __func__, filename);
1351 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001352 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001353 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001354 }
Darren Tucker645ab752004-06-25 13:33:20 +10001355 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001356 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001357 /*
1358 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001359 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001360 * line numbers later for error messages
1361 */
1362 if ((cp = strchr(line, '#')) != NULL)
1363 memcpy(cp, "\n", 2);
1364 cp = line + strspn(line, " \t\r");
1365
1366 buffer_append(conf, cp, strlen(cp));
1367 }
1368 buffer_append(conf, "\0", 1);
1369 fclose(f);
1370 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1371}
1372
1373void
Darren Tucker45150472006-07-12 22:34:17 +10001374parse_server_match_config(ServerOptions *options, const char *user,
1375 const char *host, const char *address)
Darren Tucker645ab752004-06-25 13:33:20 +10001376{
Darren Tucker45150472006-07-12 22:34:17 +10001377 ServerOptions mo;
1378
1379 initialize_server_options(&mo);
1380 parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
Darren Tucker1629c072007-02-19 22:25:37 +11001381 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001382}
1383
Darren Tucker1629c072007-02-19 22:25:37 +11001384/* Helper macros */
1385#define M_CP_INTOPT(n) do {\
1386 if (src->n != -1) \
1387 dst->n = src->n; \
1388} while (0)
1389#define M_CP_STROPT(n) do {\
1390 if (src->n != NULL) { \
1391 if (dst->n != NULL) \
1392 xfree(dst->n); \
1393 dst->n = src->n; \
1394 } \
1395} while(0)
1396
1397/*
1398 * Copy any supported values that are set.
1399 *
Darren Tucker3b59dfa2009-06-21 17:54:47 +10001400 * If the preauth flag is set, we do not bother copying the string or
Darren Tucker1629c072007-02-19 22:25:37 +11001401 * array values that are not used pre-authentication, because any that we
1402 * do use must be explictly sent in mm_getpwnamallow().
1403 */
Darren Tucker45150472006-07-12 22:34:17 +10001404void
Darren Tucker1629c072007-02-19 22:25:37 +11001405copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001406{
Darren Tucker1629c072007-02-19 22:25:37 +11001407 M_CP_INTOPT(password_authentication);
1408 M_CP_INTOPT(gss_authentication);
1409 M_CP_INTOPT(rsa_authentication);
1410 M_CP_INTOPT(pubkey_authentication);
1411 M_CP_INTOPT(kerberos_authentication);
1412 M_CP_INTOPT(hostbased_authentication);
1413 M_CP_INTOPT(kbd_interactive_authentication);
Damien Miller01ed2272008-11-05 16:20:46 +11001414 M_CP_INTOPT(zero_knowledge_password_authentication);
Darren Tucker15f94272008-01-01 20:36:56 +11001415 M_CP_INTOPT(permit_root_login);
Damien Miller51bde602008-11-03 19:23:10 +11001416 M_CP_INTOPT(permit_empty_passwd);
Darren Tucker1629c072007-02-19 22:25:37 +11001417
1418 M_CP_INTOPT(allow_tcp_forwarding);
Damien Miller4f755cd2008-05-19 14:57:41 +10001419 M_CP_INTOPT(allow_agent_forwarding);
Darren Tucker1629c072007-02-19 22:25:37 +11001420 M_CP_INTOPT(gateway_ports);
1421 M_CP_INTOPT(x11_display_offset);
1422 M_CP_INTOPT(x11_forwarding);
1423 M_CP_INTOPT(x11_use_localhost);
Damien Miller7207f642008-05-19 15:34:50 +10001424 M_CP_INTOPT(max_sessions);
Damien Miller307c1d12008-06-16 07:56:20 +10001425 M_CP_INTOPT(max_authtries);
Darren Tucker1629c072007-02-19 22:25:37 +11001426
1427 M_CP_STROPT(banner);
1428 if (preauth)
1429 return;
1430 M_CP_STROPT(adm_forced_command);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001431 M_CP_STROPT(chroot_directory);
Darren Tucker45150472006-07-12 22:34:17 +10001432}
1433
Darren Tucker1629c072007-02-19 22:25:37 +11001434#undef M_CP_INTOPT
1435#undef M_CP_STROPT
1436
Darren Tucker45150472006-07-12 22:34:17 +10001437void
1438parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1439 const char *user, const char *host, const char *address)
1440{
1441 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001442 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001443
1444 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1445
Darren Tucker9fbac712004-08-12 22:41:44 +10001446 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker45150472006-07-12 22:34:17 +10001447 active = user ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001448 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001449 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001450 if (process_server_config_line(options, cp, filename,
Darren Tucker45150472006-07-12 22:34:17 +10001451 linenum++, &active, user, host, address) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001452 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001453 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001454 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001455 if (bad_options > 0)
1456 fatal("%s: terminating, %d bad configuration options",
1457 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001458}
Darren Tuckere7140f22008-06-10 23:01:51 +10001459
1460static const char *
1461fmt_intarg(ServerOpCodes code, int val)
1462{
1463 if (code == sAddressFamily) {
1464 switch (val) {
1465 case AF_INET:
1466 return "inet";
1467 case AF_INET6:
1468 return "inet6";
1469 case AF_UNSPEC:
1470 return "any";
1471 default:
1472 return "UNKNOWN";
1473 }
1474 }
1475 if (code == sPermitRootLogin) {
1476 switch (val) {
1477 case PERMIT_NO_PASSWD:
Darren Tuckerff4350e2008-11-11 16:31:05 +11001478 return "without-password";
Darren Tuckere7140f22008-06-10 23:01:51 +10001479 case PERMIT_FORCED_ONLY:
1480 return "forced-commands-only";
1481 case PERMIT_YES:
1482 return "yes";
1483 }
1484 }
1485 if (code == sProtocol) {
1486 switch (val) {
1487 case SSH_PROTO_1:
1488 return "1";
1489 case SSH_PROTO_2:
1490 return "2";
1491 case (SSH_PROTO_1|SSH_PROTO_2):
1492 return "2,1";
1493 default:
1494 return "UNKNOWN";
1495 }
1496 }
1497 if (code == sGatewayPorts && val == 2)
1498 return "clientspecified";
1499 if (code == sCompression && val == COMP_DELAYED)
1500 return "delayed";
1501 switch (val) {
1502 case -1:
1503 return "unset";
1504 case 0:
1505 return "no";
1506 case 1:
1507 return "yes";
1508 }
1509 return "UNKNOWN";
1510}
1511
1512static const char *
1513lookup_opcode_name(ServerOpCodes code)
1514{
1515 u_int i;
1516
1517 for (i = 0; keywords[i].name != NULL; i++)
1518 if (keywords[i].opcode == code)
1519 return(keywords[i].name);
1520 return "UNKNOWN";
1521}
1522
1523static void
1524dump_cfg_int(ServerOpCodes code, int val)
1525{
1526 printf("%s %d\n", lookup_opcode_name(code), val);
1527}
1528
1529static void
1530dump_cfg_fmtint(ServerOpCodes code, int val)
1531{
1532 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
1533}
1534
1535static void
1536dump_cfg_string(ServerOpCodes code, const char *val)
1537{
1538 if (val == NULL)
1539 return;
1540 printf("%s %s\n", lookup_opcode_name(code), val);
1541}
1542
1543static void
1544dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
1545{
1546 u_int i;
1547
1548 for (i = 0; i < count; i++)
1549 printf("%s %s\n", lookup_opcode_name(code), vals[i]);
1550}
1551
1552void
1553dump_config(ServerOptions *o)
1554{
1555 u_int i;
1556 int ret;
1557 struct addrinfo *ai;
1558 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
1559
1560 /* these are usually at the top of the config */
1561 for (i = 0; i < o->num_ports; i++)
1562 printf("port %d\n", o->ports[i]);
1563 dump_cfg_fmtint(sProtocol, o->protocol);
1564 dump_cfg_fmtint(sAddressFamily, o->address_family);
1565
1566 /* ListenAddress must be after Port */
1567 for (ai = o->listen_addrs; ai; ai = ai->ai_next) {
1568 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1569 sizeof(addr), port, sizeof(port),
1570 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1571 error("getnameinfo failed: %.100s",
1572 (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1573 strerror(errno));
1574 } else {
1575 if (ai->ai_family == AF_INET6)
1576 printf("listenaddress [%s]:%s\n", addr, port);
1577 else
1578 printf("listenaddress %s:%s\n", addr, port);
1579 }
1580 }
1581
1582 /* integer arguments */
Damien Miller212f0b02008-07-23 17:42:29 +10001583#ifdef USE_PAM
1584 dump_cfg_int(sUsePAM, o->use_pam);
1585#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001586 dump_cfg_int(sServerKeyBits, o->server_key_bits);
1587 dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1588 dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1589 dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
1590 dump_cfg_int(sMaxAuthTries, o->max_authtries);
Damien Miller7fc5c0f2008-11-05 16:12:11 +11001591 dump_cfg_int(sMaxSessions, o->max_sessions);
Darren Tuckere7140f22008-06-10 23:01:51 +10001592 dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
1593 dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
Darren Tucker34e314d2010-01-08 17:03:46 +11001594 dump_cfg_int(sRDomain, o->rdomain);
Darren Tuckere7140f22008-06-10 23:01:51 +10001595
1596 /* formatted integer arguments */
1597 dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
1598 dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
1599 dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
1600 dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication);
1601 dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
1602 dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
1603 o->hostbased_uses_name_from_packet_only);
1604 dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1605 dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
Damien Miller6ef430d2008-07-23 17:40:04 +10001606#ifdef KRB5
Darren Tuckere7140f22008-06-10 23:01:51 +10001607 dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1608 dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1609 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
Damien Miller6ef430d2008-07-23 17:40:04 +10001610# ifdef USE_AFS
Darren Tuckere7140f22008-06-10 23:01:51 +10001611 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
Damien Miller6ef430d2008-07-23 17:40:04 +10001612# endif
1613#endif
1614#ifdef GSSAPI
Darren Tuckere7140f22008-06-10 23:01:51 +10001615 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1616 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
Damien Miller6ef430d2008-07-23 17:40:04 +10001617#endif
Damien Miller01ed2272008-11-05 16:20:46 +11001618#ifdef JPAKE
1619 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
1620 o->zero_knowledge_password_authentication);
1621#endif
Darren Tuckere7140f22008-06-10 23:01:51 +10001622 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1623 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1624 o->kbd_interactive_authentication);
1625 dump_cfg_fmtint(sChallengeResponseAuthentication,
1626 o->challenge_response_authentication);
1627 dump_cfg_fmtint(sPrintMotd, o->print_motd);
1628 dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
1629 dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
1630 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1631 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1632 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1633 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1634 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1635 dump_cfg_fmtint(sUseLogin, o->use_login);
1636 dump_cfg_fmtint(sCompression, o->compression);
1637 dump_cfg_fmtint(sGatewayPorts, o->gateway_ports);
1638 dump_cfg_fmtint(sUseDNS, o->use_dns);
1639 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1640 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1641
1642 /* string arguments */
1643 dump_cfg_string(sPidFile, o->pid_file);
1644 dump_cfg_string(sXAuthLocation, o->xauth_location);
1645 dump_cfg_string(sCiphers, o->ciphers);
1646 dump_cfg_string(sMacs, o->macs);
1647 dump_cfg_string(sBanner, o->banner);
1648 dump_cfg_string(sAuthorizedKeysFile, o->authorized_keys_file);
1649 dump_cfg_string(sAuthorizedKeysFile2, o->authorized_keys_file2);
1650 dump_cfg_string(sForceCommand, o->adm_forced_command);
1651
1652 /* string arguments requiring a lookup */
1653 dump_cfg_string(sLogLevel, log_level_name(o->log_level));
1654 dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
1655
1656 /* string array arguments */
1657 dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
1658 o->host_key_files);
1659 dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
1660 dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
1661 dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
1662 dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
1663 dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1664
1665 /* other arguments */
1666 for (i = 0; i < o->num_subsystems; i++)
1667 printf("subsystem %s %s\n", o->subsystem_name[i],
1668 o->subsystem_args[i]);
1669
1670 printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
1671 o->max_startups_rate, o->max_startups);
1672
1673 for (i = 0; tunmode_desc[i].val != -1; i++)
1674 if (tunmode_desc[i].val == o->permit_tun) {
1675 s = tunmode_desc[i].text;
1676 break;
1677 }
1678 dump_cfg_string(sPermitTunnel, s);
1679
Darren Tuckere7140f22008-06-10 23:01:51 +10001680 channel_print_adm_permitted_opens();
Darren Tuckere7140f22008-06-10 23:01:51 +10001681}