blob: 4e3140fe3835eac264d3cc01adc464590fe5f10d [file] [log] [blame]
Darren Tucker1e44c5d2008-01-01 20:32:26 +11001/* $OpenBSD: servconf.c,v 1.174 2007/12/31 10:41:31 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>
Damien Millerbe43ebf2006-07-24 13:51:51 +100026
Damien Millerd7834352006-08-05 12:39:39 +100027#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100030#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#include "servconf.h"
Damien Miller78928792000-04-12 20:17:38 +100032#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "misc.h"
35#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000037#include "kex.h"
38#include "mac.h"
Darren Tucker45150472006-07-12 22:34:17 +100039#include "match.h"
Damien Miller9b439df2006-07-24 14:04:00 +100040#include "channels.h"
Damien Miller565ca3f2006-08-19 00:23:15 +100041#include "groupaccess.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042
Ben Lindstrombba81212001-06-25 05:01:22 +000043static void add_listen_addr(ServerOptions *, char *, u_short);
44static void add_one_listen_addr(ServerOptions *, char *, u_short);
Damien Miller34132e52000-01-14 15:45:46 +110045
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000046/* Use of privilege separation or not */
47extern int use_privsep;
Darren Tucker45150472006-07-12 22:34:17 +100048extern Buffer cfg;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050/* Initializes the server options to their default values. */
51
Damien Miller4af51302000-04-16 11:18:38 +100052void
Damien Miller95def091999-11-25 00:26:21 +110053initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054{
Damien Miller95def091999-11-25 00:26:21 +110055 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110056
57 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100058 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110059
60 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110061 options->num_ports = 0;
62 options->ports_from_cmdline = 0;
63 options->listen_addrs = NULL;
Darren Tucker0f383232005-01-20 10:57:56 +110064 options->address_family = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110065 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100066 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110067 options->server_key_bits = -1;
68 options->login_grace_time = -1;
69 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000070 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110071 options->ignore_rhosts = -1;
72 options->ignore_user_known_hosts = -1;
73 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000074 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110075 options->x11_forwarding = -1;
76 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110077 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100078 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110079 options->strict_modes = -1;
Damien Miller12c150e2003-12-17 16:31:10 +110080 options->tcp_keep_alive = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110081 options->log_facility = SYSLOG_FACILITY_NOT_SET;
82 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110083 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000084 options->hostbased_authentication = -1;
85 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110086 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110087 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110088 options->kerberos_authentication = -1;
89 options->kerberos_or_local_passwd = -1;
90 options->kerberos_ticket_cleanup = -1;
Darren Tucker22ef5082003-12-31 11:37:34 +110091 options->kerberos_get_afs_token = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +100092 options->gss_authentication=-1;
93 options->gss_cleanup_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +110094 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110095 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +000096 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110097 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +000098 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +110099 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000100 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100101 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +1100102 options->num_allow_users = 0;
103 options->num_deny_users = 0;
104 options->num_allow_groups = 0;
105 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +1000106 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000107 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000108 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000109 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000110 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000111 options->max_startups_begin = -1;
112 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000113 options->max_startups = -1;
Darren Tucker89413db2004-05-24 10:36:23 +1000114 options->max_authtries = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000115 options->banner = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +1000116 options->use_dns = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000117 options->client_alive_interval = -1;
118 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000119 options->authorized_keys_file = NULL;
120 options->authorized_keys_file2 = NULL;
Darren Tucker46bc0752004-05-02 22:11:30 +1000121 options->num_accept_env = 0;
Damien Millerd27b9472005-12-13 19:29:02 +1100122 options->permit_tun = -1;
Damien Millera765cf42006-07-24 14:08:13 +1000123 options->num_permitted_opens = -1;
Damien Millere2754432006-07-24 14:06:47 +1000124 options->adm_forced_command = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125}
126
Damien Miller4af51302000-04-16 11:18:38 +1000127void
Damien Miller95def091999-11-25 00:26:21 +1100128fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129{
Damien Miller726273e2001-11-12 11:40:11 +1100130 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000131 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000132 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100133
134 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100135 if (options->protocol == SSH_PROTO_UNKNOWN)
136 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
137 if (options->num_host_key_files == 0) {
138 /* fill default hostkeys for protocols */
139 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100140 options->host_key_files[options->num_host_key_files++] =
141 _PATH_HOST_KEY_FILE;
142 if (options->protocol & SSH_PROTO_2) {
143 options->host_key_files[options->num_host_key_files++] =
144 _PATH_HOST_RSA_KEY_FILE;
145 options->host_key_files[options->num_host_key_files++] =
146 _PATH_HOST_DSA_KEY_FILE;
147 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100148 }
Damien Miller34132e52000-01-14 15:45:46 +1100149 if (options->num_ports == 0)
150 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
151 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000152 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000153 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000154 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->server_key_bits == -1)
156 options->server_key_bits = 768;
157 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000158 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100159 if (options->key_regeneration_time == -1)
160 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000161 if (options->permit_root_login == PERMIT_NOT_SET)
162 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100163 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100164 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100165 if (options->ignore_user_known_hosts == -1)
166 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100167 if (options->print_motd == -1)
168 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000169 if (options->print_lastlog == -1)
170 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100171 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100172 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100173 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100174 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100175 if (options->x11_use_localhost == -1)
176 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000177 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000178 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100179 if (options->strict_modes == -1)
180 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100181 if (options->tcp_keep_alive == -1)
182 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100183 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100184 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100185 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000186 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100187 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100188 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000189 if (options->hostbased_authentication == -1)
190 options->hostbased_authentication = 0;
191 if (options->hostbased_uses_name_from_packet_only == -1)
192 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100193 if (options->rsa_authentication == -1)
194 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100195 if (options->pubkey_authentication == -1)
196 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100197 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000198 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100199 if (options->kerberos_or_local_passwd == -1)
200 options->kerberos_or_local_passwd = 1;
201 if (options->kerberos_ticket_cleanup == -1)
202 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100203 if (options->kerberos_get_afs_token == -1)
204 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000205 if (options->gss_authentication == -1)
206 options->gss_authentication = 0;
207 if (options->gss_cleanup_creds == -1)
208 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100209 if (options->password_authentication == -1)
210 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100211 if (options->kbd_interactive_authentication == -1)
212 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000213 if (options->challenge_response_authentication == -1)
214 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100215 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100216 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000217 if (options->permit_user_env == -1)
218 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100219 if (options->use_login == -1)
220 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000221 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000222 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100223 if (options->allow_tcp_forwarding == -1)
224 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000225 if (options->gateway_ports == -1)
226 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000227 if (options->max_startups == -1)
228 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000229 if (options->max_startups_rate == -1)
230 options->max_startups_rate = 100; /* 100% */
231 if (options->max_startups_begin == -1)
232 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000233 if (options->max_authtries == -1)
234 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000235 if (options->use_dns == -1)
236 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000237 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100238 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000239 if (options->client_alive_count_max == -1)
240 options->client_alive_count_max = 3;
Damien Miller75413ac2001-11-12 11:14:35 +1100241 if (options->authorized_keys_file2 == NULL) {
242 /* authorized_keys_file2 falls back to authorized_keys_file */
243 if (options->authorized_keys_file != NULL)
244 options->authorized_keys_file2 = options->authorized_keys_file;
245 else
246 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
247 }
248 if (options->authorized_keys_file == NULL)
249 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerd27b9472005-12-13 19:29:02 +1100250 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100251 options->permit_tun = SSH_TUNMODE_NO;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000252
Ben Lindstromfb62a692002-06-06 19:47:11 +0000253 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000254 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000255 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000256
Tim Rice40017b02002-07-14 13:36:49 -0700257#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000258 if (use_privsep && options->compression == 1) {
259 error("This platform does not support both privilege "
260 "separation and compression");
261 error("Compression disabled");
262 options->compression = 0;
263 }
264#endif
265
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266}
267
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100269typedef enum {
270 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100271 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000272 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100273 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100274 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
275 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000276 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100277 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100278 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000279 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100280 sPasswordAuthentication, sKbdInteractiveAuthentication,
281 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000282 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100283 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100284 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000285 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100286 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000287 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000288 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
289 sMaxStartups, sMaxAuthTries,
Damien Miller3a961dc2003-06-03 10:25:48 +1000290 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100291 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000292 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Damien Millerd27b9472005-12-13 19:29:02 +1100293 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Damien Millere2754432006-07-24 14:06:47 +1000294 sMatch, sPermitOpen, sForceCommand,
Ben Lindstromc7431342002-03-22 03:11:49 +0000295 sUsePrivilegeSeparation,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000296 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297} ServerOpCodes;
298
Darren Tucker45150472006-07-12 22:34:17 +1000299#define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */
300#define SSHCFG_MATCH 0x02 /* allowed inside a Match section */
301#define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH)
302
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100304static struct {
305 const char *name;
306 ServerOpCodes opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000307 u_int flags;
Damien Miller95def091999-11-25 00:26:21 +1100308} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100309 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000310#ifdef USE_PAM
Darren Tucker45150472006-07-12 22:34:17 +1000311 { "usepam", sUsePAM, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000312#else
Darren Tucker45150472006-07-12 22:34:17 +1000313 { "usepam", sUnsupported, SSHCFG_GLOBAL },
Damien Miller6ac2c482003-05-16 11:42:35 +1000314#endif
Darren Tucker45150472006-07-12 22:34:17 +1000315 { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL },
Damien Miller726273e2001-11-12 11:40:11 +1100316 /* Standard Options */
Darren Tucker45150472006-07-12 22:34:17 +1000317 { "port", sPort, SSHCFG_GLOBAL },
318 { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
319 { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */
320 { "pidfile", sPidFile, SSHCFG_GLOBAL },
321 { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
322 { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
323 { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
324 { "permitrootlogin", sPermitRootLogin, SSHCFG_GLOBAL },
325 { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
326 { "loglevel", sLogLevel, SSHCFG_GLOBAL },
327 { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100328 { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL },
329 { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000330 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100331 { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL },
332 { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000333 { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000334#ifdef KRB5
Darren Tucker1629c072007-02-19 22:25:37 +1100335 { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000336 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
337 { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100338#ifdef USE_AFS
Darren Tucker45150472006-07-12 22:34:17 +1000339 { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000340#else
Darren Tucker45150472006-07-12 22:34:17 +1000341 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker409cb322004-01-05 22:36:51 +1100342#endif
343#else
Darren Tucker1629c072007-02-19 22:25:37 +1100344 { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000345 { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
346 { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
347 { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000348#endif
Darren Tucker45150472006-07-12 22:34:17 +1000349 { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
350 { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000351#ifdef GSSAPI
Darren Tucker1629c072007-02-19 22:25:37 +1100352 { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000353 { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000354#else
Darren Tucker1629c072007-02-19 22:25:37 +1100355 { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000356 { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
Darren Tucker0efd1552003-08-26 11:49:55 +1000357#endif
Darren Tucker1629c072007-02-19 22:25:37 +1100358 { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
359 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
Darren Tucker1d75f222007-03-01 21:31:28 +1100360 { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
Darren Tucker45150472006-07-12 22:34:17 +1000361 { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
362 { "checkmail", sDeprecated, SSHCFG_GLOBAL },
363 { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
364 { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
365 { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
366 { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
367 { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
368 { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
Damien Millerd1de9952006-07-24 14:05:48 +1000369 { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
370 { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
371 { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000372 { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
373 { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
374 { "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },
375 { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
376 { "uselogin", sUseLogin, SSHCFG_GLOBAL },
377 { "compression", sCompression, SSHCFG_GLOBAL },
378 { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
379 { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */
380 { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
381 { "allowusers", sAllowUsers, SSHCFG_GLOBAL },
382 { "denyusers", sDenyUsers, SSHCFG_GLOBAL },
383 { "allowgroups", sAllowGroups, SSHCFG_GLOBAL },
384 { "denygroups", sDenyGroups, SSHCFG_GLOBAL },
385 { "ciphers", sCiphers, SSHCFG_GLOBAL },
386 { "macs", sMacs, SSHCFG_GLOBAL },
387 { "protocol", sProtocol, SSHCFG_GLOBAL },
388 { "gatewayports", sGatewayPorts, SSHCFG_ALL },
389 { "subsystem", sSubsystem, SSHCFG_GLOBAL },
390 { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
391 { "maxauthtries", sMaxAuthTries, SSHCFG_GLOBAL },
Darren Tucker1629c072007-02-19 22:25:37 +1100392 { "banner", sBanner, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000393 { "usedns", sUseDNS, SSHCFG_GLOBAL },
394 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
395 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
396 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL },
397 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
398 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL },
399 { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL },
400 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL },
401 { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
402 { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL },
Damien Miller9b439df2006-07-24 14:04:00 +1000403 { "match", sMatch, SSHCFG_ALL },
404 { "permitopen", sPermitOpen, SSHCFG_ALL },
Damien Millere2754432006-07-24 14:06:47 +1000405 { "forcecommand", sForceCommand, SSHCFG_ALL },
Darren Tucker45150472006-07-12 22:34:17 +1000406 { NULL, sBadOption, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407};
408
Damien Miller5428f641999-11-25 11:54:57 +1100409/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000410 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100411 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000412
Damien Miller4af51302000-04-16 11:18:38 +1000413static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100414parse_token(const char *cp, const char *filename,
Darren Tucker45150472006-07-12 22:34:17 +1000415 int linenum, u_int *flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000417 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418
Damien Miller95def091999-11-25 00:26:21 +1100419 for (i = 0; keywords[i].name; i++)
Darren Tucker45150472006-07-12 22:34:17 +1000420 if (strcasecmp(cp, keywords[i].name) == 0) {
421 *flags = keywords[i].flags;
Damien Miller95def091999-11-25 00:26:21 +1100422 return keywords[i].opcode;
Darren Tucker45150472006-07-12 22:34:17 +1000423 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000425 error("%s: line %d: Bad configuration option: %s",
426 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100427 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428}
429
Ben Lindstrombba81212001-06-25 05:01:22 +0000430static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000431add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100432{
Damien Millereccb9de2005-06-17 12:59:34 +1000433 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100434
435 if (options->num_ports == 0)
436 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100437 if (options->address_family == -1)
438 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000439 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000440 for (i = 0; i < options->num_ports; i++)
441 add_one_listen_addr(options, addr, options->ports[i]);
442 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000443 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000444}
445
Ben Lindstrombba81212001-06-25 05:01:22 +0000446static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000447add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
448{
449 struct addrinfo hints, *ai, *aitop;
450 char strport[NI_MAXSERV];
451 int gaierr;
452
453 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100454 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000455 hints.ai_socktype = SOCK_STREAM;
456 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000457 snprintf(strport, sizeof strport, "%u", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000458 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
459 fatal("bad addr or host: %s (%s)",
460 addr ? addr : "<NULL>",
Darren Tucker4abde772007-12-29 02:43:51 +1100461 ssh_gai_strerror(gaierr));
Ben Lindstromc510af42001-04-07 17:25:48 +0000462 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
463 ;
464 ai->ai_next = options->listen_addrs;
465 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100466}
467
Darren Tucker45150472006-07-12 22:34:17 +1000468/*
469 * The strategy for the Match blocks is that the config file is parsed twice.
470 *
471 * The first time is at startup. activep is initialized to 1 and the
472 * directives in the global context are processed and acted on. Hitting a
473 * Match directive unsets activep and the directives inside the block are
474 * checked for syntax only.
475 *
476 * The second time is after a connection has been established but before
477 * authentication. activep is initialized to 2 and global config directives
478 * are ignored since they have already been processed. If the criteria in a
479 * Match block is met, activep is set and the subsequent directives
480 * processed and actioned until EOF or another Match block unsets it. Any
481 * options set are copied into the main server config.
482 *
483 * Potential additions/improvements:
484 * - Add Match support for pre-kex directives, eg Protocol, Ciphers.
485 *
486 * - Add a Tag directive (idea from David Leonard) ala pf, eg:
487 * Match Address 192.168.0.*
488 * Tag trusted
489 * Match Group wheel
490 * Tag trusted
491 * Match Tag trusted
492 * AllowTcpForwarding yes
493 * GatewayPorts clientspecified
494 * [...]
495 *
496 * - Add a PermittedChannelRequests directive
497 * Match Group shell
498 * PermittedChannelRequests session,forwarded-tcpip
499 */
500
501static int
Damien Miller565ca3f2006-08-19 00:23:15 +1000502match_cfg_line_group(const char *grps, int line, const char *user)
503{
504 int result = 0;
505 u_int ngrps = 0;
506 char *arg, *p, *cp, *grplist[MAX_MATCH_GROUPS];
507 struct passwd *pw;
508
509 /*
510 * Even if we do not have a user yet, we still need to check for
511 * valid syntax.
512 */
513 arg = cp = xstrdup(grps);
514 while ((p = strsep(&cp, ",")) != NULL && *p != '\0') {
515 if (ngrps >= MAX_MATCH_GROUPS) {
516 error("line %d: too many groups in Match Group", line);
517 result = -1;
518 goto out;
519 }
520 grplist[ngrps++] = p;
521 }
522
523 if (user == NULL)
524 goto out;
525
526 if ((pw = getpwnam(user)) == NULL) {
527 debug("Can't match group at line %d because user %.100s does "
528 "not exist", line, user);
529 } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
530 debug("Can't Match group because user %.100s not in any group "
531 "at line %d", user, line);
532 } else if (ga_match(grplist, ngrps) != 1) {
533 debug("user %.100s does not match group %.100s at line %d",
534 user, arg, line);
535 } else {
536 debug("user %.100s matched group %.100s at line %d", user,
537 arg, line);
538 result = 1;
539 }
540out:
541 ga_free();
542 xfree(arg);
543 return result;
544}
545
546static int
Darren Tucker45150472006-07-12 22:34:17 +1000547match_cfg_line(char **condition, int line, const char *user, const char *host,
548 const char *address)
549{
550 int result = 1;
551 char *arg, *attrib, *cp = *condition;
552 size_t len;
553
554 if (user == NULL)
555 debug3("checking syntax for 'Match %s'", cp);
556 else
557 debug3("checking match for '%s' user %s host %s addr %s", cp,
558 user ? user : "(null)", host ? host : "(null)",
559 address ? address : "(null)");
560
561 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
562 if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
563 error("Missing Match criteria for %s", attrib);
564 return -1;
565 }
566 len = strlen(arg);
567 if (strcasecmp(attrib, "user") == 0) {
568 if (!user) {
569 result = 0;
570 continue;
571 }
572 if (match_pattern_list(user, arg, len, 0) != 1)
573 result = 0;
574 else
575 debug("user %.100s matched 'User %.100s' at "
576 "line %d", user, arg, line);
Damien Miller565ca3f2006-08-19 00:23:15 +1000577 } else if (strcasecmp(attrib, "group") == 0) {
578 switch (match_cfg_line_group(arg, line, user)) {
579 case -1:
580 return -1;
581 case 0:
582 result = 0;
583 }
Darren Tucker45150472006-07-12 22:34:17 +1000584 } else if (strcasecmp(attrib, "host") == 0) {
585 if (!host) {
586 result = 0;
587 continue;
588 }
589 if (match_hostname(host, arg, len) != 1)
590 result = 0;
591 else
592 debug("connection from %.100s matched 'Host "
593 "%.100s' at line %d", host, arg, line);
594 } else if (strcasecmp(attrib, "address") == 0) {
Darren Tucker45150472006-07-12 22:34:17 +1000595 if (!address) {
596 result = 0;
597 continue;
598 }
599 if (match_hostname(address, arg, len) != 1)
600 result = 0;
601 else
602 debug("connection from %.100s matched 'Address "
603 "%.100s' at line %d", address, arg, line);
604 } else {
605 error("Unsupported Match attribute %s", attrib);
606 return -1;
607 }
608 }
609 if (user != NULL)
610 debug3("match %sfound", result ? "" : "not ");
611 *condition = cp;
612 return result;
613}
614
Damien Millere2754432006-07-24 14:06:47 +1000615#define WHITESPACE " \t\r\n"
616
Ben Lindstromade03f62001-12-06 18:22:17 +0000617int
618process_server_config_line(ServerOptions *options, char *line,
Darren Tucker45150472006-07-12 22:34:17 +1000619 const char *filename, int linenum, int *activep, const char *user,
620 const char *host, const char *address)
Ben Lindstromade03f62001-12-06 18:22:17 +0000621{
622 char *cp, **charptr, *arg, *p;
Darren Tucker45150472006-07-12 22:34:17 +1000623 int cmdline = 0, *intptr, value, n;
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100624 SyslogFacility *log_facility_ptr;
625 LogLevel *log_level_ptr;
Ben Lindstromade03f62001-12-06 18:22:17 +0000626 ServerOpCodes opcode;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100627 u_short port;
Darren Tucker45150472006-07-12 22:34:17 +1000628 u_int i, flags = 0;
Damien Miller917f9b62006-07-10 20:36:47 +1000629 size_t len;
Ben Lindstromade03f62001-12-06 18:22:17 +0000630
631 cp = line;
Damien Miller78f16cb2006-03-26 13:54:37 +1100632 if ((arg = strdelim(&cp)) == NULL)
Damien Miller928b2362006-03-26 13:53:32 +1100633 return 0;
Ben Lindstromade03f62001-12-06 18:22:17 +0000634 /* Ignore leading whitespace */
635 if (*arg == '\0')
636 arg = strdelim(&cp);
637 if (!arg || !*arg || *arg == '#')
638 return 0;
639 intptr = NULL;
640 charptr = NULL;
Darren Tucker45150472006-07-12 22:34:17 +1000641 opcode = parse_token(arg, filename, linenum, &flags);
642
643 if (activep == NULL) { /* We are processing a command line directive */
644 cmdline = 1;
645 activep = &cmdline;
646 }
647 if (*activep && opcode != sMatch)
648 debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
649 if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
650 if (user == NULL) {
651 fatal("%s line %d: Directive '%s' is not allowed "
652 "within a Match block", filename, linenum, arg);
653 } else { /* this is a directive we have already processed */
654 while (arg)
655 arg = strdelim(&cp);
656 return 0;
657 }
658 }
659
Ben Lindstromade03f62001-12-06 18:22:17 +0000660 switch (opcode) {
661 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000662 case sUsePAM:
663 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000664 goto parse_flag;
665
666 /* Standard Options */
667 case sBadOption:
668 return -1;
669 case sPort:
670 /* ignore ports from configfile if cmdline specifies ports */
671 if (options->ports_from_cmdline)
672 return 0;
673 if (options->listen_addrs != NULL)
674 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100675 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000676 if (options->num_ports >= MAX_PORTS)
677 fatal("%s line %d: too many ports.",
678 filename, linenum);
679 arg = strdelim(&cp);
680 if (!arg || *arg == '\0')
681 fatal("%s line %d: missing port number.",
682 filename, linenum);
683 options->ports[options->num_ports++] = a2port(arg);
684 if (options->ports[options->num_ports-1] == 0)
685 fatal("%s line %d: Badly formatted port number.",
686 filename, linenum);
687 break;
688
689 case sServerKeyBits:
690 intptr = &options->server_key_bits;
691parse_int:
692 arg = strdelim(&cp);
693 if (!arg || *arg == '\0')
694 fatal("%s line %d: missing integer value.",
695 filename, linenum);
696 value = atoi(arg);
Darren Tucker45150472006-07-12 22:34:17 +1000697 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000698 *intptr = value;
699 break;
700
701 case sLoginGraceTime:
702 intptr = &options->login_grace_time;
703parse_time:
704 arg = strdelim(&cp);
705 if (!arg || *arg == '\0')
706 fatal("%s line %d: missing time value.",
707 filename, linenum);
708 if ((value = convtime(arg)) == -1)
709 fatal("%s line %d: invalid time value.",
710 filename, linenum);
711 if (*intptr == -1)
712 *intptr = value;
713 break;
714
715 case sKeyRegenerationTime:
716 intptr = &options->key_regeneration_time;
717 goto parse_time;
718
719 case sListenAddress:
720 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100721 if (arg == NULL || *arg == '\0')
722 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000723 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000724 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
725 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
726 && strchr(p+1, ':') != NULL) {
727 add_listen_addr(options, arg, 0);
728 break;
729 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100730 p = hpdelim(&arg);
731 if (p == NULL)
732 fatal("%s line %d: bad address:port usage",
733 filename, linenum);
734 p = cleanhostname(p);
735 if (arg == NULL)
736 port = 0;
737 else if ((port = a2port(arg)) == 0)
738 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000739
Damien Millerf91ee4c2005-03-01 21:24:33 +1100740 add_listen_addr(options, p, port);
741
Ben Lindstromade03f62001-12-06 18:22:17 +0000742 break;
743
Darren Tucker0f383232005-01-20 10:57:56 +1100744 case sAddressFamily:
745 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000746 if (!arg || *arg == '\0')
747 fatal("%s line %d: missing address family.",
748 filename, linenum);
Darren Tucker0f383232005-01-20 10:57:56 +1100749 intptr = &options->address_family;
750 if (options->listen_addrs != NULL)
751 fatal("%s line %d: address family must be specified before "
752 "ListenAddress.", filename, linenum);
753 if (strcasecmp(arg, "inet") == 0)
754 value = AF_INET;
755 else if (strcasecmp(arg, "inet6") == 0)
756 value = AF_INET6;
757 else if (strcasecmp(arg, "any") == 0)
758 value = AF_UNSPEC;
759 else
760 fatal("%s line %d: unsupported address family \"%s\".",
761 filename, linenum, arg);
762 if (*intptr == -1)
763 *intptr = value;
764 break;
765
Ben Lindstromade03f62001-12-06 18:22:17 +0000766 case sHostKeyFile:
767 intptr = &options->num_host_key_files;
768 if (*intptr >= MAX_HOSTKEYS)
769 fatal("%s line %d: too many host keys specified (max %d).",
770 filename, linenum, MAX_HOSTKEYS);
771 charptr = &options->host_key_files[*intptr];
772parse_filename:
773 arg = strdelim(&cp);
774 if (!arg || *arg == '\0')
775 fatal("%s line %d: missing file name.",
776 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +1000777 if (*activep && *charptr == NULL) {
Ben Lindstromade03f62001-12-06 18:22:17 +0000778 *charptr = tilde_expand_filename(arg, getuid());
779 /* increase optional counter */
780 if (intptr != NULL)
781 *intptr = *intptr + 1;
782 }
783 break;
784
785 case sPidFile:
786 charptr = &options->pid_file;
787 goto parse_filename;
788
789 case sPermitRootLogin:
790 intptr = &options->permit_root_login;
791 arg = strdelim(&cp);
792 if (!arg || *arg == '\0')
793 fatal("%s line %d: missing yes/"
794 "without-password/forced-commands-only/no "
795 "argument.", filename, linenum);
796 value = 0; /* silence compiler */
797 if (strcmp(arg, "without-password") == 0)
798 value = PERMIT_NO_PASSWD;
799 else if (strcmp(arg, "forced-commands-only") == 0)
800 value = PERMIT_FORCED_ONLY;
801 else if (strcmp(arg, "yes") == 0)
802 value = PERMIT_YES;
803 else if (strcmp(arg, "no") == 0)
804 value = PERMIT_NO;
805 else
806 fatal("%s line %d: Bad yes/"
807 "without-password/forced-commands-only/no "
808 "argument: %s", filename, linenum, arg);
809 if (*intptr == -1)
810 *intptr = value;
811 break;
812
813 case sIgnoreRhosts:
814 intptr = &options->ignore_rhosts;
815parse_flag:
816 arg = strdelim(&cp);
817 if (!arg || *arg == '\0')
818 fatal("%s line %d: missing yes/no argument.",
819 filename, linenum);
820 value = 0; /* silence compiler */
821 if (strcmp(arg, "yes") == 0)
822 value = 1;
823 else if (strcmp(arg, "no") == 0)
824 value = 0;
825 else
826 fatal("%s line %d: Bad yes/no argument: %s",
827 filename, linenum, arg);
Darren Tucker45150472006-07-12 22:34:17 +1000828 if (*activep && *intptr == -1)
Ben Lindstromade03f62001-12-06 18:22:17 +0000829 *intptr = value;
830 break;
831
832 case sIgnoreUserKnownHosts:
833 intptr = &options->ignore_user_known_hosts;
834 goto parse_flag;
835
Ben Lindstromade03f62001-12-06 18:22:17 +0000836 case sRhostsRSAAuthentication:
837 intptr = &options->rhosts_rsa_authentication;
838 goto parse_flag;
839
840 case sHostbasedAuthentication:
841 intptr = &options->hostbased_authentication;
842 goto parse_flag;
843
844 case sHostbasedUsesNameFromPacketOnly:
845 intptr = &options->hostbased_uses_name_from_packet_only;
846 goto parse_flag;
847
848 case sRSAAuthentication:
849 intptr = &options->rsa_authentication;
850 goto parse_flag;
851
852 case sPubkeyAuthentication:
853 intptr = &options->pubkey_authentication;
854 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000855
Ben Lindstromade03f62001-12-06 18:22:17 +0000856 case sKerberosAuthentication:
857 intptr = &options->kerberos_authentication;
858 goto parse_flag;
859
860 case sKerberosOrLocalPasswd:
861 intptr = &options->kerberos_or_local_passwd;
862 goto parse_flag;
863
864 case sKerberosTicketCleanup:
865 intptr = &options->kerberos_ticket_cleanup;
866 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000867
Darren Tucker22ef5082003-12-31 11:37:34 +1100868 case sKerberosGetAFSToken:
869 intptr = &options->kerberos_get_afs_token;
870 goto parse_flag;
871
Darren Tucker0efd1552003-08-26 11:49:55 +1000872 case sGssAuthentication:
873 intptr = &options->gss_authentication;
874 goto parse_flag;
875
876 case sGssCleanupCreds:
877 intptr = &options->gss_cleanup_creds;
878 goto parse_flag;
879
Ben Lindstromade03f62001-12-06 18:22:17 +0000880 case sPasswordAuthentication:
881 intptr = &options->password_authentication;
882 goto parse_flag;
883
884 case sKbdInteractiveAuthentication:
885 intptr = &options->kbd_interactive_authentication;
886 goto parse_flag;
887
888 case sChallengeResponseAuthentication:
889 intptr = &options->challenge_response_authentication;
890 goto parse_flag;
891
892 case sPrintMotd:
893 intptr = &options->print_motd;
894 goto parse_flag;
895
896 case sPrintLastLog:
897 intptr = &options->print_lastlog;
898 goto parse_flag;
899
900 case sX11Forwarding:
901 intptr = &options->x11_forwarding;
902 goto parse_flag;
903
904 case sX11DisplayOffset:
905 intptr = &options->x11_display_offset;
906 goto parse_int;
907
Damien Miller95c249f2002-02-05 12:11:34 +1100908 case sX11UseLocalhost:
909 intptr = &options->x11_use_localhost;
910 goto parse_flag;
911
Ben Lindstromade03f62001-12-06 18:22:17 +0000912 case sXAuthLocation:
913 charptr = &options->xauth_location;
914 goto parse_filename;
915
916 case sStrictModes:
917 intptr = &options->strict_modes;
918 goto parse_flag;
919
Damien Miller12c150e2003-12-17 16:31:10 +1100920 case sTCPKeepAlive:
921 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +0000922 goto parse_flag;
923
924 case sEmptyPasswd:
925 intptr = &options->permit_empty_passwd;
926 goto parse_flag;
927
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000928 case sPermitUserEnvironment:
929 intptr = &options->permit_user_env;
930 goto parse_flag;
931
Ben Lindstromade03f62001-12-06 18:22:17 +0000932 case sUseLogin:
933 intptr = &options->use_login;
934 goto parse_flag;
935
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000936 case sCompression:
937 intptr = &options->compression;
Damien Miller9786e6e2005-07-26 21:54:56 +1000938 arg = strdelim(&cp);
939 if (!arg || *arg == '\0')
940 fatal("%s line %d: missing yes/no/delayed "
941 "argument.", filename, linenum);
942 value = 0; /* silence compiler */
943 if (strcmp(arg, "delayed") == 0)
944 value = COMP_DELAYED;
945 else if (strcmp(arg, "yes") == 0)
946 value = COMP_ZLIB;
947 else if (strcmp(arg, "no") == 0)
948 value = COMP_NONE;
949 else
950 fatal("%s line %d: Bad yes/no/delayed "
951 "argument: %s", filename, linenum, arg);
952 if (*intptr == -1)
953 *intptr = value;
954 break;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000955
Ben Lindstromade03f62001-12-06 18:22:17 +0000956 case sGatewayPorts:
957 intptr = &options->gateway_ports;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100958 arg = strdelim(&cp);
959 if (!arg || *arg == '\0')
960 fatal("%s line %d: missing yes/no/clientspecified "
961 "argument.", filename, linenum);
962 value = 0; /* silence compiler */
963 if (strcmp(arg, "clientspecified") == 0)
964 value = 2;
965 else if (strcmp(arg, "yes") == 0)
966 value = 1;
967 else if (strcmp(arg, "no") == 0)
968 value = 0;
969 else
970 fatal("%s line %d: Bad yes/no/clientspecified "
971 "argument: %s", filename, linenum, arg);
Darren Tucker82347a82007-02-25 20:37:52 +1100972 if (*activep && *intptr == -1)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100973 *intptr = value;
974 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000975
Damien Miller3a961dc2003-06-03 10:25:48 +1000976 case sUseDNS:
977 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +0000978 goto parse_flag;
979
980 case sLogFacility:
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100981 log_facility_ptr = &options->log_facility;
Ben Lindstromade03f62001-12-06 18:22:17 +0000982 arg = strdelim(&cp);
983 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100984 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000985 fatal("%.200s line %d: unsupported log facility '%s'",
986 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100987 if (*log_facility_ptr == -1)
988 *log_facility_ptr = (SyslogFacility) value;
Ben Lindstromade03f62001-12-06 18:22:17 +0000989 break;
990
991 case sLogLevel:
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100992 log_level_ptr = &options->log_level;
Ben Lindstromade03f62001-12-06 18:22:17 +0000993 arg = strdelim(&cp);
994 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100995 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000996 fatal("%.200s line %d: unsupported log level '%s'",
997 filename, linenum, arg ? arg : "<NONE>");
Darren Tucker1e44c5d2008-01-01 20:32:26 +1100998 if (*log_level_ptr == -1)
999 *log_level_ptr = (LogLevel) value;
Ben Lindstromade03f62001-12-06 18:22:17 +00001000 break;
1001
1002 case sAllowTcpForwarding:
1003 intptr = &options->allow_tcp_forwarding;
1004 goto parse_flag;
1005
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001006 case sUsePrivilegeSeparation:
1007 intptr = &use_privsep;
1008 goto parse_flag;
1009
Ben Lindstromade03f62001-12-06 18:22:17 +00001010 case sAllowUsers:
1011 while ((arg = strdelim(&cp)) && *arg != '\0') {
1012 if (options->num_allow_users >= MAX_ALLOW_USERS)
1013 fatal("%s line %d: too many allow users.",
1014 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001015 options->allow_users[options->num_allow_users++] =
1016 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001017 }
1018 break;
1019
1020 case sDenyUsers:
1021 while ((arg = strdelim(&cp)) && *arg != '\0') {
1022 if (options->num_deny_users >= MAX_DENY_USERS)
Damien Miller4dec5d72006-08-05 11:38:40 +10001023 fatal("%s line %d: too many deny users.",
Ben Lindstromade03f62001-12-06 18:22:17 +00001024 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001025 options->deny_users[options->num_deny_users++] =
1026 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001027 }
1028 break;
1029
1030 case sAllowGroups:
1031 while ((arg = strdelim(&cp)) && *arg != '\0') {
1032 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
1033 fatal("%s line %d: too many allow groups.",
1034 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +00001035 options->allow_groups[options->num_allow_groups++] =
1036 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001037 }
1038 break;
1039
1040 case sDenyGroups:
1041 while ((arg = strdelim(&cp)) && *arg != '\0') {
1042 if (options->num_deny_groups >= MAX_DENY_GROUPS)
1043 fatal("%s line %d: too many deny groups.",
1044 filename, linenum);
1045 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
1046 }
1047 break;
1048
1049 case sCiphers:
1050 arg = strdelim(&cp);
1051 if (!arg || *arg == '\0')
1052 fatal("%s line %d: Missing argument.", filename, linenum);
1053 if (!ciphers_valid(arg))
1054 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
1055 filename, linenum, arg ? arg : "<NONE>");
1056 if (options->ciphers == NULL)
1057 options->ciphers = xstrdup(arg);
1058 break;
1059
1060 case sMacs:
1061 arg = strdelim(&cp);
1062 if (!arg || *arg == '\0')
1063 fatal("%s line %d: Missing argument.", filename, linenum);
1064 if (!mac_valid(arg))
1065 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
1066 filename, linenum, arg ? arg : "<NONE>");
1067 if (options->macs == NULL)
1068 options->macs = xstrdup(arg);
1069 break;
1070
1071 case sProtocol:
1072 intptr = &options->protocol;
1073 arg = strdelim(&cp);
1074 if (!arg || *arg == '\0')
1075 fatal("%s line %d: Missing argument.", filename, linenum);
1076 value = proto_spec(arg);
1077 if (value == SSH_PROTO_UNKNOWN)
1078 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001079 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +00001080 if (*intptr == SSH_PROTO_UNKNOWN)
1081 *intptr = value;
1082 break;
1083
1084 case sSubsystem:
1085 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
1086 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001087 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001088 }
1089 arg = strdelim(&cp);
1090 if (!arg || *arg == '\0')
1091 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001092 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001093 if (!*activep) {
1094 arg = strdelim(&cp);
1095 break;
1096 }
Ben Lindstromade03f62001-12-06 18:22:17 +00001097 for (i = 0; i < options->num_subsystems; i++)
1098 if (strcmp(arg, options->subsystem_name[i]) == 0)
1099 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001100 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +00001101 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
1102 arg = strdelim(&cp);
1103 if (!arg || *arg == '\0')
1104 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001105 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001106 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Miller917f9b62006-07-10 20:36:47 +10001107
1108 /* Collect arguments (separate to executable) */
1109 p = xstrdup(arg);
1110 len = strlen(p) + 1;
1111 while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
1112 len += 1 + strlen(arg);
1113 p = xrealloc(p, 1, len);
1114 strlcat(p, " ", len);
1115 strlcat(p, arg, len);
1116 }
1117 options->subsystem_args[options->num_subsystems] = p;
Ben Lindstromade03f62001-12-06 18:22:17 +00001118 options->num_subsystems++;
1119 break;
1120
1121 case sMaxStartups:
1122 arg = strdelim(&cp);
1123 if (!arg || *arg == '\0')
1124 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001125 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +00001126 if ((n = sscanf(arg, "%d:%d:%d",
1127 &options->max_startups_begin,
1128 &options->max_startups_rate,
1129 &options->max_startups)) == 3) {
1130 if (options->max_startups_begin >
1131 options->max_startups ||
1132 options->max_startups_rate > 100 ||
1133 options->max_startups_rate < 1)
1134 fatal("%s line %d: Illegal MaxStartups spec.",
1135 filename, linenum);
1136 } else if (n != 1)
1137 fatal("%s line %d: Illegal MaxStartups spec.",
1138 filename, linenum);
1139 else
1140 options->max_startups = options->max_startups_begin;
1141 break;
1142
Darren Tucker89413db2004-05-24 10:36:23 +10001143 case sMaxAuthTries:
1144 intptr = &options->max_authtries;
1145 goto parse_int;
1146
Ben Lindstromade03f62001-12-06 18:22:17 +00001147 case sBanner:
1148 charptr = &options->banner;
1149 goto parse_filename;
1150 /*
1151 * These options can contain %X options expanded at
1152 * connect time, so that you can specify paths like:
1153 *
1154 * AuthorizedKeysFile /etc/ssh_keys/%u
1155 */
1156 case sAuthorizedKeysFile:
1157 case sAuthorizedKeysFile2:
Damien Miller4dec5d72006-08-05 11:38:40 +10001158 charptr = (opcode == sAuthorizedKeysFile) ?
Ben Lindstromade03f62001-12-06 18:22:17 +00001159 &options->authorized_keys_file :
1160 &options->authorized_keys_file2;
1161 goto parse_filename;
1162
1163 case sClientAliveInterval:
1164 intptr = &options->client_alive_interval;
1165 goto parse_time;
1166
1167 case sClientAliveCountMax:
1168 intptr = &options->client_alive_count_max;
1169 goto parse_int;
1170
Darren Tucker46bc0752004-05-02 22:11:30 +10001171 case sAcceptEnv:
1172 while ((arg = strdelim(&cp)) && *arg != '\0') {
1173 if (strchr(arg, '=') != NULL)
1174 fatal("%s line %d: Invalid environment name.",
1175 filename, linenum);
1176 if (options->num_accept_env >= MAX_ACCEPT_ENV)
1177 fatal("%s line %d: too many allow env.",
1178 filename, linenum);
Darren Tucker45150472006-07-12 22:34:17 +10001179 if (!*activep)
1180 break;
Darren Tucker46bc0752004-05-02 22:11:30 +10001181 options->accept_env[options->num_accept_env++] =
1182 xstrdup(arg);
1183 }
1184 break;
1185
Damien Millerd27b9472005-12-13 19:29:02 +11001186 case sPermitTunnel:
1187 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +11001188 arg = strdelim(&cp);
1189 if (!arg || *arg == '\0')
1190 fatal("%s line %d: Missing yes/point-to-point/"
1191 "ethernet/no argument.", filename, linenum);
1192 value = 0; /* silence compiler */
1193 if (strcasecmp(arg, "ethernet") == 0)
1194 value = SSH_TUNMODE_ETHERNET;
1195 else if (strcasecmp(arg, "point-to-point") == 0)
1196 value = SSH_TUNMODE_POINTOPOINT;
1197 else if (strcasecmp(arg, "yes") == 0)
1198 value = SSH_TUNMODE_YES;
1199 else if (strcasecmp(arg, "no") == 0)
1200 value = SSH_TUNMODE_NO;
1201 else
1202 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1203 "no argument: %s", filename, linenum, arg);
1204 if (*intptr == -1)
1205 *intptr = value;
1206 break;
Damien Millerd27b9472005-12-13 19:29:02 +11001207
Darren Tucker45150472006-07-12 22:34:17 +10001208 case sMatch:
1209 if (cmdline)
1210 fatal("Match directive not supported as a command-line "
1211 "option");
1212 value = match_cfg_line(&cp, linenum, user, host, address);
1213 if (value < 0)
1214 fatal("%s line %d: Bad Match condition", filename,
1215 linenum);
1216 *activep = value;
1217 break;
1218
Damien Miller9b439df2006-07-24 14:04:00 +10001219 case sPermitOpen:
1220 arg = strdelim(&cp);
1221 if (!arg || *arg == '\0')
1222 fatal("%s line %d: missing PermitOpen specification",
1223 filename, linenum);
Damien Miller9fc6a562007-01-05 16:29:02 +11001224 n = options->num_permitted_opens; /* modified later */
Damien Miller9b439df2006-07-24 14:04:00 +10001225 if (strcmp(arg, "any") == 0) {
Damien Miller9fc6a562007-01-05 16:29:02 +11001226 if (*activep && n == -1) {
Damien Miller9b439df2006-07-24 14:04:00 +10001227 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001228 options->num_permitted_opens = 0;
1229 }
Damien Miller9b439df2006-07-24 14:04:00 +10001230 break;
1231 }
Damien Millera29b95e2007-01-05 16:28:36 +11001232 if (*activep && n == -1)
1233 channel_clear_adm_permitted_opens();
Damien Millera765cf42006-07-24 14:08:13 +10001234 for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1235 p = hpdelim(&arg);
1236 if (p == NULL)
1237 fatal("%s line %d: missing host in PermitOpen",
1238 filename, linenum);
1239 p = cleanhostname(p);
1240 if (arg == NULL || (port = a2port(arg)) == 0)
1241 fatal("%s line %d: bad port number in "
1242 "PermitOpen", filename, linenum);
Damien Millera29b95e2007-01-05 16:28:36 +11001243 if (*activep && n == -1)
Damien Millera765cf42006-07-24 14:08:13 +10001244 options->num_permitted_opens =
1245 channel_add_adm_permitted_opens(p, port);
Damien Millera765cf42006-07-24 14:08:13 +10001246 }
Damien Miller9b439df2006-07-24 14:04:00 +10001247 break;
1248
Damien Millere2754432006-07-24 14:06:47 +10001249 case sForceCommand:
1250 if (cp == NULL)
1251 fatal("%.200s line %d: Missing argument.", filename,
1252 linenum);
1253 len = strspn(cp, WHITESPACE);
1254 if (*activep && options->adm_forced_command == NULL)
1255 options->adm_forced_command = xstrdup(cp + len);
1256 return 0;
1257
Ben Lindstromade03f62001-12-06 18:22:17 +00001258 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +10001259 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +00001260 filename, linenum, arg);
1261 while (arg)
1262 arg = strdelim(&cp);
1263 break;
1264
Damien Millerf9b3feb2003-05-16 11:38:32 +10001265 case sUnsupported:
1266 logit("%s line %d: Unsupported option %s",
1267 filename, linenum, arg);
1268 while (arg)
1269 arg = strdelim(&cp);
1270 break;
1271
Ben Lindstromade03f62001-12-06 18:22:17 +00001272 default:
1273 fatal("%s line %d: Missing handler for opcode %s (%d)",
1274 filename, linenum, arg, opcode);
1275 }
1276 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1277 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1278 filename, linenum, arg);
1279 return 0;
1280}
1281
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001282/* Reads the server configuration file. */
1283
Damien Miller4af51302000-04-16 11:18:38 +10001284void
Darren Tucker645ab752004-06-25 13:33:20 +10001285load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286{
Darren Tucker645ab752004-06-25 13:33:20 +10001287 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001288 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Darren Tucker645ab752004-06-25 13:33:20 +10001290 debug2("%s: filename %s", __func__, filename);
1291 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001292 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001293 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001294 }
Darren Tucker645ab752004-06-25 13:33:20 +10001295 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001296 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001297 /*
1298 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001299 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001300 * line numbers later for error messages
1301 */
1302 if ((cp = strchr(line, '#')) != NULL)
1303 memcpy(cp, "\n", 2);
1304 cp = line + strspn(line, " \t\r");
1305
1306 buffer_append(conf, cp, strlen(cp));
1307 }
1308 buffer_append(conf, "\0", 1);
1309 fclose(f);
1310 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1311}
1312
1313void
Darren Tucker45150472006-07-12 22:34:17 +10001314parse_server_match_config(ServerOptions *options, const char *user,
1315 const char *host, const char *address)
Darren Tucker645ab752004-06-25 13:33:20 +10001316{
Darren Tucker45150472006-07-12 22:34:17 +10001317 ServerOptions mo;
1318
1319 initialize_server_options(&mo);
1320 parse_server_config(&mo, "reprocess config", &cfg, user, host, address);
Darren Tucker1629c072007-02-19 22:25:37 +11001321 copy_set_server_options(options, &mo, 0);
Darren Tucker45150472006-07-12 22:34:17 +10001322}
1323
Darren Tucker1629c072007-02-19 22:25:37 +11001324/* Helper macros */
1325#define M_CP_INTOPT(n) do {\
1326 if (src->n != -1) \
1327 dst->n = src->n; \
1328} while (0)
1329#define M_CP_STROPT(n) do {\
1330 if (src->n != NULL) { \
1331 if (dst->n != NULL) \
1332 xfree(dst->n); \
1333 dst->n = src->n; \
1334 } \
1335} while(0)
1336
1337/*
1338 * Copy any supported values that are set.
1339 *
1340 * If the preauth flag is set, we do not bother copying the the string or
1341 * array values that are not used pre-authentication, because any that we
1342 * do use must be explictly sent in mm_getpwnamallow().
1343 */
Darren Tucker45150472006-07-12 22:34:17 +10001344void
Darren Tucker1629c072007-02-19 22:25:37 +11001345copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
Darren Tucker45150472006-07-12 22:34:17 +10001346{
Darren Tucker1629c072007-02-19 22:25:37 +11001347 M_CP_INTOPT(password_authentication);
1348 M_CP_INTOPT(gss_authentication);
1349 M_CP_INTOPT(rsa_authentication);
1350 M_CP_INTOPT(pubkey_authentication);
1351 M_CP_INTOPT(kerberos_authentication);
1352 M_CP_INTOPT(hostbased_authentication);
1353 M_CP_INTOPT(kbd_interactive_authentication);
Darren Tucker1629c072007-02-19 22:25:37 +11001354
1355 M_CP_INTOPT(allow_tcp_forwarding);
1356 M_CP_INTOPT(gateway_ports);
1357 M_CP_INTOPT(x11_display_offset);
1358 M_CP_INTOPT(x11_forwarding);
1359 M_CP_INTOPT(x11_use_localhost);
1360
1361 M_CP_STROPT(banner);
1362 if (preauth)
1363 return;
1364 M_CP_STROPT(adm_forced_command);
Darren Tucker45150472006-07-12 22:34:17 +10001365}
1366
Darren Tucker1629c072007-02-19 22:25:37 +11001367#undef M_CP_INTOPT
1368#undef M_CP_STROPT
1369
Darren Tucker45150472006-07-12 22:34:17 +10001370void
1371parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1372 const char *user, const char *host, const char *address)
1373{
1374 int active, linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001375 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001376
1377 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1378
Darren Tucker9fbac712004-08-12 22:41:44 +10001379 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker45150472006-07-12 22:34:17 +10001380 active = user ? 0 : 1;
Darren Tucker137e9c92004-08-13 21:30:24 +10001381 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001382 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001383 if (process_server_config_line(options, cp, filename,
Darren Tucker45150472006-07-12 22:34:17 +10001384 linenum++, &active, user, host, address) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001385 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001387 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001388 if (bad_options > 0)
1389 fatal("%s: terminating, %d bad configuration options",
1390 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001391}