blob: 27c8671cfa3e6bff961b7ab32a10dc37b56a58df [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 Lindstromd8a90212001-02-15 03:08:27 +000013RCSID("$OpenBSD: servconf.c,v 1.67 2001/02/12 16:16:23 markus Exp $");
Ben Lindstrom226cfa02001-01-22 05:34:40 +000014
15#ifdef KRB4
16#include <krb.h>
17#endif
18#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
Damien Miller34132e52000-01-14 15:45:46 +110034/* add listen address */
35void add_listen_addr(ServerOptions *options, char *addr);
36
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;
58 options->check_mail = -1;
59 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;
68 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110069 options->pubkey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110071 options->kerberos_authentication = -1;
72 options->kerberos_or_local_passwd = -1;
73 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#endif
75#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110076 options->kerberos_tgt_passing = -1;
77 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#endif
Damien Miller95def091999-11-25 00:26:21 +110079 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110080 options->kbd_interactive_authentication = -1;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000081 options->challenge_reponse_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110082 options->permit_empty_passwd = -1;
83 options->use_login = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110084 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110085 options->num_allow_users = 0;
86 options->num_deny_users = 0;
87 options->num_allow_groups = 0;
88 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100089 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000090 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +100091 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100092 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +100093 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100094 options->max_startups_begin = -1;
95 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +100096 options->max_startups = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +000097 options->banner = NULL;
Damien Miller33804262001-02-04 23:20:18 +110098 options->reverse_mapping_check = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099}
100
Damien Miller4af51302000-04-16 11:18:38 +1000101void
Damien Miller95def091999-11-25 00:26:21 +1100102fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100104 if (options->protocol == SSH_PROTO_UNKNOWN)
105 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
106 if (options->num_host_key_files == 0) {
107 /* fill default hostkeys for protocols */
108 if (options->protocol & SSH_PROTO_1)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000109 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100110 if (options->protocol & SSH_PROTO_2)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000111 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_DSA_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100112 }
Damien Miller34132e52000-01-14 15:45:46 +1100113 if (options->num_ports == 0)
114 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
115 if (options->listen_addrs == NULL)
116 add_listen_addr(options, NULL);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000117 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000118 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100119 if (options->server_key_bits == -1)
120 options->server_key_bits = 768;
121 if (options->login_grace_time == -1)
122 options->login_grace_time = 600;
123 if (options->key_regeneration_time == -1)
124 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000125 if (options->permit_root_login == PERMIT_NOT_SET)
126 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100127 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100128 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100129 if (options->ignore_user_known_hosts == -1)
130 options->ignore_user_known_hosts = 0;
131 if (options->check_mail == -1)
132 options->check_mail = 0;
133 if (options->print_motd == -1)
134 options->print_motd = 1;
135 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100136 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100137 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100138 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000139#ifdef XAUTH_PATH
140 if (options->xauth_location == NULL)
141 options->xauth_location = XAUTH_PATH;
142#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100143 if (options->strict_modes == -1)
144 options->strict_modes = 1;
145 if (options->keepalives == -1)
146 options->keepalives = 1;
147 if (options->log_facility == (SyslogFacility) (-1))
148 options->log_facility = SYSLOG_FACILITY_AUTH;
149 if (options->log_level == (LogLevel) (-1))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000150 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100151 if (options->rhosts_authentication == -1)
152 options->rhosts_authentication = 0;
153 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100154 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->rsa_authentication == -1)
156 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 if (options->pubkey_authentication == -1)
158 options->pubkey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100160 if (options->kerberos_authentication == -1)
161 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
162 if (options->kerberos_or_local_passwd == -1)
163 options->kerberos_or_local_passwd = 1;
164 if (options->kerberos_ticket_cleanup == -1)
165 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166#endif /* KRB4 */
167#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100168 if (options->kerberos_tgt_passing == -1)
169 options->kerberos_tgt_passing = 0;
170 if (options->afs_token_passing == -1)
171 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100173 if (options->password_authentication == -1)
174 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100175 if (options->kbd_interactive_authentication == -1)
176 options->kbd_interactive_authentication = 0;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000177 if (options->challenge_reponse_authentication == -1)
178 options->challenge_reponse_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100179 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100180 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100181 if (options->use_login == -1)
182 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100183 if (options->allow_tcp_forwarding == -1)
184 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000185 if (options->gateway_ports == -1)
186 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000187 if (options->max_startups == -1)
188 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000189 if (options->max_startups_rate == -1)
190 options->max_startups_rate = 100; /* 100% */
191 if (options->max_startups_begin == -1)
192 options->max_startups_begin = options->max_startups;
Damien Miller33804262001-02-04 23:20:18 +1100193 if (options->reverse_mapping_check == -1)
194 options->reverse_mapping_check = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195}
196
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100198typedef enum {
199 sBadOption, /* == unknown option */
200 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
201 sPermitRootLogin, sLogFacility, sLogLevel,
202 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100204 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205#endif
206#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100207 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000209 sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100210 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Damien Miller95def091999-11-25 00:26:21 +1100211 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
212 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
Damien Miller50a41ed2000-10-16 12:14:42 +1100213 sUseLogin, sAllowTcpForwarding,
214 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000215 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100216 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Damien Miller33804262001-02-04 23:20:18 +1100217 sBanner, sReverseMappingCheck
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218} ServerOpCodes;
219
220/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100221static struct {
222 const char *name;
223 ServerOpCodes opcode;
224} keywords[] = {
225 { "port", sPort },
226 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100227 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000228 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100229 { "serverkeybits", sServerKeyBits },
230 { "logingracetime", sLoginGraceTime },
231 { "keyregenerationinterval", sKeyRegenerationTime },
232 { "permitrootlogin", sPermitRootLogin },
233 { "syslogfacility", sLogFacility },
234 { "loglevel", sLogLevel },
235 { "rhostsauthentication", sRhostsAuthentication },
236 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
237 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100238 { "pubkeyauthentication", sPubkeyAuthentication },
239 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100241 { "kerberosauthentication", sKerberosAuthentication },
242 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
243 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244#endif
245#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100246 { "kerberostgtpassing", sKerberosTgtPassing },
247 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248#endif
Damien Miller95def091999-11-25 00:26:21 +1100249 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100250 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000251 { "challengeresponseauthentication", sChallengeResponseAuthentication },
252 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100253 { "checkmail", sCheckMail },
254 { "listenaddress", sListenAddress },
255 { "printmotd", sPrintMotd },
256 { "ignorerhosts", sIgnoreRhosts },
257 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
258 { "x11forwarding", sX11Forwarding },
259 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000260 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100261 { "strictmodes", sStrictModes },
262 { "permitemptypasswords", sEmptyPasswd },
263 { "uselogin", sUseLogin },
264 { "randomseed", sRandomSeedFile },
265 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100266 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100267 { "allowusers", sAllowUsers },
268 { "denyusers", sDenyUsers },
269 { "allowgroups", sAllowGroups },
270 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000271 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000272 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000273 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000274 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000275 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000276 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000277 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100278 { "reversemappingcheck", sReverseMappingCheck },
Damien Miller95def091999-11-25 00:26:21 +1100279 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280};
281
Damien Miller5428f641999-11-25 11:54:57 +1100282/*
283 * Returns the number of the token pointed to by cp of length len. Never
284 * returns if the token is not known.
285 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Damien Miller4af51302000-04-16 11:18:38 +1000287static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100288parse_token(const char *cp, const char *filename,
289 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000291 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller95def091999-11-25 00:26:21 +1100293 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100294 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100295 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller95def091999-11-25 00:26:21 +1100297 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
298 filename, linenum, cp);
299 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300}
301
Damien Miller34132e52000-01-14 15:45:46 +1100302/*
303 * add listen address
304 */
Damien Miller4af51302000-04-16 11:18:38 +1000305void
Damien Miller34132e52000-01-14 15:45:46 +1100306add_listen_addr(ServerOptions *options, char *addr)
307{
Damien Miller34132e52000-01-14 15:45:46 +1100308 struct addrinfo hints, *ai, *aitop;
309 char strport[NI_MAXSERV];
310 int gaierr;
311 int i;
312
313 if (options->num_ports == 0)
314 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
315 for (i = 0; i < options->num_ports; i++) {
316 memset(&hints, 0, sizeof(hints));
317 hints.ai_family = IPv4or6;
318 hints.ai_socktype = SOCK_STREAM;
319 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
320 snprintf(strport, sizeof strport, "%d", options->ports[i]);
321 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
322 fatal("bad addr or host: %s (%s)\n",
323 addr ? addr : "<NULL>",
324 gai_strerror(gaierr));
325 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
326 ;
327 ai->ai_next = options->listen_addrs;
328 options->listen_addrs = aitop;
329 }
330}
331
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332/* Reads the server configuration file. */
333
Damien Miller4af51302000-04-16 11:18:38 +1000334void
Damien Miller95def091999-11-25 00:26:21 +1100335read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336{
Damien Miller95def091999-11-25 00:26:21 +1100337 FILE *f;
338 char line[1024];
Damien Miller37023962000-07-11 17:31:38 +1000339 char *cp, **charptr, *arg;
Damien Miller95def091999-11-25 00:26:21 +1100340 int linenum, *intptr, value;
341 int bad_options = 0;
342 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000343 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344
Damien Miller95def091999-11-25 00:26:21 +1100345 f = fopen(filename, "r");
346 if (!f) {
347 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100349 }
350 linenum = 0;
351 while (fgets(line, sizeof(line), f)) {
352 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000353 cp = line;
354 arg = strdelim(&cp);
355 /* Ignore leading whitespace */
356 if (*arg == '\0')
357 arg = strdelim(&cp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000358 if (!arg || !*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100359 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100360 intptr = NULL;
361 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000362 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100363 switch (opcode) {
364 case sBadOption:
365 bad_options++;
366 continue;
367 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100368 /* ignore ports from configfile if cmdline specifies ports */
369 if (options->ports_from_cmdline)
370 continue;
371 if (options->listen_addrs != NULL)
372 fatal("%s line %d: ports must be specified before "
373 "ListenAdress.\n", filename, linenum);
374 if (options->num_ports >= MAX_PORTS)
375 fatal("%s line %d: too many ports.\n",
Damien Miller4af51302000-04-16 11:18:38 +1000376 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000377 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000378 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100379 fatal("%s line %d: missing port number.\n",
380 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000381 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100382 break;
383
384 case sServerKeyBits:
385 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100386parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000387 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000388 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100389 fprintf(stderr, "%s line %d: missing integer value.\n",
390 filename, linenum);
391 exit(1);
392 }
Damien Miller37023962000-07-11 17:31:38 +1000393 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100394 if (*intptr == -1)
395 *intptr = value;
396 break;
Damien Miller32265091999-11-12 11:33:04 +1100397
Damien Miller95def091999-11-25 00:26:21 +1100398 case sLoginGraceTime:
399 intptr = &options->login_grace_time;
400 goto parse_int;
401
402 case sKeyRegenerationTime:
403 intptr = &options->key_regeneration_time;
404 goto parse_int;
405
406 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000407 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000408 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100409 fatal("%s line %d: missing inet addr.\n",
410 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000411 add_listen_addr(options, arg);
Damien Miller95def091999-11-25 00:26:21 +1100412 break;
413
414 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100415 intptr = &options->num_host_key_files;
416 if (*intptr >= MAX_HOSTKEYS) {
417 fprintf(stderr, "%s line %d: to many host keys specified (max %d).\n",
418 filename, linenum, MAX_HOSTKEYS);
419 exit(1);
420 }
421 charptr = &options->host_key_files[*intptr];
Damien Millerd3a18572000-06-07 19:55:44 +1000422parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000423 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000424 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100425 fprintf(stderr, "%s line %d: missing file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000426 filename, linenum);
427 exit(1);
428 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100429 if (*charptr == NULL) {
Damien Miller37023962000-07-11 17:31:38 +1000430 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller0bc1bd82000-11-13 22:57:25 +1100431 /* increase optional counter */
432 if (intptr != NULL)
433 *intptr = *intptr + 1;
434 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000435 break;
436
437 case sPidFile:
438 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000439 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100440
441 case sRandomSeedFile:
442 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
443 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000444 arg = strdelim(&cp);
Damien Miller95def091999-11-25 00:26:21 +1100445 break;
446
447 case sPermitRootLogin:
448 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000449 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000450 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100451 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
452 filename, linenum);
453 exit(1);
454 }
Damien Miller37023962000-07-11 17:31:38 +1000455 if (strcmp(arg, "without-password") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000456 value = PERMIT_NO_PASSWD;
457 else if (strcmp(arg, "forced-commands-only") == 0)
458 value = PERMIT_FORCED_ONLY;
Damien Miller37023962000-07-11 17:31:38 +1000459 else if (strcmp(arg, "yes") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000460 value = PERMIT_YES;
Damien Miller37023962000-07-11 17:31:38 +1000461 else if (strcmp(arg, "no") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000462 value = PERMIT_NO;
Damien Miller95def091999-11-25 00:26:21 +1100463 else {
Ben Lindstromd8a90212001-02-15 03:08:27 +0000464 fprintf(stderr, "%s line %d: Bad yes/"
465 "without-password/forced-commands-only/no "
466 "argument: %s\n", filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100467 exit(1);
468 }
469 if (*intptr == -1)
470 *intptr = value;
471 break;
472
473 case sIgnoreRhosts:
474 intptr = &options->ignore_rhosts;
475parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000476 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000477 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100478 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
479 filename, linenum);
480 exit(1);
481 }
Damien Miller37023962000-07-11 17:31:38 +1000482 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100483 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000484 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100485 value = 0;
486 else {
487 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000488 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100489 exit(1);
490 }
491 if (*intptr == -1)
492 *intptr = value;
493 break;
494
495 case sIgnoreUserKnownHosts:
496 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100497 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100498
499 case sRhostsAuthentication:
500 intptr = &options->rhosts_authentication;
501 goto parse_flag;
502
503 case sRhostsRSAAuthentication:
504 intptr = &options->rhosts_rsa_authentication;
505 goto parse_flag;
506
507 case sRSAAuthentication:
508 intptr = &options->rsa_authentication;
509 goto parse_flag;
510
Damien Miller0bc1bd82000-11-13 22:57:25 +1100511 case sPubkeyAuthentication:
512 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000513 goto parse_flag;
514
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100516 case sKerberosAuthentication:
517 intptr = &options->kerberos_authentication;
518 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Miller95def091999-11-25 00:26:21 +1100520 case sKerberosOrLocalPasswd:
521 intptr = &options->kerberos_or_local_passwd;
522 goto parse_flag;
523
524 case sKerberosTicketCleanup:
525 intptr = &options->kerberos_ticket_cleanup;
526 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527#endif
Damien Miller95def091999-11-25 00:26:21 +1100528
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100530 case sKerberosTgtPassing:
531 intptr = &options->kerberos_tgt_passing;
532 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533
Damien Miller95def091999-11-25 00:26:21 +1100534 case sAFSTokenPassing:
535 intptr = &options->afs_token_passing;
536 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537#endif
538
Damien Miller95def091999-11-25 00:26:21 +1100539 case sPasswordAuthentication:
540 intptr = &options->password_authentication;
541 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller874d77b2000-10-14 16:23:11 +1100543 case sKbdInteractiveAuthentication:
544 intptr = &options->kbd_interactive_authentication;
545 goto parse_flag;
546
Damien Miller95def091999-11-25 00:26:21 +1100547 case sCheckMail:
548 intptr = &options->check_mail;
549 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000551 case sChallengeResponseAuthentication:
552 intptr = &options->challenge_reponse_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100553 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Damien Miller95def091999-11-25 00:26:21 +1100555 case sPrintMotd:
556 intptr = &options->print_motd;
557 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Miller95def091999-11-25 00:26:21 +1100559 case sX11Forwarding:
560 intptr = &options->x11_forwarding;
561 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 case sX11DisplayOffset:
564 intptr = &options->x11_display_offset;
565 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Millerd3a18572000-06-07 19:55:44 +1000567 case sXAuthLocation:
568 charptr = &options->xauth_location;
569 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000570
Damien Miller95def091999-11-25 00:26:21 +1100571 case sStrictModes:
572 intptr = &options->strict_modes;
573 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Damien Miller95def091999-11-25 00:26:21 +1100575 case sKeepAlives:
576 intptr = &options->keepalives;
577 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller95def091999-11-25 00:26:21 +1100579 case sEmptyPasswd:
580 intptr = &options->permit_empty_passwd;
581 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller95def091999-11-25 00:26:21 +1100583 case sUseLogin:
584 intptr = &options->use_login;
585 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100586
Damien Millere247cc42000-05-07 12:03:14 +1000587 case sGatewayPorts:
588 intptr = &options->gateway_ports;
589 goto parse_flag;
590
Damien Miller33804262001-02-04 23:20:18 +1100591 case sReverseMappingCheck:
592 intptr = &options->reverse_mapping_check;
593 goto parse_flag;
594
Damien Miller95def091999-11-25 00:26:21 +1100595 case sLogFacility:
596 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000597 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000598 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100599 if (value == (SyslogFacility) - 1)
600 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000601 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100602 if (*intptr == -1)
603 *intptr = (SyslogFacility) value;
604 break;
605
606 case sLogLevel:
607 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000608 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000609 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100610 if (value == (LogLevel) - 1)
611 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000612 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100613 if (*intptr == -1)
614 *intptr = (LogLevel) value;
615 break;
616
Damien Miller50a41ed2000-10-16 12:14:42 +1100617 case sAllowTcpForwarding:
618 intptr = &options->allow_tcp_forwarding;
619 goto parse_flag;
620
Damien Miller95def091999-11-25 00:26:21 +1100621 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000622 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000623 if (options->num_allow_users >= MAX_ALLOW_USERS)
624 fatal("%s line %d: too many allow users.\n",
625 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000626 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100627 }
628 break;
629
630 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000631 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000632 if (options->num_deny_users >= MAX_DENY_USERS)
633 fatal( "%s line %d: too many deny users.\n",
634 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000635 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100636 }
637 break;
638
639 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000640 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000641 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
642 fatal("%s line %d: too many allow groups.\n",
643 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000644 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100645 }
646 break;
647
648 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000649 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000650 if (options->num_deny_groups >= MAX_DENY_GROUPS)
651 fatal("%s line %d: too many deny groups.\n",
652 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000653 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100654 }
655 break;
656
Damien Miller78928792000-04-12 20:17:38 +1000657 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000658 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000659 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000660 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000661 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000662 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000663 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000664 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000665 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000666 break;
667
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000668 case sMacs:
669 arg = strdelim(&cp);
670 if (!arg || *arg == '\0')
671 fatal("%s line %d: Missing argument.", filename, linenum);
672 if (!mac_valid(arg))
673 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
674 filename, linenum, arg ? arg : "<NONE>");
675 if (options->macs == NULL)
676 options->macs = xstrdup(arg);
677 break;
678
Damien Miller78928792000-04-12 20:17:38 +1000679 case sProtocol:
680 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000681 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000682 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000683 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000684 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000685 if (value == SSH_PROTO_UNKNOWN)
686 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000687 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000688 if (*intptr == SSH_PROTO_UNKNOWN)
689 *intptr = value;
690 break;
691
Damien Millerf6d9e222000-06-18 14:50:44 +1000692 case sSubsystem:
693 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
694 fatal("%s line %d: too many subsystems defined.",
695 filename, linenum);
696 }
Damien Millerbe484b52000-07-15 14:14:16 +1000697 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000698 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000699 fatal("%s line %d: Missing subsystem name.",
700 filename, linenum);
701 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000702 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000703 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000704 filename, linenum, arg);
705 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000706 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000707 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000708 fatal("%s line %d: Missing subsystem command.",
709 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000710 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000711 options->num_subsystems++;
712 break;
713
Damien Miller37023962000-07-11 17:31:38 +1000714 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000715 arg = strdelim(&cp);
716 if (!arg || *arg == '\0')
717 fatal("%s line %d: Missing MaxStartups spec.",
718 filename, linenum);
719 if (sscanf(arg, "%d:%d:%d",
720 &options->max_startups_begin,
721 &options->max_startups_rate,
722 &options->max_startups) == 3) {
723 if (options->max_startups_begin >
724 options->max_startups ||
725 options->max_startups_rate > 100 ||
726 options->max_startups_rate < 1)
727 fatal("%s line %d: Illegal MaxStartups spec.",
728 filename, linenum);
729 break;
730 }
Damien Miller37023962000-07-11 17:31:38 +1000731 intptr = &options->max_startups;
732 goto parse_int;
733
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000734 case sBanner:
735 charptr = &options->banner;
736 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000737
Damien Miller95def091999-11-25 00:26:21 +1100738 default:
739 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000740 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100741 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000742 }
Damien Millerbe484b52000-07-15 14:14:16 +1000743 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000744 fprintf(stderr,
Damien Miller37023962000-07-11 17:31:38 +1000745 "%s line %d: garbage at end of line; \"%.200s\".\n",
746 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100747 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000748 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749 }
Damien Miller95def091999-11-25 00:26:21 +1100750 fclose(f);
751 if (bad_options > 0) {
752 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
753 filename, bad_options);
754 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000755 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000756}