blob: a737f4b46b358723037c4137565747078e7ed725 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Millere4340be2000-09-16 13:29:08 +11005 * As far as I am concerned, the code I have written for this software
6 * can be used freely for any purpose. Any derived versions of this
7 * software must be clearly marked as such, and if the derived work is
8 * incompatible with the protocol description in the RFC file, it must be
9 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110010 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100011
12#include "includes.h"
Damien Millerf9b3feb2003-05-16 11:38:32 +100013RCSID("$OpenBSD: servconf.c,v 1.121 2003/05/15 14:02:47 jakob Exp $");
Ben Lindstrom226cfa02001-01-22 05:34:40 +000014
Damien Millerfd4c9ee2002-04-13 11:04:40 +100015#if defined(KRB4)
Ben Lindstrom226cfa02001-01-22 05:34:40 +000016#include <krb.h>
17#endif
Damien Millerd5580922003-05-14 13:40:06 +100018
Damien Millerfd4c9ee2002-04-13 11:04:40 +100019#if defined(KRB5)
Damien Millerd5580922003-05-14 13:40:06 +100020# ifdef HEIMDAL
21# include <krb.h>
22# else
23/*
24 * XXX: Bodge - but then, so is using the kerberos IV KEYFILE to get a
25 * Kerberos V keytab
26 */
27# define KEYFILE "/etc/krb5.keytab"
28# endif
Damien Millerfd4c9ee2002-04-13 11:04:40 +100029#endif
Damien Millerd5580922003-05-14 13:40:06 +100030
Ben Lindstromeb7a84c2001-07-04 04:48:36 +000031#ifdef AFS
32#include <kafs.h>
33#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
35#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#include "servconf.h"
38#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100039#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "pathnames.h"
41#include "tildexpand.h"
42#include "misc.h"
43#include "cipher.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000044#include "kex.h"
45#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000046
Ben Lindstrombba81212001-06-25 05:01:22 +000047static void add_listen_addr(ServerOptions *, char *, u_short);
48static void add_one_listen_addr(ServerOptions *, char *, u_short);
Damien Miller34132e52000-01-14 15:45:46 +110049
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050/* AF_UNSPEC or AF_INET or AF_INET6 */
51extern int IPv4or6;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000052/* Use of privilege separation or not */
53extern int use_privsep;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055/* Initializes the server options to their default values. */
56
Damien Miller4af51302000-04-16 11:18:38 +100057void
Damien Miller95def091999-11-25 00:26:21 +110058initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059{
Damien Miller95def091999-11-25 00:26:21 +110060 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110061
62 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100063 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110064
65 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110066 options->num_ports = 0;
67 options->ports_from_cmdline = 0;
68 options->listen_addrs = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +110069 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100070 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110071 options->server_key_bits = -1;
72 options->login_grace_time = -1;
73 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000074 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110075 options->ignore_rhosts = -1;
76 options->ignore_user_known_hosts = -1;
77 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000078 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110079 options->x11_forwarding = -1;
80 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110081 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100082 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110083 options->strict_modes = -1;
84 options->keepalives = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110085 options->log_facility = SYSLOG_FACILITY_NOT_SET;
86 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110087 options->rhosts_authentication = -1;
88 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000089 options->hostbased_authentication = -1;
90 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110091 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110092 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110093 options->kerberos_authentication = -1;
94 options->kerberos_or_local_passwd = -1;
95 options->kerberos_ticket_cleanup = -1;
Damien Miller95def091999-11-25 00:26:21 +110096 options->kerberos_tgt_passing = -1;
97 options->afs_token_passing = -1;
Damien Miller95def091999-11-25 00:26:21 +110098 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110099 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000100 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +1100101 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000102 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +1100103 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000104 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100105 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +1100106 options->num_allow_users = 0;
107 options->num_deny_users = 0;
108 options->num_allow_groups = 0;
109 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +1000110 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000111 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000112 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000113 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000114 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000115 options->max_startups_begin = -1;
116 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000117 options->max_startups = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000118 options->banner = NULL;
Damien Millerc5d86352002-02-05 12:13:41 +1100119 options->verify_reverse_mapping = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000120 options->client_alive_interval = -1;
121 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000122 options->authorized_keys_file = NULL;
123 options->authorized_keys_file2 = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000124
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000125 /* Needs to be accessable in many places */
126 use_privsep = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127}
128
Damien Miller4af51302000-04-16 11:18:38 +1000129void
Damien Miller95def091999-11-25 00:26:21 +1100130fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131{
Damien Miller726273e2001-11-12 11:40:11 +1100132 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000133 if (options->use_pam == -1)
Damien Miller156cbe82003-05-15 14:16:41 +1000134 options->use_pam = 1;
Damien Miller726273e2001-11-12 11:40:11 +1100135
136 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100137 if (options->protocol == SSH_PROTO_UNKNOWN)
138 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
139 if (options->num_host_key_files == 0) {
140 /* fill default hostkeys for protocols */
141 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100142 options->host_key_files[options->num_host_key_files++] =
143 _PATH_HOST_KEY_FILE;
144 if (options->protocol & SSH_PROTO_2) {
145 options->host_key_files[options->num_host_key_files++] =
146 _PATH_HOST_RSA_KEY_FILE;
147 options->host_key_files[options->num_host_key_files++] =
148 _PATH_HOST_DSA_KEY_FILE;
149 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100150 }
Damien Miller34132e52000-01-14 15:45:46 +1100151 if (options->num_ports == 0)
152 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
153 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000154 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000155 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000156 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100157 if (options->server_key_bits == -1)
158 options->server_key_bits = 768;
159 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000160 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100161 if (options->key_regeneration_time == -1)
162 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000163 if (options->permit_root_login == PERMIT_NOT_SET)
164 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100165 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100166 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100167 if (options->ignore_user_known_hosts == -1)
168 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100169 if (options->print_motd == -1)
170 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000171 if (options->print_lastlog == -1)
172 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100173 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100174 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100175 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100176 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100177 if (options->x11_use_localhost == -1)
178 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000179 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000180 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100181 if (options->strict_modes == -1)
182 options->strict_modes = 1;
183 if (options->keepalives == -1)
184 options->keepalives = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100185 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100186 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100187 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000188 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100189 if (options->rhosts_authentication == -1)
190 options->rhosts_authentication = 0;
191 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100192 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000193 if (options->hostbased_authentication == -1)
194 options->hostbased_authentication = 0;
195 if (options->hostbased_uses_name_from_packet_only == -1)
196 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100197 if (options->rsa_authentication == -1)
198 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100199 if (options->pubkey_authentication == -1)
200 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100201 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000202 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100203 if (options->kerberos_or_local_passwd == -1)
204 options->kerberos_or_local_passwd = 1;
205 if (options->kerberos_ticket_cleanup == -1)
206 options->kerberos_ticket_cleanup = 1;
Damien Miller95def091999-11-25 00:26:21 +1100207 if (options->kerberos_tgt_passing == -1)
208 options->kerberos_tgt_passing = 0;
209 if (options->afs_token_passing == -1)
Damien Millere4ccf102002-04-23 20:40:28 +1000210 options->afs_token_passing = 0;
Damien Miller95def091999-11-25 00:26:21 +1100211 if (options->password_authentication == -1)
212 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100213 if (options->kbd_interactive_authentication == -1)
214 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000215 if (options->challenge_response_authentication == -1)
216 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100217 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100218 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000219 if (options->permit_user_env == -1)
220 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100221 if (options->use_login == -1)
222 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000223 if (options->compression == -1)
224 options->compression = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100225 if (options->allow_tcp_forwarding == -1)
226 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000227 if (options->gateway_ports == -1)
228 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000229 if (options->max_startups == -1)
230 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000231 if (options->max_startups_rate == -1)
232 options->max_startups_rate = 100; /* 100% */
233 if (options->max_startups_begin == -1)
234 options->max_startups_begin = options->max_startups;
Damien Millerc5d86352002-02-05 12:13:41 +1100235 if (options->verify_reverse_mapping == -1)
236 options->verify_reverse_mapping = 0;
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;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000250
Ben Lindstromfb62a692002-06-06 19:47:11 +0000251 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000252 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000253 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000254
Tim Rice40017b02002-07-14 13:36:49 -0700255#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000256 if (use_privsep && options->compression == 1) {
257 error("This platform does not support both privilege "
258 "separation and compression");
259 error("Compression disabled");
260 options->compression = 0;
261 }
262#endif
263
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264}
265
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100267typedef enum {
268 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100269 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000270 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100271 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100272 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
273 sPermitRootLogin, sLogFacility, sLogLevel,
274 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100275 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Miller2aa0ab42003-05-15 12:05:28 +1000276 sKerberosTgtPassing, sAFSTokenPassing, sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100277 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000278 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100279 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000280 sStrictModes, sEmptyPasswd, sKeepAlives,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000281 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100282 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000283 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100284 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Damien Millerc5d86352002-02-05 12:13:41 +1100285 sBanner, sVerifyReverseMapping, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100286 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000287 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Ben Lindstromc7431342002-03-22 03:11:49 +0000288 sUsePrivilegeSeparation,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000289 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290} ServerOpCodes;
291
292/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100293static struct {
294 const char *name;
295 ServerOpCodes opcode;
296} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100297 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000298#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +1000299 { "UsePAM", sUsePAM },
Damien Miller6ac2c482003-05-16 11:42:35 +1000300#else
301 { "UsePAM", sUnsupported },
302#endif
Damien Miller726273e2001-11-12 11:40:11 +1100303 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100304 { "port", sPort },
305 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100306 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000307 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100308 { "serverkeybits", sServerKeyBits },
309 { "logingracetime", sLoginGraceTime },
310 { "keyregenerationinterval", sKeyRegenerationTime },
311 { "permitrootlogin", sPermitRootLogin },
312 { "syslogfacility", sLogFacility },
313 { "loglevel", sLogLevel },
314 { "rhostsauthentication", sRhostsAuthentication },
315 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000316 { "hostbasedauthentication", sHostbasedAuthentication },
317 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100318 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100319 { "pubkeyauthentication", sPubkeyAuthentication },
320 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Damien Millerf9b3feb2003-05-16 11:38:32 +1000321#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100322 { "kerberosauthentication", sKerberosAuthentication },
323 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
324 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Miller95def091999-11-25 00:26:21 +1100325 { "kerberostgtpassing", sKerberosTgtPassing },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000326#else
327 { "kerberosauthentication", sUnsupported },
328 { "kerberosorlocalpasswd", sUnsupported },
329 { "kerberosticketcleanup", sUnsupported },
330 { "kerberostgtpassing", sUnsupported },
331#endif
332#if defined(AFS)
Damien Miller95def091999-11-25 00:26:21 +1100333 { "afstokenpassing", sAFSTokenPassing },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000334#else
335 { "afstokenpassing", sUnsupported },
336#endif
Damien Miller95def091999-11-25 00:26:21 +1100337 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100338 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000339 { "challengeresponseauthentication", sChallengeResponseAuthentication },
340 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Ben Lindstrom91e98682001-09-12 16:32:14 +0000341 { "checkmail", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100342 { "listenaddress", sListenAddress },
343 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000344 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100345 { "ignorerhosts", sIgnoreRhosts },
346 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
347 { "x11forwarding", sX11Forwarding },
348 { "x11displayoffset", sX11DisplayOffset },
Damien Miller95c249f2002-02-05 12:11:34 +1100349 { "x11uselocalhost", sX11UseLocalhost },
Damien Millerd3a18572000-06-07 19:55:44 +1000350 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100351 { "strictmodes", sStrictModes },
352 { "permitemptypasswords", sEmptyPasswd },
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000353 { "permituserenvironment", sPermitUserEnvironment },
Damien Miller95def091999-11-25 00:26:21 +1100354 { "uselogin", sUseLogin },
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000355 { "compression", sCompression },
Damien Miller95def091999-11-25 00:26:21 +1100356 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100357 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100358 { "allowusers", sAllowUsers },
359 { "denyusers", sDenyUsers },
360 { "allowgroups", sAllowGroups },
361 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000362 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000363 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000364 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000365 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000366 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000367 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000368 { "banner", sBanner },
Damien Millerc5d86352002-02-05 12:13:41 +1100369 { "verifyreversemapping", sVerifyReverseMapping },
370 { "reversemappingcheck", sVerifyReverseMapping },
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000371 { "clientaliveinterval", sClientAliveInterval },
372 { "clientalivecountmax", sClientAliveCountMax },
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000373 { "authorizedkeysfile", sAuthorizedKeysFile },
374 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000375 { "useprivilegeseparation", sUsePrivilegeSeparation},
Ben Lindstrom65366a82001-12-06 16:32:47 +0000376 { NULL, sBadOption }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377};
378
Damien Miller5428f641999-11-25 11:54:57 +1100379/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000380 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100381 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Damien Miller4af51302000-04-16 11:18:38 +1000383static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100384parse_token(const char *cp, const char *filename,
385 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000387 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388
Damien Miller95def091999-11-25 00:26:21 +1100389 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100390 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100391 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000393 error("%s: line %d: Bad configuration option: %s",
394 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100395 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396}
397
Ben Lindstrombba81212001-06-25 05:01:22 +0000398static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000399add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100400{
Damien Miller34132e52000-01-14 15:45:46 +1100401 int i;
402
403 if (options->num_ports == 0)
404 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000405 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000406 for (i = 0; i < options->num_ports; i++)
407 add_one_listen_addr(options, addr, options->ports[i]);
408 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000409 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000410}
411
Ben Lindstrombba81212001-06-25 05:01:22 +0000412static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000413add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
414{
415 struct addrinfo hints, *ai, *aitop;
416 char strport[NI_MAXSERV];
417 int gaierr;
418
419 memset(&hints, 0, sizeof(hints));
420 hints.ai_family = IPv4or6;
421 hints.ai_socktype = SOCK_STREAM;
422 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000423 snprintf(strport, sizeof strport, "%u", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000424 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
425 fatal("bad addr or host: %s (%s)",
426 addr ? addr : "<NULL>",
427 gai_strerror(gaierr));
428 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
429 ;
430 ai->ai_next = options->listen_addrs;
431 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100432}
433
Ben Lindstromade03f62001-12-06 18:22:17 +0000434int
435process_server_config_line(ServerOptions *options, char *line,
436 const char *filename, int linenum)
437{
438 char *cp, **charptr, *arg, *p;
Ben Lindstrome1353632002-06-23 21:29:23 +0000439 int *intptr, value, i, n;
Ben Lindstromade03f62001-12-06 18:22:17 +0000440 ServerOpCodes opcode;
Ben Lindstromade03f62001-12-06 18:22:17 +0000441
442 cp = line;
443 arg = strdelim(&cp);
444 /* Ignore leading whitespace */
445 if (*arg == '\0')
446 arg = strdelim(&cp);
447 if (!arg || !*arg || *arg == '#')
448 return 0;
449 intptr = NULL;
450 charptr = NULL;
451 opcode = parse_token(arg, filename, linenum);
452 switch (opcode) {
453 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000454 case sUsePAM:
455 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000456 goto parse_flag;
457
458 /* Standard Options */
459 case sBadOption:
460 return -1;
461 case sPort:
462 /* ignore ports from configfile if cmdline specifies ports */
463 if (options->ports_from_cmdline)
464 return 0;
465 if (options->listen_addrs != NULL)
466 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100467 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000468 if (options->num_ports >= MAX_PORTS)
469 fatal("%s line %d: too many ports.",
470 filename, linenum);
471 arg = strdelim(&cp);
472 if (!arg || *arg == '\0')
473 fatal("%s line %d: missing port number.",
474 filename, linenum);
475 options->ports[options->num_ports++] = a2port(arg);
476 if (options->ports[options->num_ports-1] == 0)
477 fatal("%s line %d: Badly formatted port number.",
478 filename, linenum);
479 break;
480
481 case sServerKeyBits:
482 intptr = &options->server_key_bits;
483parse_int:
484 arg = strdelim(&cp);
485 if (!arg || *arg == '\0')
486 fatal("%s line %d: missing integer value.",
487 filename, linenum);
488 value = atoi(arg);
489 if (*intptr == -1)
490 *intptr = value;
491 break;
492
493 case sLoginGraceTime:
494 intptr = &options->login_grace_time;
495parse_time:
496 arg = strdelim(&cp);
497 if (!arg || *arg == '\0')
498 fatal("%s line %d: missing time value.",
499 filename, linenum);
500 if ((value = convtime(arg)) == -1)
501 fatal("%s line %d: invalid time value.",
502 filename, linenum);
503 if (*intptr == -1)
504 *intptr = value;
505 break;
506
507 case sKeyRegenerationTime:
508 intptr = &options->key_regeneration_time;
509 goto parse_time;
510
511 case sListenAddress:
512 arg = strdelim(&cp);
513 if (!arg || *arg == '\0' || strncmp(arg, "[]", 2) == 0)
514 fatal("%s line %d: missing inet addr.",
515 filename, linenum);
516 if (*arg == '[') {
517 if ((p = strchr(arg, ']')) == NULL)
518 fatal("%s line %d: bad ipv6 inet addr usage.",
519 filename, linenum);
520 arg++;
521 memmove(p, p+1, strlen(p+1)+1);
522 } else if (((p = strchr(arg, ':')) == NULL) ||
523 (strchr(p+1, ':') != NULL)) {
524 add_listen_addr(options, arg, 0);
525 break;
526 }
527 if (*p == ':') {
528 u_short port;
529
530 p++;
531 if (*p == '\0')
532 fatal("%s line %d: bad inet addr:port usage.",
533 filename, linenum);
534 else {
535 *(p-1) = '\0';
536 if ((port = a2port(p)) == 0)
537 fatal("%s line %d: bad port number.",
538 filename, linenum);
539 add_listen_addr(options, arg, port);
540 }
541 } else if (*p == '\0')
542 add_listen_addr(options, arg, 0);
543 else
544 fatal("%s line %d: bad inet addr usage.",
545 filename, linenum);
546 break;
547
548 case sHostKeyFile:
549 intptr = &options->num_host_key_files;
550 if (*intptr >= MAX_HOSTKEYS)
551 fatal("%s line %d: too many host keys specified (max %d).",
552 filename, linenum, MAX_HOSTKEYS);
553 charptr = &options->host_key_files[*intptr];
554parse_filename:
555 arg = strdelim(&cp);
556 if (!arg || *arg == '\0')
557 fatal("%s line %d: missing file name.",
558 filename, linenum);
559 if (*charptr == NULL) {
560 *charptr = tilde_expand_filename(arg, getuid());
561 /* increase optional counter */
562 if (intptr != NULL)
563 *intptr = *intptr + 1;
564 }
565 break;
566
567 case sPidFile:
568 charptr = &options->pid_file;
569 goto parse_filename;
570
571 case sPermitRootLogin:
572 intptr = &options->permit_root_login;
573 arg = strdelim(&cp);
574 if (!arg || *arg == '\0')
575 fatal("%s line %d: missing yes/"
576 "without-password/forced-commands-only/no "
577 "argument.", filename, linenum);
578 value = 0; /* silence compiler */
579 if (strcmp(arg, "without-password") == 0)
580 value = PERMIT_NO_PASSWD;
581 else if (strcmp(arg, "forced-commands-only") == 0)
582 value = PERMIT_FORCED_ONLY;
583 else if (strcmp(arg, "yes") == 0)
584 value = PERMIT_YES;
585 else if (strcmp(arg, "no") == 0)
586 value = PERMIT_NO;
587 else
588 fatal("%s line %d: Bad yes/"
589 "without-password/forced-commands-only/no "
590 "argument: %s", filename, linenum, arg);
591 if (*intptr == -1)
592 *intptr = value;
593 break;
594
595 case sIgnoreRhosts:
596 intptr = &options->ignore_rhosts;
597parse_flag:
598 arg = strdelim(&cp);
599 if (!arg || *arg == '\0')
600 fatal("%s line %d: missing yes/no argument.",
601 filename, linenum);
602 value = 0; /* silence compiler */
603 if (strcmp(arg, "yes") == 0)
604 value = 1;
605 else if (strcmp(arg, "no") == 0)
606 value = 0;
607 else
608 fatal("%s line %d: Bad yes/no argument: %s",
609 filename, linenum, arg);
610 if (*intptr == -1)
611 *intptr = value;
612 break;
613
614 case sIgnoreUserKnownHosts:
615 intptr = &options->ignore_user_known_hosts;
616 goto parse_flag;
617
618 case sRhostsAuthentication:
619 intptr = &options->rhosts_authentication;
620 goto parse_flag;
621
622 case sRhostsRSAAuthentication:
623 intptr = &options->rhosts_rsa_authentication;
624 goto parse_flag;
625
626 case sHostbasedAuthentication:
627 intptr = &options->hostbased_authentication;
628 goto parse_flag;
629
630 case sHostbasedUsesNameFromPacketOnly:
631 intptr = &options->hostbased_uses_name_from_packet_only;
632 goto parse_flag;
633
634 case sRSAAuthentication:
635 intptr = &options->rsa_authentication;
636 goto parse_flag;
637
638 case sPubkeyAuthentication:
639 intptr = &options->pubkey_authentication;
640 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000641
Ben Lindstromade03f62001-12-06 18:22:17 +0000642 case sKerberosAuthentication:
643 intptr = &options->kerberos_authentication;
644 goto parse_flag;
645
646 case sKerberosOrLocalPasswd:
647 intptr = &options->kerberos_or_local_passwd;
648 goto parse_flag;
649
650 case sKerberosTicketCleanup:
651 intptr = &options->kerberos_ticket_cleanup;
652 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000653
Ben Lindstromade03f62001-12-06 18:22:17 +0000654 case sKerberosTgtPassing:
655 intptr = &options->kerberos_tgt_passing;
656 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000657
Ben Lindstromade03f62001-12-06 18:22:17 +0000658 case sAFSTokenPassing:
659 intptr = &options->afs_token_passing;
660 goto parse_flag;
Ben Lindstromade03f62001-12-06 18:22:17 +0000661
662 case sPasswordAuthentication:
663 intptr = &options->password_authentication;
664 goto parse_flag;
665
666 case sKbdInteractiveAuthentication:
667 intptr = &options->kbd_interactive_authentication;
668 goto parse_flag;
669
670 case sChallengeResponseAuthentication:
671 intptr = &options->challenge_response_authentication;
672 goto parse_flag;
673
674 case sPrintMotd:
675 intptr = &options->print_motd;
676 goto parse_flag;
677
678 case sPrintLastLog:
679 intptr = &options->print_lastlog;
680 goto parse_flag;
681
682 case sX11Forwarding:
683 intptr = &options->x11_forwarding;
684 goto parse_flag;
685
686 case sX11DisplayOffset:
687 intptr = &options->x11_display_offset;
688 goto parse_int;
689
Damien Miller95c249f2002-02-05 12:11:34 +1100690 case sX11UseLocalhost:
691 intptr = &options->x11_use_localhost;
692 goto parse_flag;
693
Ben Lindstromade03f62001-12-06 18:22:17 +0000694 case sXAuthLocation:
695 charptr = &options->xauth_location;
696 goto parse_filename;
697
698 case sStrictModes:
699 intptr = &options->strict_modes;
700 goto parse_flag;
701
702 case sKeepAlives:
703 intptr = &options->keepalives;
704 goto parse_flag;
705
706 case sEmptyPasswd:
707 intptr = &options->permit_empty_passwd;
708 goto parse_flag;
709
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000710 case sPermitUserEnvironment:
711 intptr = &options->permit_user_env;
712 goto parse_flag;
713
Ben Lindstromade03f62001-12-06 18:22:17 +0000714 case sUseLogin:
715 intptr = &options->use_login;
716 goto parse_flag;
717
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000718 case sCompression:
719 intptr = &options->compression;
720 goto parse_flag;
721
Ben Lindstromade03f62001-12-06 18:22:17 +0000722 case sGatewayPorts:
723 intptr = &options->gateway_ports;
724 goto parse_flag;
725
Damien Millerc5d86352002-02-05 12:13:41 +1100726 case sVerifyReverseMapping:
727 intptr = &options->verify_reverse_mapping;
Ben Lindstromade03f62001-12-06 18:22:17 +0000728 goto parse_flag;
729
730 case sLogFacility:
731 intptr = (int *) &options->log_facility;
732 arg = strdelim(&cp);
733 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100734 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000735 fatal("%.200s line %d: unsupported log facility '%s'",
736 filename, linenum, arg ? arg : "<NONE>");
737 if (*intptr == -1)
738 *intptr = (SyslogFacility) value;
739 break;
740
741 case sLogLevel:
742 intptr = (int *) &options->log_level;
743 arg = strdelim(&cp);
744 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100745 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000746 fatal("%.200s line %d: unsupported log level '%s'",
747 filename, linenum, arg ? arg : "<NONE>");
748 if (*intptr == -1)
749 *intptr = (LogLevel) value;
750 break;
751
752 case sAllowTcpForwarding:
753 intptr = &options->allow_tcp_forwarding;
754 goto parse_flag;
755
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000756 case sUsePrivilegeSeparation:
757 intptr = &use_privsep;
758 goto parse_flag;
759
Ben Lindstromade03f62001-12-06 18:22:17 +0000760 case sAllowUsers:
761 while ((arg = strdelim(&cp)) && *arg != '\0') {
762 if (options->num_allow_users >= MAX_ALLOW_USERS)
763 fatal("%s line %d: too many allow users.",
764 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000765 options->allow_users[options->num_allow_users++] =
766 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000767 }
768 break;
769
770 case sDenyUsers:
771 while ((arg = strdelim(&cp)) && *arg != '\0') {
772 if (options->num_deny_users >= MAX_DENY_USERS)
773 fatal( "%s line %d: too many deny users.",
774 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000775 options->deny_users[options->num_deny_users++] =
776 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000777 }
778 break;
779
780 case sAllowGroups:
781 while ((arg = strdelim(&cp)) && *arg != '\0') {
782 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
783 fatal("%s line %d: too many allow groups.",
784 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000785 options->allow_groups[options->num_allow_groups++] =
786 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000787 }
788 break;
789
790 case sDenyGroups:
791 while ((arg = strdelim(&cp)) && *arg != '\0') {
792 if (options->num_deny_groups >= MAX_DENY_GROUPS)
793 fatal("%s line %d: too many deny groups.",
794 filename, linenum);
795 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
796 }
797 break;
798
799 case sCiphers:
800 arg = strdelim(&cp);
801 if (!arg || *arg == '\0')
802 fatal("%s line %d: Missing argument.", filename, linenum);
803 if (!ciphers_valid(arg))
804 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
805 filename, linenum, arg ? arg : "<NONE>");
806 if (options->ciphers == NULL)
807 options->ciphers = xstrdup(arg);
808 break;
809
810 case sMacs:
811 arg = strdelim(&cp);
812 if (!arg || *arg == '\0')
813 fatal("%s line %d: Missing argument.", filename, linenum);
814 if (!mac_valid(arg))
815 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
816 filename, linenum, arg ? arg : "<NONE>");
817 if (options->macs == NULL)
818 options->macs = xstrdup(arg);
819 break;
820
821 case sProtocol:
822 intptr = &options->protocol;
823 arg = strdelim(&cp);
824 if (!arg || *arg == '\0')
825 fatal("%s line %d: Missing argument.", filename, linenum);
826 value = proto_spec(arg);
827 if (value == SSH_PROTO_UNKNOWN)
828 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100829 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +0000830 if (*intptr == SSH_PROTO_UNKNOWN)
831 *intptr = value;
832 break;
833
834 case sSubsystem:
835 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
836 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100837 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000838 }
839 arg = strdelim(&cp);
840 if (!arg || *arg == '\0')
841 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100842 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000843 for (i = 0; i < options->num_subsystems; i++)
844 if (strcmp(arg, options->subsystem_name[i]) == 0)
845 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100846 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000847 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
848 arg = strdelim(&cp);
849 if (!arg || *arg == '\0')
850 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100851 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000852 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
853 options->num_subsystems++;
854 break;
855
856 case sMaxStartups:
857 arg = strdelim(&cp);
858 if (!arg || *arg == '\0')
859 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100860 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000861 if ((n = sscanf(arg, "%d:%d:%d",
862 &options->max_startups_begin,
863 &options->max_startups_rate,
864 &options->max_startups)) == 3) {
865 if (options->max_startups_begin >
866 options->max_startups ||
867 options->max_startups_rate > 100 ||
868 options->max_startups_rate < 1)
869 fatal("%s line %d: Illegal MaxStartups spec.",
870 filename, linenum);
871 } else if (n != 1)
872 fatal("%s line %d: Illegal MaxStartups spec.",
873 filename, linenum);
874 else
875 options->max_startups = options->max_startups_begin;
876 break;
877
878 case sBanner:
879 charptr = &options->banner;
880 goto parse_filename;
881 /*
882 * These options can contain %X options expanded at
883 * connect time, so that you can specify paths like:
884 *
885 * AuthorizedKeysFile /etc/ssh_keys/%u
886 */
887 case sAuthorizedKeysFile:
888 case sAuthorizedKeysFile2:
889 charptr = (opcode == sAuthorizedKeysFile ) ?
890 &options->authorized_keys_file :
891 &options->authorized_keys_file2;
892 goto parse_filename;
893
894 case sClientAliveInterval:
895 intptr = &options->client_alive_interval;
896 goto parse_time;
897
898 case sClientAliveCountMax:
899 intptr = &options->client_alive_count_max;
900 goto parse_int;
901
902 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +1000903 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +0000904 filename, linenum, arg);
905 while (arg)
906 arg = strdelim(&cp);
907 break;
908
Damien Millerf9b3feb2003-05-16 11:38:32 +1000909 case sUnsupported:
910 logit("%s line %d: Unsupported option %s",
911 filename, linenum, arg);
912 while (arg)
913 arg = strdelim(&cp);
914 break;
915
Ben Lindstromade03f62001-12-06 18:22:17 +0000916 default:
917 fatal("%s line %d: Missing handler for opcode %s (%d)",
918 filename, linenum, arg, opcode);
919 }
920 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
921 fatal("%s line %d: garbage at end of line; \"%.200s\".",
922 filename, linenum, arg);
923 return 0;
924}
925
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926/* Reads the server configuration file. */
927
Damien Miller4af51302000-04-16 11:18:38 +1000928void
Damien Miller95def091999-11-25 00:26:21 +1100929read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930{
Ben Lindstrome1353632002-06-23 21:29:23 +0000931 int linenum, bad_options = 0;
Damien Miller95def091999-11-25 00:26:21 +1100932 char line[1024];
Ben Lindstrome1353632002-06-23 21:29:23 +0000933 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller9f82c8f2003-02-24 12:04:33 +1100935 debug2("read_server_config: filename %s", filename);
Damien Miller95def091999-11-25 00:26:21 +1100936 f = fopen(filename, "r");
937 if (!f) {
938 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000939 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100940 }
941 linenum = 0;
942 while (fgets(line, sizeof(line), f)) {
Ben Lindstromade03f62001-12-06 18:22:17 +0000943 /* Update line number counter. */
Damien Miller95def091999-11-25 00:26:21 +1100944 linenum++;
Ben Lindstromade03f62001-12-06 18:22:17 +0000945 if (process_server_config_line(options, line, filename, linenum) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100946 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947 }
Damien Miller95def091999-11-25 00:26:21 +1100948 fclose(f);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000949 if (bad_options > 0)
950 fatal("%s: terminating, %d bad configuration options",
951 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952}