blob: 76a80499d042549124387f18ddb2bfda54ee6ffc [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 Miller9f0f5c62001-12-21 14:45:46 +110013RCSID("$OpenBSD: servconf.c,v 1.95 2001/12/19 07:18:56 deraadt 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 Miller726273e2001-11-12 11:40:11 +110046
47 /* Portable-specific options */
48 options->pam_authentication_via_kbd_int = -1;
49
50 /* Standard Options */
Damien Miller34132e52000-01-14 15:45:46 +110051 options->num_ports = 0;
52 options->ports_from_cmdline = 0;
53 options->listen_addrs = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +110054 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100055 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110056 options->server_key_bits = -1;
57 options->login_grace_time = -1;
58 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000059 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110060 options->ignore_rhosts = -1;
61 options->ignore_user_known_hosts = -1;
62 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000063 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110064 options->x11_forwarding = -1;
65 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100066 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110067 options->strict_modes = -1;
68 options->keepalives = -1;
69 options->log_facility = (SyslogFacility) - 1;
70 options->log_level = (LogLevel) - 1;
71 options->rhosts_authentication = -1;
72 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000073 options->hostbased_authentication = -1;
74 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110075 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110076 options->pubkey_authentication = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +000077#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +110078 options->kerberos_authentication = -1;
79 options->kerberos_or_local_passwd = -1;
80 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +000082#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +110083 options->kerberos_tgt_passing = -1;
Ben Lindstromec95ed92001-07-04 04:21:14 +000084#endif
85#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110086 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087#endif
Damien Miller95def091999-11-25 00:26:21 +110088 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110089 options->kbd_interactive_authentication = -1;
Ben Lindstrom551ea372001-06-05 18:56:16 +000090 options->challenge_response_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110091 options->permit_empty_passwd = -1;
92 options->use_login = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110093 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110094 options->num_allow_users = 0;
95 options->num_deny_users = 0;
96 options->num_allow_groups = 0;
97 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100098 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000099 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +1000100 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +1000101 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +1000102 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +1000103 options->max_startups_begin = -1;
104 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000105 options->max_startups = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000106 options->banner = NULL;
Damien Miller33804262001-02-04 23:20:18 +1100107 options->reverse_mapping_check = -1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000108 options->client_alive_interval = -1;
109 options->client_alive_count_max = -1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000110 options->authorized_keys_file = NULL;
111 options->authorized_keys_file2 = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112}
113
Damien Miller4af51302000-04-16 11:18:38 +1000114void
Damien Miller95def091999-11-25 00:26:21 +1100115fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116{
Damien Miller726273e2001-11-12 11:40:11 +1100117 /* Portable-specific options */
118 if (options->pam_authentication_via_kbd_int == -1)
119 options->pam_authentication_via_kbd_int = 0;
120
121 /* Standard Options */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100122 if (options->protocol == SSH_PROTO_UNKNOWN)
123 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
124 if (options->num_host_key_files == 0) {
125 /* fill default hostkeys for protocols */
126 if (options->protocol & SSH_PROTO_1)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000127 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100128 if (options->protocol & SSH_PROTO_2)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000129 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_DSA_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 }
Damien Miller34132e52000-01-14 15:45:46 +1100131 if (options->num_ports == 0)
132 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
133 if (options->listen_addrs == NULL)
Ben Lindstrom19066a12001-04-12 23:39:26 +0000134 add_listen_addr(options, NULL, 0);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000135 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100137 if (options->server_key_bits == -1)
138 options->server_key_bits = 768;
139 if (options->login_grace_time == -1)
140 options->login_grace_time = 600;
141 if (options->key_regeneration_time == -1)
142 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000143 if (options->permit_root_login == PERMIT_NOT_SET)
144 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100145 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100146 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100147 if (options->ignore_user_known_hosts == -1)
148 options->ignore_user_known_hosts = 0;
Damien Miller95def091999-11-25 00:26:21 +1100149 if (options->print_motd == -1)
150 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000151 if (options->print_lastlog == -1)
152 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100153 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100154 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100156 options->x11_display_offset = 10;
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000157#ifdef _PATH_XAUTH
Damien Millerd3a18572000-06-07 19:55:44 +1000158 if (options->xauth_location == NULL)
Ben Lindstrom1bf11f62001-06-09 01:48:01 +0000159 options->xauth_location = _PATH_XAUTH;
160#endif
Damien Miller95def091999-11-25 00:26:21 +1100161 if (options->strict_modes == -1)
162 options->strict_modes = 1;
163 if (options->keepalives == -1)
164 options->keepalives = 1;
165 if (options->log_facility == (SyslogFacility) (-1))
166 options->log_facility = SYSLOG_FACILITY_AUTH;
167 if (options->log_level == (LogLevel) (-1))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000168 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100169 if (options->rhosts_authentication == -1)
170 options->rhosts_authentication = 0;
171 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100172 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000173 if (options->hostbased_authentication == -1)
174 options->hostbased_authentication = 0;
175 if (options->hostbased_uses_name_from_packet_only == -1)
176 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100177 if (options->rsa_authentication == -1)
178 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100179 if (options->pubkey_authentication == -1)
180 options->pubkey_authentication = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000181#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100182 if (options->kerberos_authentication == -1)
183 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
184 if (options->kerberos_or_local_passwd == -1)
185 options->kerberos_or_local_passwd = 1;
186 if (options->kerberos_ticket_cleanup == -1)
187 options->kerberos_ticket_cleanup = 1;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000188#endif
189#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100190 if (options->kerberos_tgt_passing == -1)
191 options->kerberos_tgt_passing = 0;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000192#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100193#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100194 if (options->afs_token_passing == -1)
195 options->afs_token_passing = k_hasafs();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000196#endif
Damien Miller95def091999-11-25 00:26:21 +1100197 if (options->password_authentication == -1)
198 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100199 if (options->kbd_interactive_authentication == -1)
200 options->kbd_interactive_authentication = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000201 if (options->challenge_response_authentication == -1)
202 options->challenge_response_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100203 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100204 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100205 if (options->use_login == -1)
206 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100207 if (options->allow_tcp_forwarding == -1)
208 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000209 if (options->gateway_ports == -1)
210 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000211 if (options->max_startups == -1)
212 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000213 if (options->max_startups_rate == -1)
214 options->max_startups_rate = 100; /* 100% */
215 if (options->max_startups_begin == -1)
216 options->max_startups_begin = options->max_startups;
Damien Miller33804262001-02-04 23:20:18 +1100217 if (options->reverse_mapping_check == -1)
218 options->reverse_mapping_check = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000219 if (options->client_alive_interval == -1)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100220 options->client_alive_interval = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000221 if (options->client_alive_count_max == -1)
222 options->client_alive_count_max = 3;
Damien Miller75413ac2001-11-12 11:14:35 +1100223 if (options->authorized_keys_file2 == NULL) {
224 /* authorized_keys_file2 falls back to authorized_keys_file */
225 if (options->authorized_keys_file != NULL)
226 options->authorized_keys_file2 = options->authorized_keys_file;
227 else
228 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
229 }
230 if (options->authorized_keys_file == NULL)
231 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232}
233
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100235typedef enum {
236 sBadOption, /* == unknown option */
Damien Miller726273e2001-11-12 11:40:11 +1100237 /* Portable-specific options */
238 sPAMAuthenticationViaKbdInt,
239 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100240 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
241 sPermitRootLogin, sLogFacility, sLogLevel,
242 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Ben Lindstromec95ed92001-07-04 04:21:14 +0000243#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100244 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000246#if defined(AFS) || defined(KRB5)
247 sKerberosTgtPassing,
248#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249#ifdef AFS
Ben Lindstromec95ed92001-07-04 04:21:14 +0000250 sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000252 sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100253 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000254 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
255 sX11Forwarding, sX11DisplayOffset,
Ben Lindstrom91e98682001-09-12 16:32:14 +0000256 sStrictModes, sEmptyPasswd, sKeepAlives,
Damien Miller50a41ed2000-10-16 12:14:42 +1100257 sUseLogin, sAllowTcpForwarding,
258 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000259 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100260 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000261 sBanner, sReverseMappingCheck, sHostbasedAuthentication,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100262 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000263 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
Ben Lindstromade03f62001-12-06 18:22:17 +0000264 sDeprecated
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265} ServerOpCodes;
266
267/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100268static struct {
269 const char *name;
270 ServerOpCodes opcode;
271} keywords[] = {
Damien Miller726273e2001-11-12 11:40:11 +1100272 /* Portable-specific options */
273 { "PAMAuthenticationViaKbdInt", sPAMAuthenticationViaKbdInt },
274 /* Standard Options */
Damien Miller95def091999-11-25 00:26:21 +1100275 { "port", sPort },
276 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100277 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000278 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100279 { "serverkeybits", sServerKeyBits },
280 { "logingracetime", sLoginGraceTime },
281 { "keyregenerationinterval", sKeyRegenerationTime },
282 { "permitrootlogin", sPermitRootLogin },
283 { "syslogfacility", sLogFacility },
284 { "loglevel", sLogLevel },
285 { "rhostsauthentication", sRhostsAuthentication },
286 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000287 { "hostbasedauthentication", sHostbasedAuthentication },
288 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100289 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100290 { "pubkeyauthentication", sPubkeyAuthentication },
291 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Ben Lindstromec95ed92001-07-04 04:21:14 +0000292#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100293 { "kerberosauthentication", sKerberosAuthentication },
294 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
295 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +0000297#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +1100298 { "kerberostgtpassing", sKerberosTgtPassing },
Ben Lindstromec95ed92001-07-04 04:21:14 +0000299#endif
300#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100301 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302#endif
Damien Miller95def091999-11-25 00:26:21 +1100303 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100304 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000305 { "challengeresponseauthentication", sChallengeResponseAuthentication },
306 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Ben Lindstrom91e98682001-09-12 16:32:14 +0000307 { "checkmail", sDeprecated },
Damien Miller95def091999-11-25 00:26:21 +1100308 { "listenaddress", sListenAddress },
309 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000310 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100311 { "ignorerhosts", sIgnoreRhosts },
312 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
313 { "x11forwarding", sX11Forwarding },
314 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000315 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100316 { "strictmodes", sStrictModes },
317 { "permitemptypasswords", sEmptyPasswd },
318 { "uselogin", sUseLogin },
Damien Miller95def091999-11-25 00:26:21 +1100319 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100320 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100321 { "allowusers", sAllowUsers },
322 { "denyusers", sDenyUsers },
323 { "allowgroups", sAllowGroups },
324 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000325 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000326 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000327 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000328 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000329 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000330 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000331 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100332 { "reversemappingcheck", sReverseMappingCheck },
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000333 { "clientaliveinterval", sClientAliveInterval },
334 { "clientalivecountmax", sClientAliveCountMax },
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000335 { "authorizedkeysfile", sAuthorizedKeysFile },
336 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
Ben Lindstrom65366a82001-12-06 16:32:47 +0000337 { NULL, sBadOption }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338};
339
Damien Miller5428f641999-11-25 11:54:57 +1100340/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000341 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100342 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller4af51302000-04-16 11:18:38 +1000344static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100345parse_token(const char *cp, const char *filename,
346 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000348 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349
Damien Miller95def091999-11-25 00:26:21 +1100350 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100351 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100352 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000354 error("%s: line %d: Bad configuration option: %s",
355 filename, linenum, cp);
Damien Miller95def091999-11-25 00:26:21 +1100356 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357}
358
Ben Lindstrombba81212001-06-25 05:01:22 +0000359static void
Ben Lindstrom19066a12001-04-12 23:39:26 +0000360add_listen_addr(ServerOptions *options, char *addr, u_short port)
Damien Miller34132e52000-01-14 15:45:46 +1100361{
Damien Miller34132e52000-01-14 15:45:46 +1100362 int i;
363
364 if (options->num_ports == 0)
365 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000366 if (port == 0)
Ben Lindstromc510af42001-04-07 17:25:48 +0000367 for (i = 0; i < options->num_ports; i++)
368 add_one_listen_addr(options, addr, options->ports[i]);
369 else
Ben Lindstrom19066a12001-04-12 23:39:26 +0000370 add_one_listen_addr(options, addr, port);
Ben Lindstromc510af42001-04-07 17:25:48 +0000371}
372
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static void
Ben Lindstromc510af42001-04-07 17:25:48 +0000374add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
375{
376 struct addrinfo hints, *ai, *aitop;
377 char strport[NI_MAXSERV];
378 int gaierr;
379
380 memset(&hints, 0, sizeof(hints));
381 hints.ai_family = IPv4or6;
382 hints.ai_socktype = SOCK_STREAM;
383 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
384 snprintf(strport, sizeof strport, "%d", port);
385 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
386 fatal("bad addr or host: %s (%s)",
387 addr ? addr : "<NULL>",
388 gai_strerror(gaierr));
389 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
390 ;
391 ai->ai_next = options->listen_addrs;
392 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100393}
394
Ben Lindstromade03f62001-12-06 18:22:17 +0000395int
396process_server_config_line(ServerOptions *options, char *line,
397 const char *filename, int linenum)
398{
399 char *cp, **charptr, *arg, *p;
400 int *intptr, value;
401 ServerOpCodes opcode;
402 int i, n;
403
404 cp = line;
405 arg = strdelim(&cp);
406 /* Ignore leading whitespace */
407 if (*arg == '\0')
408 arg = strdelim(&cp);
409 if (!arg || !*arg || *arg == '#')
410 return 0;
411 intptr = NULL;
412 charptr = NULL;
413 opcode = parse_token(arg, filename, linenum);
414 switch (opcode) {
415 /* Portable-specific options */
416 case sPAMAuthenticationViaKbdInt:
417 intptr = &options->pam_authentication_via_kbd_int;
418 goto parse_flag;
419
420 /* Standard Options */
421 case sBadOption:
422 return -1;
423 case sPort:
424 /* ignore ports from configfile if cmdline specifies ports */
425 if (options->ports_from_cmdline)
426 return 0;
427 if (options->listen_addrs != NULL)
428 fatal("%s line %d: ports must be specified before "
429 "ListenAdress.", filename, linenum);
430 if (options->num_ports >= MAX_PORTS)
431 fatal("%s line %d: too many ports.",
432 filename, linenum);
433 arg = strdelim(&cp);
434 if (!arg || *arg == '\0')
435 fatal("%s line %d: missing port number.",
436 filename, linenum);
437 options->ports[options->num_ports++] = a2port(arg);
438 if (options->ports[options->num_ports-1] == 0)
439 fatal("%s line %d: Badly formatted port number.",
440 filename, linenum);
441 break;
442
443 case sServerKeyBits:
444 intptr = &options->server_key_bits;
445parse_int:
446 arg = strdelim(&cp);
447 if (!arg || *arg == '\0')
448 fatal("%s line %d: missing integer value.",
449 filename, linenum);
450 value = atoi(arg);
451 if (*intptr == -1)
452 *intptr = value;
453 break;
454
455 case sLoginGraceTime:
456 intptr = &options->login_grace_time;
457parse_time:
458 arg = strdelim(&cp);
459 if (!arg || *arg == '\0')
460 fatal("%s line %d: missing time value.",
461 filename, linenum);
462 if ((value = convtime(arg)) == -1)
463 fatal("%s line %d: invalid time value.",
464 filename, linenum);
465 if (*intptr == -1)
466 *intptr = value;
467 break;
468
469 case sKeyRegenerationTime:
470 intptr = &options->key_regeneration_time;
471 goto parse_time;
472
473 case sListenAddress:
474 arg = strdelim(&cp);
475 if (!arg || *arg == '\0' || strncmp(arg, "[]", 2) == 0)
476 fatal("%s line %d: missing inet addr.",
477 filename, linenum);
478 if (*arg == '[') {
479 if ((p = strchr(arg, ']')) == NULL)
480 fatal("%s line %d: bad ipv6 inet addr usage.",
481 filename, linenum);
482 arg++;
483 memmove(p, p+1, strlen(p+1)+1);
484 } else if (((p = strchr(arg, ':')) == NULL) ||
485 (strchr(p+1, ':') != NULL)) {
486 add_listen_addr(options, arg, 0);
487 break;
488 }
489 if (*p == ':') {
490 u_short port;
491
492 p++;
493 if (*p == '\0')
494 fatal("%s line %d: bad inet addr:port usage.",
495 filename, linenum);
496 else {
497 *(p-1) = '\0';
498 if ((port = a2port(p)) == 0)
499 fatal("%s line %d: bad port number.",
500 filename, linenum);
501 add_listen_addr(options, arg, port);
502 }
503 } else if (*p == '\0')
504 add_listen_addr(options, arg, 0);
505 else
506 fatal("%s line %d: bad inet addr usage.",
507 filename, linenum);
508 break;
509
510 case sHostKeyFile:
511 intptr = &options->num_host_key_files;
512 if (*intptr >= MAX_HOSTKEYS)
513 fatal("%s line %d: too many host keys specified (max %d).",
514 filename, linenum, MAX_HOSTKEYS);
515 charptr = &options->host_key_files[*intptr];
516parse_filename:
517 arg = strdelim(&cp);
518 if (!arg || *arg == '\0')
519 fatal("%s line %d: missing file name.",
520 filename, linenum);
521 if (*charptr == NULL) {
522 *charptr = tilde_expand_filename(arg, getuid());
523 /* increase optional counter */
524 if (intptr != NULL)
525 *intptr = *intptr + 1;
526 }
527 break;
528
529 case sPidFile:
530 charptr = &options->pid_file;
531 goto parse_filename;
532
533 case sPermitRootLogin:
534 intptr = &options->permit_root_login;
535 arg = strdelim(&cp);
536 if (!arg || *arg == '\0')
537 fatal("%s line %d: missing yes/"
538 "without-password/forced-commands-only/no "
539 "argument.", filename, linenum);
540 value = 0; /* silence compiler */
541 if (strcmp(arg, "without-password") == 0)
542 value = PERMIT_NO_PASSWD;
543 else if (strcmp(arg, "forced-commands-only") == 0)
544 value = PERMIT_FORCED_ONLY;
545 else if (strcmp(arg, "yes") == 0)
546 value = PERMIT_YES;
547 else if (strcmp(arg, "no") == 0)
548 value = PERMIT_NO;
549 else
550 fatal("%s line %d: Bad yes/"
551 "without-password/forced-commands-only/no "
552 "argument: %s", filename, linenum, arg);
553 if (*intptr == -1)
554 *intptr = value;
555 break;
556
557 case sIgnoreRhosts:
558 intptr = &options->ignore_rhosts;
559parse_flag:
560 arg = strdelim(&cp);
561 if (!arg || *arg == '\0')
562 fatal("%s line %d: missing yes/no argument.",
563 filename, linenum);
564 value = 0; /* silence compiler */
565 if (strcmp(arg, "yes") == 0)
566 value = 1;
567 else if (strcmp(arg, "no") == 0)
568 value = 0;
569 else
570 fatal("%s line %d: Bad yes/no argument: %s",
571 filename, linenum, arg);
572 if (*intptr == -1)
573 *intptr = value;
574 break;
575
576 case sIgnoreUserKnownHosts:
577 intptr = &options->ignore_user_known_hosts;
578 goto parse_flag;
579
580 case sRhostsAuthentication:
581 intptr = &options->rhosts_authentication;
582 goto parse_flag;
583
584 case sRhostsRSAAuthentication:
585 intptr = &options->rhosts_rsa_authentication;
586 goto parse_flag;
587
588 case sHostbasedAuthentication:
589 intptr = &options->hostbased_authentication;
590 goto parse_flag;
591
592 case sHostbasedUsesNameFromPacketOnly:
593 intptr = &options->hostbased_uses_name_from_packet_only;
594 goto parse_flag;
595
596 case sRSAAuthentication:
597 intptr = &options->rsa_authentication;
598 goto parse_flag;
599
600 case sPubkeyAuthentication:
601 intptr = &options->pubkey_authentication;
602 goto parse_flag;
603#if defined(KRB4) || defined(KRB5)
604 case sKerberosAuthentication:
605 intptr = &options->kerberos_authentication;
606 goto parse_flag;
607
608 case sKerberosOrLocalPasswd:
609 intptr = &options->kerberos_or_local_passwd;
610 goto parse_flag;
611
612 case sKerberosTicketCleanup:
613 intptr = &options->kerberos_ticket_cleanup;
614 goto parse_flag;
615#endif
616#if defined(AFS) || defined(KRB5)
617 case sKerberosTgtPassing:
618 intptr = &options->kerberos_tgt_passing;
619 goto parse_flag;
620#endif
621#ifdef AFS
622 case sAFSTokenPassing:
623 intptr = &options->afs_token_passing;
624 goto parse_flag;
625#endif
626
627 case sPasswordAuthentication:
628 intptr = &options->password_authentication;
629 goto parse_flag;
630
631 case sKbdInteractiveAuthentication:
632 intptr = &options->kbd_interactive_authentication;
633 goto parse_flag;
634
635 case sChallengeResponseAuthentication:
636 intptr = &options->challenge_response_authentication;
637 goto parse_flag;
638
639 case sPrintMotd:
640 intptr = &options->print_motd;
641 goto parse_flag;
642
643 case sPrintLastLog:
644 intptr = &options->print_lastlog;
645 goto parse_flag;
646
647 case sX11Forwarding:
648 intptr = &options->x11_forwarding;
649 goto parse_flag;
650
651 case sX11DisplayOffset:
652 intptr = &options->x11_display_offset;
653 goto parse_int;
654
655 case sXAuthLocation:
656 charptr = &options->xauth_location;
657 goto parse_filename;
658
659 case sStrictModes:
660 intptr = &options->strict_modes;
661 goto parse_flag;
662
663 case sKeepAlives:
664 intptr = &options->keepalives;
665 goto parse_flag;
666
667 case sEmptyPasswd:
668 intptr = &options->permit_empty_passwd;
669 goto parse_flag;
670
671 case sUseLogin:
672 intptr = &options->use_login;
673 goto parse_flag;
674
675 case sGatewayPorts:
676 intptr = &options->gateway_ports;
677 goto parse_flag;
678
679 case sReverseMappingCheck:
680 intptr = &options->reverse_mapping_check;
681 goto parse_flag;
682
683 case sLogFacility:
684 intptr = (int *) &options->log_facility;
685 arg = strdelim(&cp);
686 value = log_facility_number(arg);
687 if (value == (SyslogFacility) - 1)
688 fatal("%.200s line %d: unsupported log facility '%s'",
689 filename, linenum, arg ? arg : "<NONE>");
690 if (*intptr == -1)
691 *intptr = (SyslogFacility) value;
692 break;
693
694 case sLogLevel:
695 intptr = (int *) &options->log_level;
696 arg = strdelim(&cp);
697 value = log_level_number(arg);
698 if (value == (LogLevel) - 1)
699 fatal("%.200s line %d: unsupported log level '%s'",
700 filename, linenum, arg ? arg : "<NONE>");
701 if (*intptr == -1)
702 *intptr = (LogLevel) value;
703 break;
704
705 case sAllowTcpForwarding:
706 intptr = &options->allow_tcp_forwarding;
707 goto parse_flag;
708
709 case sAllowUsers:
710 while ((arg = strdelim(&cp)) && *arg != '\0') {
711 if (options->num_allow_users >= MAX_ALLOW_USERS)
712 fatal("%s line %d: too many allow users.",
713 filename, linenum);
714 options->allow_users[options->num_allow_users++] = xstrdup(arg);
715 }
716 break;
717
718 case sDenyUsers:
719 while ((arg = strdelim(&cp)) && *arg != '\0') {
720 if (options->num_deny_users >= MAX_DENY_USERS)
721 fatal( "%s line %d: too many deny users.",
722 filename, linenum);
723 options->deny_users[options->num_deny_users++] = xstrdup(arg);
724 }
725 break;
726
727 case sAllowGroups:
728 while ((arg = strdelim(&cp)) && *arg != '\0') {
729 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
730 fatal("%s line %d: too many allow groups.",
731 filename, linenum);
732 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
733 }
734 break;
735
736 case sDenyGroups:
737 while ((arg = strdelim(&cp)) && *arg != '\0') {
738 if (options->num_deny_groups >= MAX_DENY_GROUPS)
739 fatal("%s line %d: too many deny groups.",
740 filename, linenum);
741 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
742 }
743 break;
744
745 case sCiphers:
746 arg = strdelim(&cp);
747 if (!arg || *arg == '\0')
748 fatal("%s line %d: Missing argument.", filename, linenum);
749 if (!ciphers_valid(arg))
750 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
751 filename, linenum, arg ? arg : "<NONE>");
752 if (options->ciphers == NULL)
753 options->ciphers = xstrdup(arg);
754 break;
755
756 case sMacs:
757 arg = strdelim(&cp);
758 if (!arg || *arg == '\0')
759 fatal("%s line %d: Missing argument.", filename, linenum);
760 if (!mac_valid(arg))
761 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
762 filename, linenum, arg ? arg : "<NONE>");
763 if (options->macs == NULL)
764 options->macs = xstrdup(arg);
765 break;
766
767 case sProtocol:
768 intptr = &options->protocol;
769 arg = strdelim(&cp);
770 if (!arg || *arg == '\0')
771 fatal("%s line %d: Missing argument.", filename, linenum);
772 value = proto_spec(arg);
773 if (value == SSH_PROTO_UNKNOWN)
774 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100775 filename, linenum, arg ? arg : "<NONE>");
Ben Lindstromade03f62001-12-06 18:22:17 +0000776 if (*intptr == SSH_PROTO_UNKNOWN)
777 *intptr = value;
778 break;
779
780 case sSubsystem:
781 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
782 fatal("%s line %d: too many subsystems defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100783 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000784 }
785 arg = strdelim(&cp);
786 if (!arg || *arg == '\0')
787 fatal("%s line %d: Missing subsystem name.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100788 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000789 for (i = 0; i < options->num_subsystems; i++)
790 if (strcmp(arg, options->subsystem_name[i]) == 0)
791 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100792 filename, linenum, arg);
Ben Lindstromade03f62001-12-06 18:22:17 +0000793 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
794 arg = strdelim(&cp);
795 if (!arg || *arg == '\0')
796 fatal("%s line %d: Missing subsystem command.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100797 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000798 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
799 options->num_subsystems++;
800 break;
801
802 case sMaxStartups:
803 arg = strdelim(&cp);
804 if (!arg || *arg == '\0')
805 fatal("%s line %d: Missing MaxStartups spec.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100806 filename, linenum);
Ben Lindstromade03f62001-12-06 18:22:17 +0000807 if ((n = sscanf(arg, "%d:%d:%d",
808 &options->max_startups_begin,
809 &options->max_startups_rate,
810 &options->max_startups)) == 3) {
811 if (options->max_startups_begin >
812 options->max_startups ||
813 options->max_startups_rate > 100 ||
814 options->max_startups_rate < 1)
815 fatal("%s line %d: Illegal MaxStartups spec.",
816 filename, linenum);
817 } else if (n != 1)
818 fatal("%s line %d: Illegal MaxStartups spec.",
819 filename, linenum);
820 else
821 options->max_startups = options->max_startups_begin;
822 break;
823
824 case sBanner:
825 charptr = &options->banner;
826 goto parse_filename;
827 /*
828 * These options can contain %X options expanded at
829 * connect time, so that you can specify paths like:
830 *
831 * AuthorizedKeysFile /etc/ssh_keys/%u
832 */
833 case sAuthorizedKeysFile:
834 case sAuthorizedKeysFile2:
835 charptr = (opcode == sAuthorizedKeysFile ) ?
836 &options->authorized_keys_file :
837 &options->authorized_keys_file2;
838 goto parse_filename;
839
840 case sClientAliveInterval:
841 intptr = &options->client_alive_interval;
842 goto parse_time;
843
844 case sClientAliveCountMax:
845 intptr = &options->client_alive_count_max;
846 goto parse_int;
847
848 case sDeprecated:
849 log("%s line %d: Deprecated option %s",
850 filename, linenum, arg);
851 while (arg)
852 arg = strdelim(&cp);
853 break;
854
855 default:
856 fatal("%s line %d: Missing handler for opcode %s (%d)",
857 filename, linenum, arg, opcode);
858 }
859 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
860 fatal("%s line %d: garbage at end of line; \"%.200s\".",
861 filename, linenum, arg);
862 return 0;
863}
864
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000865/* Reads the server configuration file. */
866
Damien Miller4af51302000-04-16 11:18:38 +1000867void
Damien Miller95def091999-11-25 00:26:21 +1100868read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000869{
Damien Miller95def091999-11-25 00:26:21 +1100870 FILE *f;
871 char line[1024];
Ben Lindstromade03f62001-12-06 18:22:17 +0000872 int linenum;
Damien Miller95def091999-11-25 00:26:21 +1100873 int bad_options = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874
Damien Miller95def091999-11-25 00:26:21 +1100875 f = fopen(filename, "r");
876 if (!f) {
877 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000878 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100879 }
880 linenum = 0;
881 while (fgets(line, sizeof(line), f)) {
Ben Lindstromade03f62001-12-06 18:22:17 +0000882 /* Update line number counter. */
Damien Miller95def091999-11-25 00:26:21 +1100883 linenum++;
Ben Lindstromade03f62001-12-06 18:22:17 +0000884 if (process_server_config_line(options, line, filename, linenum) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100885 bad_options++;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000886 }
Damien Miller95def091999-11-25 00:26:21 +1100887 fclose(f);
Ben Lindstromb5cdc662001-04-16 02:13:26 +0000888 if (bad_options > 0)
889 fatal("%s: terminating, %d bad configuration options",
890 filename, bad_options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000891}