blob: 6297143f10497c7a0d298bf2b43cd285706e5bd8 [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"
Ben Lindstrom91e98682001-09-12 16:32:14 +000013RCSID("$OpenBSD: servconf.c,v 1.89 2001/08/16 19:18:34 jakob 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;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000216 if (options->authorized_keys_file2 == NULL)
Kevin Steves27fd1922001-07-04 18:29:14 +0000217 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
Damien Millerf8154422001-04-25 22:44:14 +1000218 if (options->pam_authentication_via_kbd_int == -1)
219 options->pam_authentication_via_kbd_int = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220}
221
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100223typedef enum {
224 sBadOption, /* == unknown option */
225 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
226 sPermitRootLogin, sLogFacility, sLogLevel,
227 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Ben Lindstromec95ed92001-07-04 04:21:14 +0000228#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100229 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000231#if defined(AFS) || defined(KRB5)
232 sKerberosTgtPassing,
233#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234#ifdef AFS
Ben Lindstromec95ed92001-07-04 04:21:14 +0000235 sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000237 sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100238 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000239 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
240 sX11Forwarding, sX11DisplayOffset,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000241 sStrictModes, sEmptyPasswd, sKeepAlives,
Damien Miller50a41ed2000-10-16 12:14:42 +1100242 sUseLogin, sAllowTcpForwarding,
243 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000244 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100245 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000246 sBanner, sReverseMappingCheck, sHostbasedAuthentication,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000247 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000248 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000249 sDeprecated, sPAMAuthenticationViaKbdInt
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250} ServerOpCodes;
251
252/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100253static struct {
254 const char *name;
255 ServerOpCodes opcode;
256} keywords[] = {
257 { "port", sPort },
258 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100259 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000260 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100261 { "serverkeybits", sServerKeyBits },
262 { "logingracetime", sLoginGraceTime },
263 { "keyregenerationinterval", sKeyRegenerationTime },
264 { "permitrootlogin", sPermitRootLogin },
265 { "syslogfacility", sLogFacility },
266 { "loglevel", sLogLevel },
267 { "rhostsauthentication", sRhostsAuthentication },
268 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000269 { "hostbasedauthentication", sHostbasedAuthentication },
270 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100271 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100272 { "pubkeyauthentication", sPubkeyAuthentication },
273 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Ben Lindstromec95ed92001-07-04 04:21:14 +0000274#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100275 { "kerberosauthentication", sKerberosAuthentication },
276 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
277 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000279#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100280 { "kerberostgtpassing", sKerberosTgtPassing },
Ben Lindstromec95ed92001-07-04 04:21:14 +0000281#endif
282#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100283 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284#endif
Damien Miller95def091999-11-25 00:26:21 +1100285 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100286 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000287 { "challengeresponseauthentication", sChallengeResponseAuthentication },
288 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Ben Lindstrom91e98682001-09-12 16:32:14 +0000289 { "checkmail", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100290 { "listenaddress", sListenAddress },
291 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000292 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100293 { "ignorerhosts", sIgnoreRhosts },
294 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
295 { "x11forwarding", sX11Forwarding },
296 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000297 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100298 { "strictmodes", sStrictModes },
299 { "permitemptypasswords", sEmptyPasswd },
300 { "uselogin", sUseLogin },
Damien Miller95def091999-11-25 00:26:21 +1100301 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100302 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100303 { "allowusers", sAllowUsers },
304 { "denyusers", sDenyUsers },
305 { "allowgroups", sAllowGroups },
306 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000307 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000308 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000309 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000310 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000311 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000312 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000313 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100314 { "reversemappingcheck", sReverseMappingCheck },
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000315 { "clientaliveinterval", sClientAliveInterval },
316 { "clientalivecountmax", sClientAliveCountMax },
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000317 { "authorizedkeysfile", sAuthorizedKeysFile },
318 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
Damien Millerf8154422001-04-25 22:44:14 +1000319 { "PAMAuthenticationViaKbdInt", sPAMAuthenticationViaKbdInt },
Damien Miller95def091999-11-25 00:26:21 +1100320 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321};
322
Damien Miller5428f641999-11-25 11:54:57 +1100323/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000324 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100325 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Damien Miller4af51302000-04-16 11:18:38 +1000327static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100328parse_token(const char *cp, const char *filename,
329 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000331 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332
Damien Miller95def091999-11-25 00:26:21 +1100333 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100334 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100335 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000337 error("%s: line %d: Bad configuration option: %s",
338 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100339 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340}
341
Ben Lindstrombba81212001-06-25 05:01:22 +0000342static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000343add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100344{
Damien Miller34132e52000-01-14 15:45:46 +1100345 int i;
346
347 if (options->num_ports == 0)
348 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000349 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000350 for (i = 0; i < options->num_ports; i++)
351 add_one_listen_addr(options, addr, options->ports[i]);
352 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000353 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000354}
355
Ben Lindstrombba81212001-06-25 05:01:22 +0000356static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000357add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
358{
359 struct addrinfo hints, *ai, *aitop;
360 char strport[NI_MAXSERV];
361 int gaierr;
362
363 memset(&hints, 0, sizeof(hints));
364 hints.ai_family = IPv4or6;
365 hints.ai_socktype = SOCK_STREAM;
366 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
367 snprintf(strport, sizeof strport, "%d", port);
368 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
369 fatal("bad addr or host: %s (%s)",
370 addr ? addr : "<NULL>",
371 gai_strerror(gaierr));
372 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
373 ;
374 ai->ai_next = options->listen_addrs;
375 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100376}
377
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378/* Reads the server configuration file. */
379
Damien Miller4af51302000-04-16 11:18:38 +1000380void
Damien Miller95def091999-11-25 00:26:21 +1100381read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382{
Damien Miller95def091999-11-25 00:26:21 +1100383 FILE *f;
384 char line[1024];
Ben Lindstromc510af42001-04-07 17:25:48 +0000385 char *cp, **charptr, *arg, *p;
Damien Miller95def091999-11-25 00:26:21 +1100386 int linenum, *intptr, value;
387 int bad_options = 0;
388 ServerOpCodes opcode;
Damien Miller40857852001-07-14 12:17:33 +1000389 int i, n;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390
Damien Miller95def091999-11-25 00:26:21 +1100391 f = fopen(filename, "r");
392 if (!f) {
393 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100395 }
396 linenum = 0;
397 while (fgets(line, sizeof(line), f)) {
398 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000399 cp = line;
400 arg = strdelim(&cp);
401 /* Ignore leading whitespace */
402 if (*arg == '\0')
403 arg = strdelim(&cp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000404 if (!arg || !*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100405 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100406 intptr = NULL;
407 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000408 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100409 switch (opcode) {
410 case sBadOption:
411 bad_options++;
412 continue;
413 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100414 /* ignore ports from configfile if cmdline specifies ports */
415 if (options->ports_from_cmdline)
416 continue;
417 if (options->listen_addrs != NULL)
418 fatal("%s line %d: ports must be specified before "
Ben Lindstroma6218b82001-05-03 22:39:11 +0000419 "ListenAdress.", filename, linenum);
Damien Miller34132e52000-01-14 15:45:46 +1100420 if (options->num_ports >= MAX_PORTS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000421 fatal("%s line %d: too many ports.",
Damien Miller4af51302000-04-16 11:18:38 +1000422 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000423 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000424 if (!arg || *arg == '\0')
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000425 fatal("%s line %d: missing port number.",
Damien Miller34132e52000-01-14 15:45:46 +1100426 filename, linenum);
Ben Lindstrom19066a12001-04-12 23:39:26 +0000427 options->ports[options->num_ports++] = a2port(arg);
428 if (options->ports[options->num_ports-1] == 0)
429 fatal("%s line %d: Badly formatted port number.",
430 filename, linenum);
Damien Miller34132e52000-01-14 15:45:46 +1100431 break;
432
433 case sServerKeyBits:
434 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100435parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000436 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000437 if (!arg || *arg == '\0')
438 fatal("%s line %d: missing integer value.",
439 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000440 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100441 if (*intptr == -1)
442 *intptr = value;
443 break;
Damien Miller32265091999-11-12 11:33:04 +1100444
Damien Miller95def091999-11-25 00:26:21 +1100445 case sLoginGraceTime:
446 intptr = &options->login_grace_time;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000447parse_time:
448 arg = strdelim(&cp);
449 if (!arg || *arg == '\0')
450 fatal("%s line %d: missing time value.",
451 filename, linenum);
452 if ((value = convtime(arg)) == -1)
453 fatal("%s line %d: invalid time value.",
454 filename, linenum);
455 if (*intptr == -1)
456 *intptr = value;
457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458
459 case sKeyRegenerationTime:
460 intptr = &options->key_regeneration_time;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000461 goto parse_time;
Damien Miller95def091999-11-25 00:26:21 +1100462
463 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000464 arg = strdelim(&cp);
Ben Lindstromc510af42001-04-07 17:25:48 +0000465 if (!arg || *arg == '\0' || strncmp(arg, "[]", 2) == 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000466 fatal("%s line %d: missing inet addr.",
Damien Miller34132e52000-01-14 15:45:46 +1100467 filename, linenum);
Ben Lindstromc510af42001-04-07 17:25:48 +0000468 if (*arg == '[') {
469 if ((p = strchr(arg, ']')) == NULL)
470 fatal("%s line %d: bad ipv6 inet addr usage.",
471 filename, linenum);
472 arg++;
473 memmove(p, p+1, strlen(p+1)+1);
474 } else if (((p = strchr(arg, ':')) == NULL) ||
475 (strchr(p+1, ':') != NULL)) {
Ben Lindstrom19066a12001-04-12 23:39:26 +0000476 add_listen_addr(options, arg, 0);
Ben Lindstromc510af42001-04-07 17:25:48 +0000477 break;
478 }
479 if (*p == ':') {
Ben Lindstrom19066a12001-04-12 23:39:26 +0000480 u_short port;
481
Ben Lindstromc510af42001-04-07 17:25:48 +0000482 p++;
483 if (*p == '\0')
484 fatal("%s line %d: bad inet addr:port usage.",
485 filename, linenum);
486 else {
487 *(p-1) = '\0';
Ben Lindstrom19066a12001-04-12 23:39:26 +0000488 if ((port = a2port(p)) == 0)
489 fatal("%s line %d: bad port number.",
490 filename, linenum);
491 add_listen_addr(options, arg, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000492 }
493 } else if (*p == '\0')
Ben Lindstrom19066a12001-04-12 23:39:26 +0000494 add_listen_addr(options, arg, 0);
Ben Lindstromc510af42001-04-07 17:25:48 +0000495 else
496 fatal("%s line %d: bad inet addr usage.",
497 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100498 break;
499
500 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501 intptr = &options->num_host_key_files;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000502 if (*intptr >= MAX_HOSTKEYS)
503 fatal("%s line %d: too many host keys specified (max %d).",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100504 filename, linenum, MAX_HOSTKEYS);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100505 charptr = &options->host_key_files[*intptr];
Damien Millerd3a18572000-06-07 19:55:44 +1000506parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000507 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000508 if (!arg || *arg == '\0')
509 fatal("%s line %d: missing file name.",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000510 filename, linenum);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100511 if (*charptr == NULL) {
Damien Miller37023962000-07-11 17:31:38 +1000512 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller0bc1bd82000-11-13 22:57:25 +1100513 /* increase optional counter */
514 if (intptr != NULL)
515 *intptr = *intptr + 1;
516 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000517 break;
518
519 case sPidFile:
520 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000521 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100522
Damien Miller95def091999-11-25 00:26:21 +1100523 case sPermitRootLogin:
524 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000525 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000526 if (!arg || *arg == '\0')
527 fatal("%s line %d: missing yes/"
Ben Lindstrom35f1f4e2001-03-06 01:02:41 +0000528 "without-password/forced-commands-only/no "
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000529 "argument.", filename, linenum);
530 value = 0; /* silence compiler */
Damien Miller37023962000-07-11 17:31:38 +1000531 if (strcmp(arg, "without-password") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000532 value = PERMIT_NO_PASSWD;
533 else if (strcmp(arg, "forced-commands-only") == 0)
534 value = PERMIT_FORCED_ONLY;
Damien Miller37023962000-07-11 17:31:38 +1000535 else if (strcmp(arg, "yes") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000536 value = PERMIT_YES;
Damien Miller37023962000-07-11 17:31:38 +1000537 else if (strcmp(arg, "no") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000538 value = PERMIT_NO;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000539 else
540 fatal("%s line %d: Bad yes/"
Ben Lindstromd8a90212001-02-15 03:08:27 +0000541 "without-password/forced-commands-only/no "
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000542 "argument: %s", filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100543 if (*intptr == -1)
544 *intptr = value;
545 break;
546
547 case sIgnoreRhosts:
548 intptr = &options->ignore_rhosts;
549parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000550 arg = strdelim(&cp);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000551 if (!arg || *arg == '\0')
552 fatal("%s line %d: missing yes/no argument.",
553 filename, linenum);
554 value = 0; /* silence compiler */
Damien Miller37023962000-07-11 17:31:38 +1000555 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100556 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000557 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100558 value = 0;
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000559 else
560 fatal("%s line %d: Bad yes/no argument: %s",
Damien Miller37023962000-07-11 17:31:38 +1000561 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100562 if (*intptr == -1)
563 *intptr = value;
564 break;
565
566 case sIgnoreUserKnownHosts:
567 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100568 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100569
570 case sRhostsAuthentication:
571 intptr = &options->rhosts_authentication;
572 goto parse_flag;
573
574 case sRhostsRSAAuthentication:
575 intptr = &options->rhosts_rsa_authentication;
576 goto parse_flag;
577
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000578 case sHostbasedAuthentication:
579 intptr = &options->hostbased_authentication;
580 goto parse_flag;
581
582 case sHostbasedUsesNameFromPacketOnly:
583 intptr = &options->hostbased_uses_name_from_packet_only;
584 goto parse_flag;
585
Damien Miller95def091999-11-25 00:26:21 +1100586 case sRSAAuthentication:
587 intptr = &options->rsa_authentication;
588 goto parse_flag;
589
Damien Miller0bc1bd82000-11-13 22:57:25 +1100590 case sPubkeyAuthentication:
591 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000592 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000593#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100594 case sKerberosAuthentication:
595 intptr = &options->kerberos_authentication;
596 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller95def091999-11-25 00:26:21 +1100598 case sKerberosOrLocalPasswd:
599 intptr = &options->kerberos_or_local_passwd;
600 goto parse_flag;
601
602 case sKerberosTicketCleanup:
603 intptr = &options->kerberos_ticket_cleanup;
604 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000606#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100607 case sKerberosTgtPassing:
608 intptr = &options->kerberos_tgt_passing;
609 goto parse_flag;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000610#endif
611#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100612 case sAFSTokenPassing:
613 intptr = &options->afs_token_passing;
614 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615#endif
616
Damien Miller95def091999-11-25 00:26:21 +1100617 case sPasswordAuthentication:
618 intptr = &options->password_authentication;
619 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Damien Miller874d77b2000-10-14 16:23:11 +1100621 case sKbdInteractiveAuthentication:
622 intptr = &options->kbd_interactive_authentication;
623 goto parse_flag;
624
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000625 case sChallengeResponseAuthentication:
Ben Lindstrom551ea372001-06-05 18:56:16 +0000626 intptr = &options->challenge_response_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100627 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 case sPrintMotd:
630 intptr = &options->print_motd;
631 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000633 case sPrintLastLog:
634 intptr = &options->print_lastlog;
635 goto parse_flag;
636
Damien Miller95def091999-11-25 00:26:21 +1100637 case sX11Forwarding:
638 intptr = &options->x11_forwarding;
639 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Damien Miller95def091999-11-25 00:26:21 +1100641 case sX11DisplayOffset:
642 intptr = &options->x11_display_offset;
643 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644
Damien Millerd3a18572000-06-07 19:55:44 +1000645 case sXAuthLocation:
646 charptr = &options->xauth_location;
647 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000648
Damien Miller95def091999-11-25 00:26:21 +1100649 case sStrictModes:
650 intptr = &options->strict_modes;
651 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652
Damien Miller95def091999-11-25 00:26:21 +1100653 case sKeepAlives:
654 intptr = &options->keepalives;
655 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656
Damien Miller95def091999-11-25 00:26:21 +1100657 case sEmptyPasswd:
658 intptr = &options->permit_empty_passwd;
659 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660
Damien Miller95def091999-11-25 00:26:21 +1100661 case sUseLogin:
662 intptr = &options->use_login;
663 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100664
Damien Millere247cc42000-05-07 12:03:14 +1000665 case sGatewayPorts:
666 intptr = &options->gateway_ports;
667 goto parse_flag;
668
Damien Miller33804262001-02-04 23:20:18 +1100669 case sReverseMappingCheck:
670 intptr = &options->reverse_mapping_check;
671 goto parse_flag;
672
Damien Miller95def091999-11-25 00:26:21 +1100673 case sLogFacility:
674 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000675 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000676 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100677 if (value == (SyslogFacility) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000678 fatal("%.200s line %d: unsupported log facility '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000679 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100680 if (*intptr == -1)
681 *intptr = (SyslogFacility) value;
682 break;
683
684 case sLogLevel:
685 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000686 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000687 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100688 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000689 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000690 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100691 if (*intptr == -1)
692 *intptr = (LogLevel) value;
693 break;
694
Damien Miller50a41ed2000-10-16 12:14:42 +1100695 case sAllowTcpForwarding:
696 intptr = &options->allow_tcp_forwarding;
697 goto parse_flag;
698
Damien Miller95def091999-11-25 00:26:21 +1100699 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000700 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000701 if (options->num_allow_users >= MAX_ALLOW_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000702 fatal("%s line %d: too many allow users.",
Damien Miller78928792000-04-12 20:17:38 +1000703 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000704 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100705 }
706 break;
707
708 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000709 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000710 if (options->num_deny_users >= MAX_DENY_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000711 fatal( "%s line %d: too many deny users.",
Damien Miller78928792000-04-12 20:17:38 +1000712 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000713 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100714 }
715 break;
716
717 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000718 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000719 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000720 fatal("%s line %d: too many allow groups.",
Damien Miller78928792000-04-12 20:17:38 +1000721 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000722 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100723 }
724 break;
725
726 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000727 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000728 if (options->num_deny_groups >= MAX_DENY_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000729 fatal("%s line %d: too many deny groups.",
Damien Miller78928792000-04-12 20:17:38 +1000730 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000731 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100732 }
733 break;
734
Damien Miller78928792000-04-12 20:17:38 +1000735 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000736 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000737 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000738 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000739 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000740 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000741 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000742 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000743 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000744 break;
745
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000746 case sMacs:
747 arg = strdelim(&cp);
748 if (!arg || *arg == '\0')
749 fatal("%s line %d: Missing argument.", filename, linenum);
750 if (!mac_valid(arg))
751 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
752 filename, linenum, arg ? arg : "<NONE>");
753 if (options->macs == NULL)
754 options->macs = xstrdup(arg);
755 break;
756
Damien Miller78928792000-04-12 20:17:38 +1000757 case sProtocol:
758 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000759 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000760 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000761 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000762 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000763 if (value == SSH_PROTO_UNKNOWN)
764 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000765 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000766 if (*intptr == SSH_PROTO_UNKNOWN)
767 *intptr = value;
768 break;
769
Damien Millerf6d9e222000-06-18 14:50:44 +1000770 case sSubsystem:
771 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
772 fatal("%s line %d: too many subsystems defined.",
773 filename, linenum);
774 }
Damien Millerbe484b52000-07-15 14:14:16 +1000775 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000776 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000777 fatal("%s line %d: Missing subsystem name.",
778 filename, linenum);
779 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000780 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000781 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000782 filename, linenum, arg);
783 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000784 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000785 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000786 fatal("%s line %d: Missing subsystem command.",
787 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000788 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000789 options->num_subsystems++;
790 break;
791
Damien Miller37023962000-07-11 17:31:38 +1000792 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000793 arg = strdelim(&cp);
794 if (!arg || *arg == '\0')
795 fatal("%s line %d: Missing MaxStartups spec.",
796 filename, linenum);
Damien Miller40857852001-07-14 12:17:33 +1000797 if ((n = sscanf(arg, "%d:%d:%d",
Damien Miller942da032000-08-18 13:59:06 +1000798 &options->max_startups_begin,
799 &options->max_startups_rate,
Damien Miller40857852001-07-14 12:17:33 +1000800 &options->max_startups)) == 3) {
Damien Miller942da032000-08-18 13:59:06 +1000801 if (options->max_startups_begin >
802 options->max_startups ||
803 options->max_startups_rate > 100 ||
804 options->max_startups_rate < 1)
Damien Miller40857852001-07-14 12:17:33 +1000805 fatal("%s line %d: Illegal MaxStartups spec.",
806 filename, linenum);
807 } else if (n != 1)
Damien Miller942da032000-08-18 13:59:06 +1000808 fatal("%s line %d: Illegal MaxStartups spec.",
Damien Miller40857852001-07-14 12:17:33 +1000809 filename, linenum);
810 else
811 options->max_startups = options->max_startups_begin;
812 break;
Damien Miller37023962000-07-11 17:31:38 +1000813
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000814 case sBanner:
815 charptr = &options->banner;
816 goto parse_filename;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000817 /*
818 * These options can contain %X options expanded at
819 * connect time, so that you can specify paths like:
820 *
821 * AuthorizedKeysFile /etc/ssh_keys/%u
822 */
823 case sAuthorizedKeysFile:
824 case sAuthorizedKeysFile2:
825 charptr = (opcode == sAuthorizedKeysFile ) ?
826 &options->authorized_keys_file :
827 &options->authorized_keys_file2;
828 goto parse_filename;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000829
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000830 case sClientAliveInterval:
831 intptr = &options->client_alive_interval;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000832 goto parse_time;
833
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000834 case sClientAliveCountMax:
835 intptr = &options->client_alive_count_max;
836 goto parse_int;
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000837
Ben Lindstrom91e98682001-09-12 16:32:14 +0000838 case sDeprecated:
839 log("%s line %d: Deprecated option %s",
840 filename, linenum, arg);
841 while(arg)
842 arg = strdelim(&cp);
843 break;
844
Damien Millerf8154422001-04-25 22:44:14 +1000845 case sPAMAuthenticationViaKbdInt:
846 intptr = &options->pam_authentication_via_kbd_int;
847 goto parse_flag;
848
Damien Miller95def091999-11-25 00:26:21 +1100849 default:
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000850 fatal("%s line %d: Missing handler for opcode %s (%d)",
851 filename, linenum, arg, opcode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000852 }
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000853 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
854 fatal("%s line %d: garbage at end of line; \"%.200s\".",
855 filename, linenum, arg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856 }
Damien Miller95def091999-11-25 00:26:21 +1100857 fclose(f);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000858 if (bad_options > 0)
859 fatal("%s: terminating, %d bad configuration options",
860 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861}