blob: 2ae93d4c3d290ca74e38aa72992b8c88bb3c5949 [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 Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000015#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016#include "servconf.h"
17#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100018#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000019#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "misc.h"
21#include "cipher.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000022#include "kex.h"
23#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024
Ben Lindstrombba81212001-06-25 05:01:22 +000025static void add_listen_addr(ServerOptions *, char *, u_short);
26static void add_one_listen_addr(ServerOptions *, char *, u_short);
Damien Miller34132e52000-01-14 15:45:46 +110027
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000028/* Use of privilege separation or not */
29extern int use_privsep;
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031/* Initializes the server options to their default values. */
32
Damien Miller4af51302000-04-16 11:18:38 +100033void
Damien Miller95def091999-11-25 00:26:21 +110034initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035{
Damien Miller95def091999-11-25 00:26:21 +110036 memset(options, 0, sizeof(*options));
Damien Miller726273e2001-11-12 11:40:11 +110037
38 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +100039 options->use_pam = -1;
Damien Miller726273e2001-11-12 11:40:11 +110040
41 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110042 options->num_ports = 0;
43 options->ports_from_cmdline = 0;
44 options->listen_addrs = NULL;
Darren Tucker0f383232005-01-20 10:57:56 +110045 options->address_family = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110046 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100047 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110048 options->server_key_bits = -1;
49 options->login_grace_time = -1;
50 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000051 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110052 options->ignore_rhosts = -1;
53 options->ignore_user_known_hosts = -1;
54 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000055 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110056 options->x11_forwarding = -1;
57 options->x11_display_offset = -1;
Damien Miller95c249f2002-02-05 12:11:34 +110058 options->x11_use_localhost = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100059 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110060 options->strict_modes = -1;
Damien Miller12c150e2003-12-17 16:31:10 +110061 options->tcp_keep_alive = -1;
Damien Millerfcd93202002-02-05 12:26:34 +110062 options->log_facility = SYSLOG_FACILITY_NOT_SET;
63 options->log_level = SYSLOG_LEVEL_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110064 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000065 options->hostbased_authentication = -1;
66 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110067 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110068 options->pubkey_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110069 options->kerberos_authentication = -1;
70 options->kerberos_or_local_passwd = -1;
71 options->kerberos_ticket_cleanup = -1;
Darren Tucker22ef5082003-12-31 11:37:34 +110072 options->kerberos_get_afs_token = -1;
Darren Tucker0efd1552003-08-26 11:49:55 +100073 options->gss_authentication=-1;
74 options->gss_cleanup_creds = -1;
Damien Miller95def091999-11-25 00:26:21 +110075 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110076 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +000077 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110078 options->permit_empty_passwd = -1;
Ben Lindstrom5d860f02002-08-01 01:28:38 +000079 options->permit_user_env = -1;
Damien Miller95def091999-11-25 00:26:21 +110080 options->use_login = -1;
Ben Lindstrom23e0f662002-06-21 01:09:47 +000081 options->compression = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110082 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110083 options->num_allow_users = 0;
84 options->num_deny_users = 0;
85 options->num_allow_groups = 0;
86 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100087 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000088 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +100089 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100090 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +100091 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100092 options->max_startups_begin = -1;
93 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +100094 options->max_startups = -1;
Darren Tucker89413db2004-05-24 10:36:23 +100095 options->max_authtries = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +000096 options->banner = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +100097 options->use_dns = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +000098 options->client_alive_interval = -1;
99 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000100 options->authorized_keys_file = NULL;
101 options->authorized_keys_file2 = NULL;
Darren Tucker46bc0752004-05-02 22:11:30 +1000102 options->num_accept_env = 0;
Damien Millerd27b9472005-12-13 19:29:02 +1100103 options->permit_tun = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000104
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000105 /* Needs to be accessable in many places */
106 use_privsep = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107}
108
Damien Miller4af51302000-04-16 11:18:38 +1000109void
Damien Miller95def091999-11-25 00:26:21 +1100110fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111{
Damien Miller726273e2001-11-12 11:40:11 +1100112 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000113 if (options->use_pam == -1)
Damien Miller5c3a5582003-09-23 22:12:38 +1000114 options->use_pam = 0;
Damien Miller726273e2001-11-12 11:40:11 +1100115
116 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100117 if (options->protocol == SSH_PROTO_UNKNOWN)
118 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
119 if (options->num_host_key_files == 0) {
120 /* fill default hostkeys for protocols */
121 if (options->protocol & SSH_PROTO_1)
Damien Miller7fc23732002-01-22 23:19:11 +1100122 options->host_key_files[options->num_host_key_files++] =
123 _PATH_HOST_KEY_FILE;
124 if (options->protocol & SSH_PROTO_2) {
125 options->host_key_files[options->num_host_key_files++] =
126 _PATH_HOST_RSA_KEY_FILE;
127 options->host_key_files[options->num_host_key_files++] =
128 _PATH_HOST_DSA_KEY_FILE;
129 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 }
Damien Miller34132e52000-01-14 15:45:46 +1100131 if (options->num_ports == 0)
132 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
133 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000134 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000135 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100137 if (options->server_key_bits == -1)
138 options->server_key_bits = 768;
139 if (options->login_grace_time == -1)
Damien Millerc1348632002-09-05 14:35:14 +1000140 options->login_grace_time = 120;
Damien Miller95def091999-11-25 00:26:21 +1100141 if (options->key_regeneration_time == -1)
142 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000143 if (options->permit_root_login == PERMIT_NOT_SET)
144 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100145 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100146 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100147 if (options->ignore_user_known_hosts == -1)
148 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100149 if (options->print_motd == -1)
150 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000151 if (options->print_lastlog == -1)
152 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100153 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100154 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100156 options->x11_display_offset = 10;
Damien Miller95c249f2002-02-05 12:11:34 +1100157 if (options->x11_use_localhost == -1)
158 options->x11_use_localhost = 1;
Damien Millerd3a18572000-06-07 19:55:44 +1000159 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000160 options->xauth_location = _PATH_XAUTH;
Damien Miller95def091999-11-25 00:26:21 +1100161 if (options->strict_modes == -1)
162 options->strict_modes = 1;
Damien Miller12c150e2003-12-17 16:31:10 +1100163 if (options->tcp_keep_alive == -1)
164 options->tcp_keep_alive = 1;
Damien Millerfcd93202002-02-05 12:26:34 +1100165 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
Damien Miller95def091999-11-25 00:26:21 +1100166 options->log_facility = SYSLOG_FACILITY_AUTH;
Damien Millerfcd93202002-02-05 12:26:34 +1100167 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000168 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100169 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100170 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000171 if (options->hostbased_authentication == -1)
172 options->hostbased_authentication = 0;
173 if (options->hostbased_uses_name_from_packet_only == -1)
174 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100175 if (options->rsa_authentication == -1)
176 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100177 if (options->pubkey_authentication == -1)
178 options->pubkey_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100179 if (options->kerberos_authentication == -1)
Damien Millerd7de14b2002-04-23 21:04:51 +1000180 options->kerberos_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100181 if (options->kerberos_or_local_passwd == -1)
182 options->kerberos_or_local_passwd = 1;
183 if (options->kerberos_ticket_cleanup == -1)
184 options->kerberos_ticket_cleanup = 1;
Darren Tucker22ef5082003-12-31 11:37:34 +1100185 if (options->kerberos_get_afs_token == -1)
186 options->kerberos_get_afs_token = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000187 if (options->gss_authentication == -1)
188 options->gss_authentication = 0;
189 if (options->gss_cleanup_creds == -1)
190 options->gss_cleanup_creds = 1;
Damien Miller95def091999-11-25 00:26:21 +1100191 if (options->password_authentication == -1)
192 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100193 if (options->kbd_interactive_authentication == -1)
194 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000195 if (options->challenge_response_authentication == -1)
196 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100197 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100198 options->permit_empty_passwd = 0;
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000199 if (options->permit_user_env == -1)
200 options->permit_user_env = 0;
Damien Miller95def091999-11-25 00:26:21 +1100201 if (options->use_login == -1)
202 options->use_login = 0;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000203 if (options->compression == -1)
Damien Miller9786e6e2005-07-26 21:54:56 +1000204 options->compression = COMP_DELAYED;
Damien Miller50a41ed2000-10-16 12:14:42 +1100205 if (options->allow_tcp_forwarding == -1)
206 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000207 if (options->gateway_ports == -1)
208 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000209 if (options->max_startups == -1)
210 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000211 if (options->max_startups_rate == -1)
212 options->max_startups_rate = 100; /* 100% */
213 if (options->max_startups_begin == -1)
214 options->max_startups_begin = options->max_startups;
Darren Tucker89413db2004-05-24 10:36:23 +1000215 if (options->max_authtries == -1)
216 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
Damien Miller3a961dc2003-06-03 10:25:48 +1000217 if (options->use_dns == -1)
218 options->use_dns = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000219 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100220 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000221 if (options->client_alive_count_max == -1)
222 options->client_alive_count_max = 3;
Damien Miller75413ac2001-11-12 11:14:35 +1100223 if (options->authorized_keys_file2 == NULL) {
224 /* authorized_keys_file2 falls back to authorized_keys_file */
225 if (options->authorized_keys_file != NULL)
226 options->authorized_keys_file2 = options->authorized_keys_file;
227 else
228 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
229 }
230 if (options->authorized_keys_file == NULL)
231 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerd27b9472005-12-13 19:29:02 +1100232 if (options->permit_tun == -1)
Damien Miller7b58e802005-12-13 19:33:19 +1100233 options->permit_tun = SSH_TUNMODE_NO;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000234
Ben Lindstromfb62a692002-06-06 19:47:11 +0000235 /* Turn privilege separation on by default */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000236 if (use_privsep == -1)
Ben Lindstromfb62a692002-06-06 19:47:11 +0000237 use_privsep = 1;
Damien Miller4903eb42002-06-21 16:20:44 +1000238
Tim Rice40017b02002-07-14 13:36:49 -0700239#ifndef HAVE_MMAP
Damien Miller4903eb42002-06-21 16:20:44 +1000240 if (use_privsep && options->compression == 1) {
241 error("This platform does not support both privilege "
242 "separation and compression");
243 error("Compression disabled");
244 options->compression = 0;
245 }
246#endif
247
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248}
249
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100251typedef enum {
252 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100253 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000254 sUsePAM,
Damien Miller726273e2001-11-12 11:40:11 +1100255 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100256 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
257 sPermitRootLogin, sLogFacility, sLogLevel,
Darren Tuckerec960f22003-08-13 20:37:05 +1000258 sRhostsRSAAuthentication, sRSAAuthentication,
Damien Miller95def091999-11-25 00:26:21 +1100259 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Darren Tucker22ef5082003-12-31 11:37:34 +1100260 sKerberosGetAFSToken,
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000261 sKerberosTgtPassing, sChallengeResponseAuthentication,
Darren Tucker0f383232005-01-20 10:57:56 +1100262 sPasswordAuthentication, sKbdInteractiveAuthentication,
263 sListenAddress, sAddressFamily,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000264 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
Damien Miller95c249f2002-02-05 12:11:34 +1100265 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
Damien Miller12c150e2003-12-17 16:31:10 +1100266 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000267 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
Damien Miller50a41ed2000-10-16 12:14:42 +1100268 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000269 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Darren Tucker89413db2004-05-24 10:36:23 +1000270 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
271 sMaxStartups, sMaxAuthTries,
Damien Miller3a961dc2003-06-03 10:25:48 +1000272 sBanner, sUseDNS, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100273 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000274 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Damien Millerd27b9472005-12-13 19:29:02 +1100275 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
Ben Lindstromc7431342002-03-22 03:11:49 +0000276 sUsePrivilegeSeparation,
Damien Millerf9b3feb2003-05-16 11:38:32 +1000277 sDeprecated, sUnsupported
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278} ServerOpCodes;
279
280/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100281static struct {
282 const char *name;
283 ServerOpCodes opcode;
284} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100285 /* Portable-specific options */
Damien Miller6ac2c482003-05-16 11:42:35 +1000286#ifdef USE_PAM
Damien Miller30912f72003-08-26 10:48:14 +1000287 { "usepam", sUsePAM },
Damien Miller6ac2c482003-05-16 11:42:35 +1000288#else
Damien Miller30912f72003-08-26 10:48:14 +1000289 { "usepam", sUnsupported },
Damien Miller6ac2c482003-05-16 11:42:35 +1000290#endif
Damien Miller30912f72003-08-26 10:48:14 +1000291 { "pamauthenticationviakbdint", sDeprecated },
Damien Miller726273e2001-11-12 11:40:11 +1100292 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100293 { "port", sPort },
294 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100295 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000296 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100297 { "serverkeybits", sServerKeyBits },
298 { "logingracetime", sLoginGraceTime },
299 { "keyregenerationinterval", sKeyRegenerationTime },
300 { "permitrootlogin", sPermitRootLogin },
301 { "syslogfacility", sLogFacility },
302 { "loglevel", sLogLevel },
Darren Tuckerec960f22003-08-13 20:37:05 +1000303 { "rhostsauthentication", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100304 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000305 { "hostbasedauthentication", sHostbasedAuthentication },
306 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100307 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100308 { "pubkeyauthentication", sPubkeyAuthentication },
309 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Darren Tucker6aaa58c2003-08-02 22:24:49 +1000310#ifdef KRB5
Damien Miller95def091999-11-25 00:26:21 +1100311 { "kerberosauthentication", sKerberosAuthentication },
312 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
313 { "kerberosticketcleanup", sKerberosTicketCleanup },
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100314#ifdef USE_AFS
Darren Tucker22ef5082003-12-31 11:37:34 +1100315 { "kerberosgetafstoken", sKerberosGetAFSToken },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000316#else
Darren Tucker409cb322004-01-05 22:36:51 +1100317 { "kerberosgetafstoken", sUnsupported },
318#endif
319#else
Damien Millerf9b3feb2003-05-16 11:38:32 +1000320 { "kerberosauthentication", sUnsupported },
321 { "kerberosorlocalpasswd", sUnsupported },
322 { "kerberosticketcleanup", sUnsupported },
Darren Tucker22ef5082003-12-31 11:37:34 +1100323 { "kerberosgetafstoken", sUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000324#endif
Damien Miller1a0c0b92003-09-02 22:51:17 +1000325 { "kerberostgtpassing", sUnsupported },
Damien Millerf9b3feb2003-05-16 11:38:32 +1000326 { "afstokenpassing", sUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000327#ifdef GSSAPI
328 { "gssapiauthentication", sGssAuthentication },
Darren Tuckera49d36e2003-10-02 16:20:54 +1000329 { "gssapicleanupcredentials", sGssCleanupCreds },
Darren Tucker0efd1552003-08-26 11:49:55 +1000330#else
331 { "gssapiauthentication", sUnsupported },
Darren Tuckera49d36e2003-10-02 16:20:54 +1000332 { "gssapicleanupcredentials", sUnsupported },
Darren Tucker0efd1552003-08-26 11:49:55 +1000333#endif
Damien Miller95def091999-11-25 00:26:21 +1100334 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100335 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000336 { "challengeresponseauthentication", sChallengeResponseAuthentication },
337 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Ben Lindstrom91e98682001-09-12 16:32:14 +0000338 { "checkmail", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100339 { "listenaddress", sListenAddress },
Darren Tucker0f383232005-01-20 10:57:56 +1100340 { "addressfamily", sAddressFamily },
Damien Miller95def091999-11-25 00:26:21 +1100341 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000342 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100343 { "ignorerhosts", sIgnoreRhosts },
344 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
345 { "x11forwarding", sX11Forwarding },
346 { "x11displayoffset", sX11DisplayOffset },
Damien Miller95c249f2002-02-05 12:11:34 +1100347 { "x11uselocalhost", sX11UseLocalhost },
Damien Millerd3a18572000-06-07 19:55:44 +1000348 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100349 { "strictmodes", sStrictModes },
350 { "permitemptypasswords", sEmptyPasswd },
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000351 { "permituserenvironment", sPermitUserEnvironment },
Damien Miller95def091999-11-25 00:26:21 +1100352 { "uselogin", sUseLogin },
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000353 { "compression", sCompression },
Damien Miller12c150e2003-12-17 16:31:10 +1100354 { "tcpkeepalive", sTCPKeepAlive },
355 { "keepalive", sTCPKeepAlive }, /* obsolete alias */
Damien Miller50a41ed2000-10-16 12:14:42 +1100356 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100357 { "allowusers", sAllowUsers },
358 { "denyusers", sDenyUsers },
359 { "allowgroups", sAllowGroups },
360 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000361 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000362 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000363 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000364 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000365 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000366 { "maxstartups", sMaxStartups },
Darren Tucker89413db2004-05-24 10:36:23 +1000367 { "maxauthtries", sMaxAuthTries },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000368 { "banner", sBanner },
Damien Miller3a961dc2003-06-03 10:25:48 +1000369 { "usedns", sUseDNS },
370 { "verifyreversemapping", sDeprecated },
371 { "reversemappingcheck", sDeprecated },
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000372 { "clientaliveinterval", sClientAliveInterval },
373 { "clientalivecountmax", sClientAliveCountMax },
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000374 { "authorizedkeysfile", sAuthorizedKeysFile },
375 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000376 { "useprivilegeseparation", sUsePrivilegeSeparation},
Darren Tucker46bc0752004-05-02 22:11:30 +1000377 { "acceptenv", sAcceptEnv },
Damien Millerd27b9472005-12-13 19:29:02 +1100378 { "permittunnel", sPermitTunnel },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000379 { NULL, sBadOption }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380};
381
Damien Miller5428f641999-11-25 11:54:57 +1100382/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000383 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100384 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385
Damien Miller4af51302000-04-16 11:18:38 +1000386static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100387parse_token(const char *cp, const char *filename,
388 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000390 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Damien Miller95def091999-11-25 00:26:21 +1100392 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100393 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100394 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000396 error("%s: line %d: Bad configuration option: %s",
397 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100398 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000399}
400
Ben Lindstrombba81212001-06-25 05:01:22 +0000401static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000402add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100403{
Damien Millereccb9de2005-06-17 12:59:34 +1000404 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100405
406 if (options->num_ports == 0)
407 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Darren Tucker0f383232005-01-20 10:57:56 +1100408 if (options->address_family == -1)
409 options->address_family = AF_UNSPEC;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000410 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000411 for (i = 0; i < options->num_ports; i++)
412 add_one_listen_addr(options, addr, options->ports[i]);
413 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000414 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000415}
416
Ben Lindstrombba81212001-06-25 05:01:22 +0000417static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000418add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
419{
420 struct addrinfo hints, *ai, *aitop;
421 char strport[NI_MAXSERV];
422 int gaierr;
423
424 memset(&hints, 0, sizeof(hints));
Darren Tucker0f383232005-01-20 10:57:56 +1100425 hints.ai_family = options->address_family;
Ben Lindstromc510af42001-04-07 17:25:48 +0000426 hints.ai_socktype = SOCK_STREAM;
427 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000428 snprintf(strport, sizeof strport, "%u", port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000429 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
430 fatal("bad addr or host: %s (%s)",
431 addr ? addr : "<NULL>",
432 gai_strerror(gaierr));
433 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
434 ;
435 ai->ai_next = options->listen_addrs;
436 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100437}
438
Ben Lindstromade03f62001-12-06 18:22:17 +0000439int
440process_server_config_line(ServerOptions *options, char *line,
441 const char *filename, int linenum)
442{
443 char *cp, **charptr, *arg, *p;
Damien Millereccb9de2005-06-17 12:59:34 +1000444 int *intptr, value, n;
Ben Lindstromade03f62001-12-06 18:22:17 +0000445 ServerOpCodes opcode;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100446 u_short port;
Damien Millereccb9de2005-06-17 12:59:34 +1000447 u_int i;
Ben Lindstromade03f62001-12-06 18:22:17 +0000448
449 cp = line;
450 arg = strdelim(&cp);
451 /* Ignore leading whitespace */
452 if (*arg == '\0')
453 arg = strdelim(&cp);
454 if (!arg || !*arg || *arg == '#')
455 return 0;
456 intptr = NULL;
457 charptr = NULL;
458 opcode = parse_token(arg, filename, linenum);
459 switch (opcode) {
460 /* Portable-specific options */
Damien Miller4e448a32003-05-14 15:11:48 +1000461 case sUsePAM:
462 intptr = &options->use_pam;
Ben Lindstromade03f62001-12-06 18:22:17 +0000463 goto parse_flag;
464
465 /* Standard Options */
466 case sBadOption:
467 return -1;
468 case sPort:
469 /* ignore ports from configfile if cmdline specifies ports */
470 if (options->ports_from_cmdline)
471 return 0;
472 if (options->listen_addrs != NULL)
473 fatal("%s line %d: ports must be specified before "
Damien Miller4fbf08a2002-01-22 23:35:09 +1100474 "ListenAddress.", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000475 if (options->num_ports >= MAX_PORTS)
476 fatal("%s line %d: too many ports.",
477 filename, linenum);
478 arg = strdelim(&cp);
479 if (!arg || *arg == '\0')
480 fatal("%s line %d: missing port number.",
481 filename, linenum);
482 options->ports[options->num_ports++] = a2port(arg);
483 if (options->ports[options->num_ports-1] == 0)
484 fatal("%s line %d: Badly formatted port number.",
485 filename, linenum);
486 break;
487
488 case sServerKeyBits:
489 intptr = &options->server_key_bits;
490parse_int:
491 arg = strdelim(&cp);
492 if (!arg || *arg == '\0')
493 fatal("%s line %d: missing integer value.",
494 filename, linenum);
495 value = atoi(arg);
496 if (*intptr == -1)
497 *intptr = value;
498 break;
499
500 case sLoginGraceTime:
501 intptr = &options->login_grace_time;
502parse_time:
503 arg = strdelim(&cp);
504 if (!arg || *arg == '\0')
505 fatal("%s line %d: missing time value.",
506 filename, linenum);
507 if ((value = convtime(arg)) == -1)
508 fatal("%s line %d: invalid time value.",
509 filename, linenum);
510 if (*intptr == -1)
511 *intptr = value;
512 break;
513
514 case sKeyRegenerationTime:
515 intptr = &options->key_regeneration_time;
516 goto parse_time;
517
518 case sListenAddress:
519 arg = strdelim(&cp);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100520 if (arg == NULL || *arg == '\0')
521 fatal("%s line %d: missing address",
Ben Lindstromade03f62001-12-06 18:22:17 +0000522 filename, linenum);
Damien Miller203c7052005-08-12 22:11:37 +1000523 /* check for bare IPv6 address: no "[]" and 2 or more ":" */
524 if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
525 && strchr(p+1, ':') != NULL) {
526 add_listen_addr(options, arg, 0);
527 break;
528 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100529 p = hpdelim(&arg);
530 if (p == NULL)
531 fatal("%s line %d: bad address:port usage",
532 filename, linenum);
533 p = cleanhostname(p);
534 if (arg == NULL)
535 port = 0;
536 else if ((port = a2port(arg)) == 0)
537 fatal("%s line %d: bad port number", filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000538
Damien Millerf91ee4c2005-03-01 21:24:33 +1100539 add_listen_addr(options, p, port);
540
Ben Lindstromade03f62001-12-06 18:22:17 +0000541 break;
542
Darren Tucker0f383232005-01-20 10:57:56 +1100543 case sAddressFamily:
544 arg = strdelim(&cp);
Damien Miller17b23d82005-05-26 12:11:56 +1000545 if (!arg || *arg == '\0')
546 fatal("%s line %d: missing address family.",
547 filename, linenum);
Darren Tucker0f383232005-01-20 10:57:56 +1100548 intptr = &options->address_family;
549 if (options->listen_addrs != NULL)
550 fatal("%s line %d: address family must be specified before "
551 "ListenAddress.", filename, linenum);
552 if (strcasecmp(arg, "inet") == 0)
553 value = AF_INET;
554 else if (strcasecmp(arg, "inet6") == 0)
555 value = AF_INET6;
556 else if (strcasecmp(arg, "any") == 0)
557 value = AF_UNSPEC;
558 else
559 fatal("%s line %d: unsupported address family \"%s\".",
560 filename, linenum, arg);
561 if (*intptr == -1)
562 *intptr = value;
563 break;
564
Ben Lindstromade03f62001-12-06 18:22:17 +0000565 case sHostKeyFile:
566 intptr = &options->num_host_key_files;
567 if (*intptr >= MAX_HOSTKEYS)
568 fatal("%s line %d: too many host keys specified (max %d).",
569 filename, linenum, MAX_HOSTKEYS);
570 charptr = &options->host_key_files[*intptr];
571parse_filename:
572 arg = strdelim(&cp);
573 if (!arg || *arg == '\0')
574 fatal("%s line %d: missing file name.",
575 filename, linenum);
576 if (*charptr == NULL) {
577 *charptr = tilde_expand_filename(arg, getuid());
578 /* increase optional counter */
579 if (intptr != NULL)
580 *intptr = *intptr + 1;
581 }
582 break;
583
584 case sPidFile:
585 charptr = &options->pid_file;
586 goto parse_filename;
587
588 case sPermitRootLogin:
589 intptr = &options->permit_root_login;
590 arg = strdelim(&cp);
591 if (!arg || *arg == '\0')
592 fatal("%s line %d: missing yes/"
593 "without-password/forced-commands-only/no "
594 "argument.", filename, linenum);
595 value = 0; /* silence compiler */
596 if (strcmp(arg, "without-password") == 0)
597 value = PERMIT_NO_PASSWD;
598 else if (strcmp(arg, "forced-commands-only") == 0)
599 value = PERMIT_FORCED_ONLY;
600 else if (strcmp(arg, "yes") == 0)
601 value = PERMIT_YES;
602 else if (strcmp(arg, "no") == 0)
603 value = PERMIT_NO;
604 else
605 fatal("%s line %d: Bad yes/"
606 "without-password/forced-commands-only/no "
607 "argument: %s", filename, linenum, arg);
608 if (*intptr == -1)
609 *intptr = value;
610 break;
611
612 case sIgnoreRhosts:
613 intptr = &options->ignore_rhosts;
614parse_flag:
615 arg = strdelim(&cp);
616 if (!arg || *arg == '\0')
617 fatal("%s line %d: missing yes/no argument.",
618 filename, linenum);
619 value = 0; /* silence compiler */
620 if (strcmp(arg, "yes") == 0)
621 value = 1;
622 else if (strcmp(arg, "no") == 0)
623 value = 0;
624 else
625 fatal("%s line %d: Bad yes/no argument: %s",
626 filename, linenum, arg);
627 if (*intptr == -1)
628 *intptr = value;
629 break;
630
631 case sIgnoreUserKnownHosts:
632 intptr = &options->ignore_user_known_hosts;
633 goto parse_flag;
634
Ben Lindstromade03f62001-12-06 18:22:17 +0000635 case sRhostsRSAAuthentication:
636 intptr = &options->rhosts_rsa_authentication;
637 goto parse_flag;
638
639 case sHostbasedAuthentication:
640 intptr = &options->hostbased_authentication;
641 goto parse_flag;
642
643 case sHostbasedUsesNameFromPacketOnly:
644 intptr = &options->hostbased_uses_name_from_packet_only;
645 goto parse_flag;
646
647 case sRSAAuthentication:
648 intptr = &options->rsa_authentication;
649 goto parse_flag;
650
651 case sPubkeyAuthentication:
652 intptr = &options->pubkey_authentication;
653 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000654
Ben Lindstromade03f62001-12-06 18:22:17 +0000655 case sKerberosAuthentication:
656 intptr = &options->kerberos_authentication;
657 goto parse_flag;
658
659 case sKerberosOrLocalPasswd:
660 intptr = &options->kerberos_or_local_passwd;
661 goto parse_flag;
662
663 case sKerberosTicketCleanup:
664 intptr = &options->kerberos_ticket_cleanup;
665 goto parse_flag;
Damien Miller2aa0ab42003-05-15 12:05:28 +1000666
Darren Tucker22ef5082003-12-31 11:37:34 +1100667 case sKerberosGetAFSToken:
668 intptr = &options->kerberos_get_afs_token;
669 goto parse_flag;
670
Darren Tucker0efd1552003-08-26 11:49:55 +1000671 case sGssAuthentication:
672 intptr = &options->gss_authentication;
673 goto parse_flag;
674
675 case sGssCleanupCreds:
676 intptr = &options->gss_cleanup_creds;
677 goto parse_flag;
678
Ben Lindstromade03f62001-12-06 18:22:17 +0000679 case sPasswordAuthentication:
680 intptr = &options->password_authentication;
681 goto parse_flag;
682
683 case sKbdInteractiveAuthentication:
684 intptr = &options->kbd_interactive_authentication;
685 goto parse_flag;
686
687 case sChallengeResponseAuthentication:
688 intptr = &options->challenge_response_authentication;
689 goto parse_flag;
690
691 case sPrintMotd:
692 intptr = &options->print_motd;
693 goto parse_flag;
694
695 case sPrintLastLog:
696 intptr = &options->print_lastlog;
697 goto parse_flag;
698
699 case sX11Forwarding:
700 intptr = &options->x11_forwarding;
701 goto parse_flag;
702
703 case sX11DisplayOffset:
704 intptr = &options->x11_display_offset;
705 goto parse_int;
706
Damien Miller95c249f2002-02-05 12:11:34 +1100707 case sX11UseLocalhost:
708 intptr = &options->x11_use_localhost;
709 goto parse_flag;
710
Ben Lindstromade03f62001-12-06 18:22:17 +0000711 case sXAuthLocation:
712 charptr = &options->xauth_location;
713 goto parse_filename;
714
715 case sStrictModes:
716 intptr = &options->strict_modes;
717 goto parse_flag;
718
Damien Miller12c150e2003-12-17 16:31:10 +1100719 case sTCPKeepAlive:
720 intptr = &options->tcp_keep_alive;
Ben Lindstromade03f62001-12-06 18:22:17 +0000721 goto parse_flag;
722
723 case sEmptyPasswd:
724 intptr = &options->permit_empty_passwd;
725 goto parse_flag;
726
Ben Lindstrom5d860f02002-08-01 01:28:38 +0000727 case sPermitUserEnvironment:
728 intptr = &options->permit_user_env;
729 goto parse_flag;
730
Ben Lindstromade03f62001-12-06 18:22:17 +0000731 case sUseLogin:
732 intptr = &options->use_login;
733 goto parse_flag;
734
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000735 case sCompression:
736 intptr = &options->compression;
Damien Miller9786e6e2005-07-26 21:54:56 +1000737 arg = strdelim(&cp);
738 if (!arg || *arg == '\0')
739 fatal("%s line %d: missing yes/no/delayed "
740 "argument.", filename, linenum);
741 value = 0; /* silence compiler */
742 if (strcmp(arg, "delayed") == 0)
743 value = COMP_DELAYED;
744 else if (strcmp(arg, "yes") == 0)
745 value = COMP_ZLIB;
746 else if (strcmp(arg, "no") == 0)
747 value = COMP_NONE;
748 else
749 fatal("%s line %d: Bad yes/no/delayed "
750 "argument: %s", filename, linenum, arg);
751 if (*intptr == -1)
752 *intptr = value;
753 break;
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000754
Ben Lindstromade03f62001-12-06 18:22:17 +0000755 case sGatewayPorts:
756 intptr = &options->gateway_ports;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100757 arg = strdelim(&cp);
758 if (!arg || *arg == '\0')
759 fatal("%s line %d: missing yes/no/clientspecified "
760 "argument.", filename, linenum);
761 value = 0; /* silence compiler */
762 if (strcmp(arg, "clientspecified") == 0)
763 value = 2;
764 else if (strcmp(arg, "yes") == 0)
765 value = 1;
766 else if (strcmp(arg, "no") == 0)
767 value = 0;
768 else
769 fatal("%s line %d: Bad yes/no/clientspecified "
770 "argument: %s", filename, linenum, arg);
771 if (*intptr == -1)
772 *intptr = value;
773 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000774
Damien Miller3a961dc2003-06-03 10:25:48 +1000775 case sUseDNS:
776 intptr = &options->use_dns;
Ben Lindstromade03f62001-12-06 18:22:17 +0000777 goto parse_flag;
778
779 case sLogFacility:
780 intptr = (int *) &options->log_facility;
781 arg = strdelim(&cp);
782 value = log_facility_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100783 if (value == SYSLOG_FACILITY_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000784 fatal("%.200s line %d: unsupported log facility '%s'",
785 filename, linenum, arg ? arg : "<NONE>");
786 if (*intptr == -1)
787 *intptr = (SyslogFacility) value;
788 break;
789
790 case sLogLevel:
791 intptr = (int *) &options->log_level;
792 arg = strdelim(&cp);
793 value = log_level_number(arg);
Damien Millerfcd93202002-02-05 12:26:34 +1100794 if (value == SYSLOG_LEVEL_NOT_SET)
Ben Lindstromade03f62001-12-06 18:22:17 +0000795 fatal("%.200s line %d: unsupported log level '%s'",
796 filename, linenum, arg ? arg : "<NONE>");
797 if (*intptr == -1)
798 *intptr = (LogLevel) value;
799 break;
800
801 case sAllowTcpForwarding:
802 intptr = &options->allow_tcp_forwarding;
803 goto parse_flag;
804
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000805 case sUsePrivilegeSeparation:
806 intptr = &use_privsep;
807 goto parse_flag;
808
Ben Lindstromade03f62001-12-06 18:22:17 +0000809 case sAllowUsers:
810 while ((arg = strdelim(&cp)) && *arg != '\0') {
811 if (options->num_allow_users >= MAX_ALLOW_USERS)
812 fatal("%s line %d: too many allow users.",
813 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000814 options->allow_users[options->num_allow_users++] =
815 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000816 }
817 break;
818
819 case sDenyUsers:
820 while ((arg = strdelim(&cp)) && *arg != '\0') {
821 if (options->num_deny_users >= MAX_DENY_USERS)
822 fatal( "%s line %d: too many deny users.",
823 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000824 options->deny_users[options->num_deny_users++] =
825 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000826 }
827 break;
828
829 case sAllowGroups:
830 while ((arg = strdelim(&cp)) && *arg != '\0') {
831 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
832 fatal("%s line %d: too many allow groups.",
833 filename, linenum);
Ben Lindstrome1353632002-06-23 21:29:23 +0000834 options->allow_groups[options->num_allow_groups++] =
835 xstrdup(arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000836 }
837 break;
838
839 case sDenyGroups:
840 while ((arg = strdelim(&cp)) && *arg != '\0') {
841 if (options->num_deny_groups >= MAX_DENY_GROUPS)
842 fatal("%s line %d: too many deny groups.",
843 filename, linenum);
844 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
845 }
846 break;
847
848 case sCiphers:
849 arg = strdelim(&cp);
850 if (!arg || *arg == '\0')
851 fatal("%s line %d: Missing argument.", filename, linenum);
852 if (!ciphers_valid(arg))
853 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
854 filename, linenum, arg ? arg : "<NONE>");
855 if (options->ciphers == NULL)
856 options->ciphers = xstrdup(arg);
857 break;
858
859 case sMacs:
860 arg = strdelim(&cp);
861 if (!arg || *arg == '\0')
862 fatal("%s line %d: Missing argument.", filename, linenum);
863 if (!mac_valid(arg))
864 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
865 filename, linenum, arg ? arg : "<NONE>");
866 if (options->macs == NULL)
867 options->macs = xstrdup(arg);
868 break;
869
870 case sProtocol:
871 intptr = &options->protocol;
872 arg = strdelim(&cp);
873 if (!arg || *arg == '\0')
874 fatal("%s line %d: Missing argument.", filename, linenum);
875 value = proto_spec(arg);
876 if (value == SSH_PROTO_UNKNOWN)
877 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100878 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +0000879 if (*intptr == SSH_PROTO_UNKNOWN)
880 *intptr = value;
881 break;
882
883 case sSubsystem:
884 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
885 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100886 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000887 }
888 arg = strdelim(&cp);
889 if (!arg || *arg == '\0')
890 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100891 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000892 for (i = 0; i < options->num_subsystems; i++)
893 if (strcmp(arg, options->subsystem_name[i]) == 0)
894 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100895 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000896 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
897 arg = strdelim(&cp);
898 if (!arg || *arg == '\0')
899 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100900 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000901 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
902 options->num_subsystems++;
903 break;
904
905 case sMaxStartups:
906 arg = strdelim(&cp);
907 if (!arg || *arg == '\0')
908 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100909 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000910 if ((n = sscanf(arg, "%d:%d:%d",
911 &options->max_startups_begin,
912 &options->max_startups_rate,
913 &options->max_startups)) == 3) {
914 if (options->max_startups_begin >
915 options->max_startups ||
916 options->max_startups_rate > 100 ||
917 options->max_startups_rate < 1)
918 fatal("%s line %d: Illegal MaxStartups spec.",
919 filename, linenum);
920 } else if (n != 1)
921 fatal("%s line %d: Illegal MaxStartups spec.",
922 filename, linenum);
923 else
924 options->max_startups = options->max_startups_begin;
925 break;
926
Darren Tucker89413db2004-05-24 10:36:23 +1000927 case sMaxAuthTries:
928 intptr = &options->max_authtries;
929 goto parse_int;
930
Ben Lindstromade03f62001-12-06 18:22:17 +0000931 case sBanner:
932 charptr = &options->banner;
933 goto parse_filename;
934 /*
935 * These options can contain %X options expanded at
936 * connect time, so that you can specify paths like:
937 *
938 * AuthorizedKeysFile /etc/ssh_keys/%u
939 */
940 case sAuthorizedKeysFile:
941 case sAuthorizedKeysFile2:
942 charptr = (opcode == sAuthorizedKeysFile ) ?
943 &options->authorized_keys_file :
944 &options->authorized_keys_file2;
945 goto parse_filename;
946
947 case sClientAliveInterval:
948 intptr = &options->client_alive_interval;
949 goto parse_time;
950
951 case sClientAliveCountMax:
952 intptr = &options->client_alive_count_max;
953 goto parse_int;
954
Darren Tucker46bc0752004-05-02 22:11:30 +1000955 case sAcceptEnv:
956 while ((arg = strdelim(&cp)) && *arg != '\0') {
957 if (strchr(arg, '=') != NULL)
958 fatal("%s line %d: Invalid environment name.",
959 filename, linenum);
960 if (options->num_accept_env >= MAX_ACCEPT_ENV)
961 fatal("%s line %d: too many allow env.",
962 filename, linenum);
963 options->accept_env[options->num_accept_env++] =
964 xstrdup(arg);
965 }
966 break;
967
Damien Millerd27b9472005-12-13 19:29:02 +1100968 case sPermitTunnel:
969 intptr = &options->permit_tun;
Damien Miller7b58e802005-12-13 19:33:19 +1100970 arg = strdelim(&cp);
971 if (!arg || *arg == '\0')
972 fatal("%s line %d: Missing yes/point-to-point/"
973 "ethernet/no argument.", filename, linenum);
974 value = 0; /* silence compiler */
975 if (strcasecmp(arg, "ethernet") == 0)
976 value = SSH_TUNMODE_ETHERNET;
977 else if (strcasecmp(arg, "point-to-point") == 0)
978 value = SSH_TUNMODE_POINTOPOINT;
979 else if (strcasecmp(arg, "yes") == 0)
980 value = SSH_TUNMODE_YES;
981 else if (strcasecmp(arg, "no") == 0)
982 value = SSH_TUNMODE_NO;
983 else
984 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
985 "no argument: %s", filename, linenum, arg);
986 if (*intptr == -1)
987 *intptr = value;
988 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100989
Ben Lindstromade03f62001-12-06 18:22:17 +0000990 case sDeprecated:
Damien Miller996acd22003-04-09 20:59:48 +1000991 logit("%s line %d: Deprecated option %s",
Ben Lindstromade03f62001-12-06 18:22:17 +0000992 filename, linenum, arg);
993 while (arg)
994 arg = strdelim(&cp);
995 break;
996
Damien Millerf9b3feb2003-05-16 11:38:32 +1000997 case sUnsupported:
998 logit("%s line %d: Unsupported option %s",
999 filename, linenum, arg);
1000 while (arg)
1001 arg = strdelim(&cp);
1002 break;
1003
Ben Lindstromade03f62001-12-06 18:22:17 +00001004 default:
1005 fatal("%s line %d: Missing handler for opcode %s (%d)",
1006 filename, linenum, arg, opcode);
1007 }
1008 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
1009 fatal("%s line %d: garbage at end of line; \"%.200s\".",
1010 filename, linenum, arg);
1011 return 0;
1012}
1013
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001014/* Reads the server configuration file. */
1015
Damien Miller4af51302000-04-16 11:18:38 +10001016void
Darren Tucker645ab752004-06-25 13:33:20 +10001017load_server_config(const char *filename, Buffer *conf)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001018{
Darren Tucker645ab752004-06-25 13:33:20 +10001019 char line[1024], *cp;
Ben Lindstrome1353632002-06-23 21:29:23 +00001020 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021
Darren Tucker645ab752004-06-25 13:33:20 +10001022 debug2("%s: filename %s", __func__, filename);
1023 if ((f = fopen(filename, "r")) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001024 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001025 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001026 }
Darren Tucker645ab752004-06-25 13:33:20 +10001027 buffer_clear(conf);
Damien Miller95def091999-11-25 00:26:21 +11001028 while (fgets(line, sizeof(line), f)) {
Darren Tucker645ab752004-06-25 13:33:20 +10001029 /*
1030 * Trim out comments and strip whitespace
Darren Tuckerfc959702004-07-17 16:12:08 +10001031 * NB - preserve newlines, they are needed to reproduce
Darren Tucker645ab752004-06-25 13:33:20 +10001032 * line numbers later for error messages
1033 */
1034 if ((cp = strchr(line, '#')) != NULL)
1035 memcpy(cp, "\n", 2);
1036 cp = line + strspn(line, " \t\r");
1037
1038 buffer_append(conf, cp, strlen(cp));
1039 }
1040 buffer_append(conf, "\0", 1);
1041 fclose(f);
1042 debug2("%s: done config len = %d", __func__, buffer_len(conf));
1043}
1044
1045void
1046parse_server_config(ServerOptions *options, const char *filename, Buffer *conf)
1047{
1048 int linenum, bad_options = 0;
Darren Tucker9fbac712004-08-12 22:41:44 +10001049 char *cp, *obuf, *cbuf;
Darren Tucker645ab752004-06-25 13:33:20 +10001050
1051 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1052
Darren Tucker9fbac712004-08-12 22:41:44 +10001053 obuf = cbuf = xstrdup(buffer_ptr(conf));
Darren Tucker137e9c92004-08-13 21:30:24 +10001054 linenum = 1;
Darren Tucker47eede72005-03-14 23:08:12 +11001055 while ((cp = strsep(&cbuf, "\n")) != NULL) {
Darren Tucker645ab752004-06-25 13:33:20 +10001056 if (process_server_config_line(options, cp, filename,
1057 linenum++) != 0)
Damien Miller95def091999-11-25 00:26:21 +11001058 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001059 }
Darren Tucker9fbac712004-08-12 22:41:44 +10001060 xfree(obuf);
Ben Lindstromb5cdc662001-04-16 02:13:26 +00001061 if (bad_options > 0)
1062 fatal("%s: terminating, %d bad configuration options",
1063 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001064}