blob: d82e8427551318834d6c4cd7089a29e35bdc28c2 [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 Miller75413ac2001-11-12 11:14:35 +110013RCSID("$OpenBSD: servconf.c,v 1.90 2001/11/11 13:02:31 markus Exp $");
Ben Lindstrom226cfa02001-01-22 05:34:40 +000014
Damien Millerc4b7fea2001-07-14 12:20:32 +100015#if defined(KRB4) || defined(KRB5)
Ben Lindstrom226cfa02001-01-22 05:34:40 +000016#include <krb.h>
17#endif
Ben Lindstromeb7a84c2001-07-04 04:48:36 +000018#ifdef AFS
19#include <kafs.h>
20#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
22#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000023#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include "servconf.h"
25#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100026#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include "pathnames.h"
28#include "tildexpand.h"
29#include "misc.h"
30#include "cipher.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000031#include "kex.h"
32#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033
Ben Lindstrombba81212001-06-25 05:01:22 +000034static void add_listen_addr(ServerOptions *, char *, u_short);
35static void add_one_listen_addr(ServerOptions *, char *, u_short);
Damien Miller34132e52000-01-14 15:45:46 +110036
Ben Lindstrom226cfa02001-01-22 05:34:40 +000037/* AF_UNSPEC or AF_INET or AF_INET6 */
38extern int IPv4or6;
39
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040/* Initializes the server options to their default values. */
41
Damien Miller4af51302000-04-16 11:18:38 +100042void
Damien Miller95def091999-11-25 00:26:21 +110043initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044{
Damien Miller95def091999-11-25 00:26:21 +110045 memset(options, 0, sizeof(*options));
Damien Miller34132e52000-01-14 15:45:46 +110046 options->num_ports = 0;
47 options->ports_from_cmdline = 0;
48 options->listen_addrs = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +110049 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100050 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110051 options->server_key_bits = -1;
52 options->login_grace_time = -1;
53 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000054 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110055 options->ignore_rhosts = -1;
56 options->ignore_user_known_hosts = -1;
57 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000058 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110059 options->x11_forwarding = -1;
60 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100061 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110062 options->strict_modes = -1;
63 options->keepalives = -1;
64 options->log_facility = (SyslogFacility) - 1;
65 options->log_level = (LogLevel) - 1;
66 options->rhosts_authentication = -1;
67 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000068 options->hostbased_authentication = -1;
69 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110070 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110071 options->pubkey_authentication = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +000072#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +110073 options->kerberos_authentication = -1;
74 options->kerberos_or_local_passwd = -1;
75 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +000077#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +110078 options->kerberos_tgt_passing = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +000079#endif
80#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110081 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#endif
Damien Miller95def091999-11-25 00:26:21 +110083 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110084 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +000085 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110086 options->permit_empty_passwd = -1;
87 options->use_login = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110088 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110089 options->num_allow_users = 0;
90 options->num_deny_users = 0;
91 options->num_allow_groups = 0;
92 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100093 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000094 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +100095 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100096 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +100097 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100098 options->max_startups_begin = -1;
99 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000100 options->max_startups = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000101 options->banner = NULL;
Damien Miller33804262001-02-04 23:20:18 +1100102 options->reverse_mapping_check = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000103 options->client_alive_interval = -1;
104 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000105 options->authorized_keys_file = NULL;
106 options->authorized_keys_file2 = NULL;
Damien Millerf8154422001-04-25 22:44:14 +1000107 options->pam_authentication_via_kbd_int = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108}
109
Damien Miller4af51302000-04-16 11:18:38 +1000110void
Damien Miller95def091999-11-25 00:26:21 +1100111fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100113 if (options->protocol == SSH_PROTO_UNKNOWN)
114 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
115 if (options->num_host_key_files == 0) {
116 /* fill default hostkeys for protocols */
117 if (options->protocol & SSH_PROTO_1)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000118 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100119 if (options->protocol & SSH_PROTO_2)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000120 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_DSA_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100121 }
Damien Miller34132e52000-01-14 15:45:46 +1100122 if (options->num_ports == 0)
123 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
124 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000125 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000126 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000127 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100128 if (options->server_key_bits == -1)
129 options->server_key_bits = 768;
130 if (options->login_grace_time == -1)
131 options->login_grace_time = 600;
132 if (options->key_regeneration_time == -1)
133 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000134 if (options->permit_root_login == PERMIT_NOT_SET)
135 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100136 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100137 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100138 if (options->ignore_user_known_hosts == -1)
139 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100140 if (options->print_motd == -1)
141 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000142 if (options->print_lastlog == -1)
143 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100144 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100145 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100146 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100147 options->x11_display_offset = 10;
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000148#ifdef _PATH_XAUTH
Damien Millerd3a18572000-06-07 19:55:44 +1000149 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000150 options->xauth_location = _PATH_XAUTH;
151#endif
Damien Miller95def091999-11-25 00:26:21 +1100152 if (options->strict_modes == -1)
153 options->strict_modes = 1;
154 if (options->keepalives == -1)
155 options->keepalives = 1;
156 if (options->log_facility == (SyslogFacility) (-1))
157 options->log_facility = SYSLOG_FACILITY_AUTH;
158 if (options->log_level == (LogLevel) (-1))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000159 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100160 if (options->rhosts_authentication == -1)
161 options->rhosts_authentication = 0;
162 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100163 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000164 if (options->hostbased_authentication == -1)
165 options->hostbased_authentication = 0;
166 if (options->hostbased_uses_name_from_packet_only == -1)
167 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100168 if (options->rsa_authentication == -1)
169 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100170 if (options->pubkey_authentication == -1)
171 options->pubkey_authentication = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000172#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100173 if (options->kerberos_authentication == -1)
174 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
175 if (options->kerberos_or_local_passwd == -1)
176 options->kerberos_or_local_passwd = 1;
177 if (options->kerberos_ticket_cleanup == -1)
178 options->kerberos_ticket_cleanup = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000179#endif
180#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100181 if (options->kerberos_tgt_passing == -1)
182 options->kerberos_tgt_passing = 0;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000183#endif
184#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100185 if (options->afs_token_passing == -1)
186 options->afs_token_passing = k_hasafs();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000187#endif
Damien Miller95def091999-11-25 00:26:21 +1100188 if (options->password_authentication == -1)
189 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100190 if (options->kbd_interactive_authentication == -1)
191 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000192 if (options->challenge_response_authentication == -1)
193 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100194 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100195 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100196 if (options->use_login == -1)
197 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100198 if (options->allow_tcp_forwarding == -1)
199 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000200 if (options->gateway_ports == -1)
201 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000202 if (options->max_startups == -1)
203 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000204 if (options->max_startups_rate == -1)
205 options->max_startups_rate = 100; /* 100% */
206 if (options->max_startups_begin == -1)
207 options->max_startups_begin = options->max_startups;
Damien Miller33804262001-02-04 23:20:18 +1100208 if (options->reverse_mapping_check == -1)
209 options->reverse_mapping_check = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000210 if (options->client_alive_interval == -1)
211 options->client_alive_interval = 0;
212 if (options->client_alive_count_max == -1)
213 options->client_alive_count_max = 3;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000214 if (options->authorized_keys_file == NULL)
Kevin Steves27fd1922001-07-04 18:29:14 +0000215 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Miller75413ac2001-11-12 11:14:35 +1100216 if (options->authorized_keys_file2 == NULL) {
217 /* authorized_keys_file2 falls back to authorized_keys_file */
218 if (options->authorized_keys_file != NULL)
219 options->authorized_keys_file2 = options->authorized_keys_file;
220 else
221 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
222 }
223 if (options->authorized_keys_file == NULL)
224 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerf8154422001-04-25 22:44:14 +1000225 if (options->pam_authentication_via_kbd_int == -1)
226 options->pam_authentication_via_kbd_int = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100230typedef enum {
231 sBadOption, /* == unknown option */
232 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
233 sPermitRootLogin, sLogFacility, sLogLevel,
234 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Ben Lindstromec95ed92001-07-04 04:21:14 +0000235#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100236 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000238#if defined(AFS) || defined(KRB5)
239 sKerberosTgtPassing,
240#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241#ifdef AFS
Ben Lindstromec95ed92001-07-04 04:21:14 +0000242 sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000244 sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100245 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000246 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
247 sX11Forwarding, sX11DisplayOffset,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000248 sStrictModes, sEmptyPasswd, sKeepAlives,
Damien Miller50a41ed2000-10-16 12:14:42 +1100249 sUseLogin, sAllowTcpForwarding,
250 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000251 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100252 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000253 sBanner, sReverseMappingCheck, sHostbasedAuthentication,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000254 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000255 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000256 sDeprecated, sPAMAuthenticationViaKbdInt
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257} ServerOpCodes;
258
259/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100260static struct {
261 const char *name;
262 ServerOpCodes opcode;
263} keywords[] = {
264 { "port", sPort },
265 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100266 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000267 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100268 { "serverkeybits", sServerKeyBits },
269 { "logingracetime", sLoginGraceTime },
270 { "keyregenerationinterval", sKeyRegenerationTime },
271 { "permitrootlogin", sPermitRootLogin },
272 { "syslogfacility", sLogFacility },
273 { "loglevel", sLogLevel },
274 { "rhostsauthentication", sRhostsAuthentication },
275 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000276 { "hostbasedauthentication", sHostbasedAuthentication },
277 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100278 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100279 { "pubkeyauthentication", sPubkeyAuthentication },
280 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Ben Lindstromec95ed92001-07-04 04:21:14 +0000281#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100282 { "kerberosauthentication", sKerberosAuthentication },
283 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
284 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000286#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100287 { "kerberostgtpassing", sKerberosTgtPassing },
Ben Lindstromec95ed92001-07-04 04:21:14 +0000288#endif
289#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100290 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291#endif
Damien Miller95def091999-11-25 00:26:21 +1100292 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100293 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000294 { "challengeresponseauthentication", sChallengeResponseAuthentication },
295 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Ben Lindstrom91e98682001-09-12 16:32:14 +0000296 { "checkmail", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100297 { "listenaddress", sListenAddress },
298 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000299 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100300 { "ignorerhosts", sIgnoreRhosts },
301 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
302 { "x11forwarding", sX11Forwarding },
303 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000304 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100305 { "strictmodes", sStrictModes },
306 { "permitemptypasswords", sEmptyPasswd },
307 { "uselogin", sUseLogin },
Damien Miller95def091999-11-25 00:26:21 +1100308 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100309 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100310 { "allowusers", sAllowUsers },
311 { "denyusers", sDenyUsers },
312 { "allowgroups", sAllowGroups },
313 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000314 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000315 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000316 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000317 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000318 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000319 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000320 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100321 { "reversemappingcheck", sReverseMappingCheck },
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000322 { "clientaliveinterval", sClientAliveInterval },
323 { "clientalivecountmax", sClientAliveCountMax },
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000324 { "authorizedkeysfile", sAuthorizedKeysFile },
325 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
Damien Millerf8154422001-04-25 22:44:14 +1000326 { "PAMAuthenticationViaKbdInt", sPAMAuthenticationViaKbdInt },
Damien Miller95def091999-11-25 00:26:21 +1100327 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328};
329
Damien Miller5428f641999-11-25 11:54:57 +1100330/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000331 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100332 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333
Damien Miller4af51302000-04-16 11:18:38 +1000334static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100335parse_token(const char *cp, const char *filename,
336 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000338 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Damien Miller95def091999-11-25 00:26:21 +1100340 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100341 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100342 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000344 error("%s: line %d: Bad configuration option: %s",
345 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100346 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347}
348
Ben Lindstrombba81212001-06-25 05:01:22 +0000349static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000350add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100351{
Damien Miller34132e52000-01-14 15:45:46 +1100352 int i;
353
354 if (options->num_ports == 0)
355 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000356 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000357 for (i = 0; i < options->num_ports; i++)
358 add_one_listen_addr(options, addr, options->ports[i]);
359 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000360 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000361}
362
Ben Lindstrombba81212001-06-25 05:01:22 +0000363static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000364add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
365{
366 struct addrinfo hints, *ai, *aitop;
367 char strport[NI_MAXSERV];
368 int gaierr;
369
370 memset(&hints, 0, sizeof(hints));
371 hints.ai_family = IPv4or6;
372 hints.ai_socktype = SOCK_STREAM;
373 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
374 snprintf(strport, sizeof strport, "%d", port);
375 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
376 fatal("bad addr or host: %s (%s)",
377 addr ? addr : "<NULL>",
378 gai_strerror(gaierr));
379 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
380 ;
381 ai->ai_next = options->listen_addrs;
382 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100383}
384
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385/* Reads the server configuration file. */
386
Damien Miller4af51302000-04-16 11:18:38 +1000387void
Damien Miller95def091999-11-25 00:26:21 +1100388read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389{
Damien Miller95def091999-11-25 00:26:21 +1100390 FILE *f;
391 char line[1024];
Ben Lindstromc510af42001-04-07 17:25:48 +0000392 char *cp, **charptr, *arg, *p;
Damien Miller95def091999-11-25 00:26:21 +1100393 int linenum, *intptr, value;
394 int bad_options = 0;
395 ServerOpCodes opcode;
Damien Miller40857852001-07-14 12:17:33 +1000396 int i, n;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397
Damien Miller95def091999-11-25 00:26:21 +1100398 f = fopen(filename, "r");
399 if (!f) {
400 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100402 }
403 linenum = 0;
404 while (fgets(line, sizeof(line), f)) {
405 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000406 cp = line;
407 arg = strdelim(&cp);
408 /* Ignore leading whitespace */
409 if (*arg == '\0')
410 arg = strdelim(&cp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000411 if (!arg || !*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100412 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100413 intptr = NULL;
414 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000415 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100416 switch (opcode) {
417 case sBadOption:
418 bad_options++;
419 continue;
420 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100421 /* ignore ports from configfile if cmdline specifies ports */
422 if (options->ports_from_cmdline)
423 continue;
424 if (options->listen_addrs != NULL)
425 fatal("%s line %d: ports must be specified before "
Ben Lindstroma6218b82001-05-03 22:39:11 +0000426 "ListenAdress.", filename, linenum);
Damien Miller34132e52000-01-14 15:45:46 +1100427 if (options->num_ports >= MAX_PORTS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000428 fatal("%s line %d: too many ports.",
Damien Miller4af51302000-04-16 11:18:38 +1000429 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000430 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000431 if (!arg || *arg == '\0')
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000432 fatal("%s line %d: missing port number.",
Damien Miller34132e52000-01-14 15:45:46 +1100433 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000434 options->ports[options->num_ports++] = a2port(arg);
435 if (options->ports[options->num_ports-1] == 0)
436 fatal("%s line %d: Badly formatted port number.",
437 filename, linenum);
Damien Miller34132e52000-01-14 15:45:46 +1100438 break;
439
440 case sServerKeyBits:
441 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100442parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000443 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000444 if (!arg || *arg == '\0')
445 fatal("%s line %d: missing integer value.",
446 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000447 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100448 if (*intptr == -1)
449 *intptr = value;
450 break;
Damien Miller32265091999-11-12 11:33:04 +1100451
Damien Miller95def091999-11-25 00:26:21 +1100452 case sLoginGraceTime:
453 intptr = &options->login_grace_time;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000454parse_time:
455 arg = strdelim(&cp);
456 if (!arg || *arg == '\0')
457 fatal("%s line %d: missing time value.",
458 filename, linenum);
459 if ((value = convtime(arg)) == -1)
460 fatal("%s line %d: invalid time value.",
461 filename, linenum);
462 if (*intptr == -1)
463 *intptr = value;
464 break;
Damien Miller95def091999-11-25 00:26:21 +1100465
466 case sKeyRegenerationTime:
467 intptr = &options->key_regeneration_time;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000468 goto parse_time;
Damien Miller95def091999-11-25 00:26:21 +1100469
470 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000471 arg = strdelim(&cp);
Ben Lindstromc510af42001-04-07 17:25:48 +0000472 if (!arg || *arg == '\0' || strncmp(arg, "[]", 2) == 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000473 fatal("%s line %d: missing inet addr.",
Damien Miller34132e52000-01-14 15:45:46 +1100474 filename, linenum);
Ben Lindstromc510af42001-04-07 17:25:48 +0000475 if (*arg == '[') {
476 if ((p = strchr(arg, ']')) == NULL)
477 fatal("%s line %d: bad ipv6 inet addr usage.",
478 filename, linenum);
479 arg++;
480 memmove(p, p+1, strlen(p+1)+1);
481 } else if (((p = strchr(arg, ':')) == NULL) ||
482 (strchr(p+1, ':') != NULL)) {
Ben Lindstrom19066a12001-04-12 23:39:26 +0000483 add_listen_addr(options, arg, 0);
Ben Lindstromc510af42001-04-07 17:25:48 +0000484 break;
485 }
486 if (*p == ':') {
Ben Lindstrom19066a12001-04-12 23:39:26 +0000487 u_short port;
488
Ben Lindstromc510af42001-04-07 17:25:48 +0000489 p++;
490 if (*p == '\0')
491 fatal("%s line %d: bad inet addr:port usage.",
492 filename, linenum);
493 else {
494 *(p-1) = '\0';
Ben Lindstrom19066a12001-04-12 23:39:26 +0000495 if ((port = a2port(p)) == 0)
496 fatal("%s line %d: bad port number.",
497 filename, linenum);
498 add_listen_addr(options, arg, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000499 }
500 } else if (*p == '\0')
Ben Lindstrom19066a12001-04-12 23:39:26 +0000501 add_listen_addr(options, arg, 0);
Ben Lindstromc510af42001-04-07 17:25:48 +0000502 else
503 fatal("%s line %d: bad inet addr usage.",
504 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100505 break;
506
507 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100508 intptr = &options->num_host_key_files;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000509 if (*intptr >= MAX_HOSTKEYS)
510 fatal("%s line %d: too many host keys specified (max %d).",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100511 filename, linenum, MAX_HOSTKEYS);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100512 charptr = &options->host_key_files[*intptr];
Damien Millerd3a18572000-06-07 19:55:44 +1000513parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000514 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000515 if (!arg || *arg == '\0')
516 fatal("%s line %d: missing file name.",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000517 filename, linenum);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100518 if (*charptr == NULL) {
Damien Miller37023962000-07-11 17:31:38 +1000519 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller0bc1bd82000-11-13 22:57:25 +1100520 /* increase optional counter */
521 if (intptr != NULL)
522 *intptr = *intptr + 1;
523 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000524 break;
525
526 case sPidFile:
527 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000528 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100529
Damien Miller95def091999-11-25 00:26:21 +1100530 case sPermitRootLogin:
531 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000532 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000533 if (!arg || *arg == '\0')
534 fatal("%s line %d: missing yes/"
Ben Lindstrom35f1f4e2001-03-06 01:02:41 +0000535 "without-password/forced-commands-only/no "
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000536 "argument.", filename, linenum);
537 value = 0; /* silence compiler */
Damien Miller37023962000-07-11 17:31:38 +1000538 if (strcmp(arg, "without-password") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000539 value = PERMIT_NO_PASSWD;
540 else if (strcmp(arg, "forced-commands-only") == 0)
541 value = PERMIT_FORCED_ONLY;
Damien Miller37023962000-07-11 17:31:38 +1000542 else if (strcmp(arg, "yes") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000543 value = PERMIT_YES;
Damien Miller37023962000-07-11 17:31:38 +1000544 else if (strcmp(arg, "no") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000545 value = PERMIT_NO;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000546 else
547 fatal("%s line %d: Bad yes/"
Ben Lindstromd8a90212001-02-15 03:08:27 +0000548 "without-password/forced-commands-only/no "
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000549 "argument: %s", filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100550 if (*intptr == -1)
551 *intptr = value;
552 break;
553
554 case sIgnoreRhosts:
555 intptr = &options->ignore_rhosts;
556parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000557 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000558 if (!arg || *arg == '\0')
559 fatal("%s line %d: missing yes/no argument.",
560 filename, linenum);
561 value = 0; /* silence compiler */
Damien Miller37023962000-07-11 17:31:38 +1000562 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100563 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000564 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100565 value = 0;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000566 else
567 fatal("%s line %d: Bad yes/no argument: %s",
Damien Miller37023962000-07-11 17:31:38 +1000568 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100569 if (*intptr == -1)
570 *intptr = value;
571 break;
572
573 case sIgnoreUserKnownHosts:
574 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100575 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100576
577 case sRhostsAuthentication:
578 intptr = &options->rhosts_authentication;
579 goto parse_flag;
580
581 case sRhostsRSAAuthentication:
582 intptr = &options->rhosts_rsa_authentication;
583 goto parse_flag;
584
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000585 case sHostbasedAuthentication:
586 intptr = &options->hostbased_authentication;
587 goto parse_flag;
588
589 case sHostbasedUsesNameFromPacketOnly:
590 intptr = &options->hostbased_uses_name_from_packet_only;
591 goto parse_flag;
592
Damien Miller95def091999-11-25 00:26:21 +1100593 case sRSAAuthentication:
594 intptr = &options->rsa_authentication;
595 goto parse_flag;
596
Damien Miller0bc1bd82000-11-13 22:57:25 +1100597 case sPubkeyAuthentication:
598 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000599 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000600#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100601 case sKerberosAuthentication:
602 intptr = &options->kerberos_authentication;
603 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller95def091999-11-25 00:26:21 +1100605 case sKerberosOrLocalPasswd:
606 intptr = &options->kerberos_or_local_passwd;
607 goto parse_flag;
608
609 case sKerberosTicketCleanup:
610 intptr = &options->kerberos_ticket_cleanup;
611 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000613#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100614 case sKerberosTgtPassing:
615 intptr = &options->kerberos_tgt_passing;
616 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000617#endif
618#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100619 case sAFSTokenPassing:
620 intptr = &options->afs_token_passing;
621 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622#endif
623
Damien Miller95def091999-11-25 00:26:21 +1100624 case sPasswordAuthentication:
625 intptr = &options->password_authentication;
626 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627
Damien Miller874d77b2000-10-14 16:23:11 +1100628 case sKbdInteractiveAuthentication:
629 intptr = &options->kbd_interactive_authentication;
630 goto parse_flag;
631
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000632 case sChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000633 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100634 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 case sPrintMotd:
637 intptr = &options->print_motd;
638 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000640 case sPrintLastLog:
641 intptr = &options->print_lastlog;
642 goto parse_flag;
643
Damien Miller95def091999-11-25 00:26:21 +1100644 case sX11Forwarding:
645 intptr = &options->x11_forwarding;
646 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647
Damien Miller95def091999-11-25 00:26:21 +1100648 case sX11DisplayOffset:
649 intptr = &options->x11_display_offset;
650 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651
Damien Millerd3a18572000-06-07 19:55:44 +1000652 case sXAuthLocation:
653 charptr = &options->xauth_location;
654 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000655
Damien Miller95def091999-11-25 00:26:21 +1100656 case sStrictModes:
657 intptr = &options->strict_modes;
658 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller95def091999-11-25 00:26:21 +1100660 case sKeepAlives:
661 intptr = &options->keepalives;
662 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663
Damien Miller95def091999-11-25 00:26:21 +1100664 case sEmptyPasswd:
665 intptr = &options->permit_empty_passwd;
666 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller95def091999-11-25 00:26:21 +1100668 case sUseLogin:
669 intptr = &options->use_login;
670 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100671
Damien Millere247cc42000-05-07 12:03:14 +1000672 case sGatewayPorts:
673 intptr = &options->gateway_ports;
674 goto parse_flag;
675
Damien Miller33804262001-02-04 23:20:18 +1100676 case sReverseMappingCheck:
677 intptr = &options->reverse_mapping_check;
678 goto parse_flag;
679
Damien Miller95def091999-11-25 00:26:21 +1100680 case sLogFacility:
681 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000682 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000683 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100684 if (value == (SyslogFacility) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000685 fatal("%.200s line %d: unsupported log facility '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000686 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100687 if (*intptr == -1)
688 *intptr = (SyslogFacility) value;
689 break;
690
691 case sLogLevel:
692 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000693 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000694 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100695 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000696 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000697 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100698 if (*intptr == -1)
699 *intptr = (LogLevel) value;
700 break;
701
Damien Miller50a41ed2000-10-16 12:14:42 +1100702 case sAllowTcpForwarding:
703 intptr = &options->allow_tcp_forwarding;
704 goto parse_flag;
705
Damien Miller95def091999-11-25 00:26:21 +1100706 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000707 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000708 if (options->num_allow_users >= MAX_ALLOW_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000709 fatal("%s line %d: too many allow users.",
Damien Miller78928792000-04-12 20:17:38 +1000710 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000711 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100712 }
713 break;
714
715 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000716 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000717 if (options->num_deny_users >= MAX_DENY_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000718 fatal( "%s line %d: too many deny users.",
Damien Miller78928792000-04-12 20:17:38 +1000719 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000720 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100721 }
722 break;
723
724 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000725 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000726 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000727 fatal("%s line %d: too many allow groups.",
Damien Miller78928792000-04-12 20:17:38 +1000728 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000729 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100730 }
731 break;
732
733 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000734 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000735 if (options->num_deny_groups >= MAX_DENY_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000736 fatal("%s line %d: too many deny groups.",
Damien Miller78928792000-04-12 20:17:38 +1000737 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000738 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100739 }
740 break;
741
Damien Miller78928792000-04-12 20:17:38 +1000742 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000743 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000744 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000745 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000746 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000747 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000748 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000749 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000750 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000751 break;
752
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000753 case sMacs:
754 arg = strdelim(&cp);
755 if (!arg || *arg == '\0')
756 fatal("%s line %d: Missing argument.", filename, linenum);
757 if (!mac_valid(arg))
758 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
759 filename, linenum, arg ? arg : "<NONE>");
760 if (options->macs == NULL)
761 options->macs = xstrdup(arg);
762 break;
763
Damien Miller78928792000-04-12 20:17:38 +1000764 case sProtocol:
765 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000766 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000767 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000768 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000769 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000770 if (value == SSH_PROTO_UNKNOWN)
771 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000772 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000773 if (*intptr == SSH_PROTO_UNKNOWN)
774 *intptr = value;
775 break;
776
Damien Millerf6d9e222000-06-18 14:50:44 +1000777 case sSubsystem:
778 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
779 fatal("%s line %d: too many subsystems defined.",
780 filename, linenum);
781 }
Damien Millerbe484b52000-07-15 14:14:16 +1000782 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000783 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000784 fatal("%s line %d: Missing subsystem name.",
785 filename, linenum);
786 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000787 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000788 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000789 filename, linenum, arg);
790 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000791 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000792 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000793 fatal("%s line %d: Missing subsystem command.",
794 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000795 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000796 options->num_subsystems++;
797 break;
798
Damien Miller37023962000-07-11 17:31:38 +1000799 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000800 arg = strdelim(&cp);
801 if (!arg || *arg == '\0')
802 fatal("%s line %d: Missing MaxStartups spec.",
803 filename, linenum);
Damien Miller40857852001-07-14 12:17:33 +1000804 if ((n = sscanf(arg, "%d:%d:%d",
Damien Miller942da032000-08-18 13:59:06 +1000805 &options->max_startups_begin,
806 &options->max_startups_rate,
Damien Miller40857852001-07-14 12:17:33 +1000807 &options->max_startups)) == 3) {
Damien Miller942da032000-08-18 13:59:06 +1000808 if (options->max_startups_begin >
809 options->max_startups ||
810 options->max_startups_rate > 100 ||
811 options->max_startups_rate < 1)
Damien Miller40857852001-07-14 12:17:33 +1000812 fatal("%s line %d: Illegal MaxStartups spec.",
813 filename, linenum);
814 } else if (n != 1)
Damien Miller942da032000-08-18 13:59:06 +1000815 fatal("%s line %d: Illegal MaxStartups spec.",
Damien Miller40857852001-07-14 12:17:33 +1000816 filename, linenum);
817 else
818 options->max_startups = options->max_startups_begin;
819 break;
Damien Miller37023962000-07-11 17:31:38 +1000820
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000821 case sBanner:
822 charptr = &options->banner;
823 goto parse_filename;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000824 /*
825 * These options can contain %X options expanded at
826 * connect time, so that you can specify paths like:
827 *
828 * AuthorizedKeysFile /etc/ssh_keys/%u
829 */
830 case sAuthorizedKeysFile:
831 case sAuthorizedKeysFile2:
832 charptr = (opcode == sAuthorizedKeysFile ) ?
833 &options->authorized_keys_file :
834 &options->authorized_keys_file2;
835 goto parse_filename;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000836
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000837 case sClientAliveInterval:
838 intptr = &options->client_alive_interval;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000839 goto parse_time;
840
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000841 case sClientAliveCountMax:
842 intptr = &options->client_alive_count_max;
843 goto parse_int;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000844
Ben Lindstrom91e98682001-09-12 16:32:14 +0000845 case sDeprecated:
846 log("%s line %d: Deprecated option %s",
847 filename, linenum, arg);
848 while(arg)
849 arg = strdelim(&cp);
850 break;
851
Damien Millerf8154422001-04-25 22:44:14 +1000852 case sPAMAuthenticationViaKbdInt:
853 intptr = &options->pam_authentication_via_kbd_int;
854 goto parse_flag;
855
Damien Miller95def091999-11-25 00:26:21 +1100856 default:
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000857 fatal("%s line %d: Missing handler for opcode %s (%d)",
858 filename, linenum, arg, opcode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000859 }
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000860 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
861 fatal("%s line %d: garbage at end of line; \"%.200s\".",
862 filename, linenum, arg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000863 }
Damien Miller95def091999-11-25 00:26:21 +1100864 fclose(f);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000865 if (bad_options > 0)
866 fatal("%s: terminating, %d bad configuration options",
867 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000868}