blob: 43a2c111e62f43d0802937063183d2e8f8850270 [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 Lindstrom06b33aa2001-02-15 03:01:59 +000013RCSID("$OpenBSD: servconf.c,v 1.66 2001/02/11 12:59:25 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;
54 options->permit_root_login = -1;
55 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;
125 if (options->permit_root_login == -1)
126 options->permit_root_login = 1; /* yes */
127 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)
Damien Miller95def091999-11-25 00:26:21 +1100456 value = 2;
Damien Miller37023962000-07-11 17:31:38 +1000457 else if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100458 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000459 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100460 value = 0;
461 else {
462 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000463 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100464 exit(1);
465 }
466 if (*intptr == -1)
467 *intptr = value;
468 break;
469
470 case sIgnoreRhosts:
471 intptr = &options->ignore_rhosts;
472parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000473 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000474 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100475 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
476 filename, linenum);
477 exit(1);
478 }
Damien Miller37023962000-07-11 17:31:38 +1000479 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100480 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000481 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100482 value = 0;
483 else {
484 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000485 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100486 exit(1);
487 }
488 if (*intptr == -1)
489 *intptr = value;
490 break;
491
492 case sIgnoreUserKnownHosts:
493 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100494 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100495
496 case sRhostsAuthentication:
497 intptr = &options->rhosts_authentication;
498 goto parse_flag;
499
500 case sRhostsRSAAuthentication:
501 intptr = &options->rhosts_rsa_authentication;
502 goto parse_flag;
503
504 case sRSAAuthentication:
505 intptr = &options->rsa_authentication;
506 goto parse_flag;
507
Damien Miller0bc1bd82000-11-13 22:57:25 +1100508 case sPubkeyAuthentication:
509 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000510 goto parse_flag;
511
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100513 case sKerberosAuthentication:
514 intptr = &options->kerberos_authentication;
515 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Damien Miller95def091999-11-25 00:26:21 +1100517 case sKerberosOrLocalPasswd:
518 intptr = &options->kerberos_or_local_passwd;
519 goto parse_flag;
520
521 case sKerberosTicketCleanup:
522 intptr = &options->kerberos_ticket_cleanup;
523 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524#endif
Damien Miller95def091999-11-25 00:26:21 +1100525
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100527 case sKerberosTgtPassing:
528 intptr = &options->kerberos_tgt_passing;
529 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
Damien Miller95def091999-11-25 00:26:21 +1100531 case sAFSTokenPassing:
532 intptr = &options->afs_token_passing;
533 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534#endif
535
Damien Miller95def091999-11-25 00:26:21 +1100536 case sPasswordAuthentication:
537 intptr = &options->password_authentication;
538 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Damien Miller874d77b2000-10-14 16:23:11 +1100540 case sKbdInteractiveAuthentication:
541 intptr = &options->kbd_interactive_authentication;
542 goto parse_flag;
543
Damien Miller95def091999-11-25 00:26:21 +1100544 case sCheckMail:
545 intptr = &options->check_mail;
546 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000548 case sChallengeResponseAuthentication:
549 intptr = &options->challenge_reponse_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100550 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Miller95def091999-11-25 00:26:21 +1100552 case sPrintMotd:
553 intptr = &options->print_motd;
554 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 case sX11Forwarding:
557 intptr = &options->x11_forwarding;
558 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 case sX11DisplayOffset:
561 intptr = &options->x11_display_offset;
562 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Millerd3a18572000-06-07 19:55:44 +1000564 case sXAuthLocation:
565 charptr = &options->xauth_location;
566 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000567
Damien Miller95def091999-11-25 00:26:21 +1100568 case sStrictModes:
569 intptr = &options->strict_modes;
570 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 case sKeepAlives:
573 intptr = &options->keepalives;
574 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Damien Miller95def091999-11-25 00:26:21 +1100576 case sEmptyPasswd:
577 intptr = &options->permit_empty_passwd;
578 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 case sUseLogin:
581 intptr = &options->use_login;
582 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100583
Damien Millere247cc42000-05-07 12:03:14 +1000584 case sGatewayPorts:
585 intptr = &options->gateway_ports;
586 goto parse_flag;
587
Damien Miller33804262001-02-04 23:20:18 +1100588 case sReverseMappingCheck:
589 intptr = &options->reverse_mapping_check;
590 goto parse_flag;
591
Damien Miller95def091999-11-25 00:26:21 +1100592 case sLogFacility:
593 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000594 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000595 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100596 if (value == (SyslogFacility) - 1)
597 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000598 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100599 if (*intptr == -1)
600 *intptr = (SyslogFacility) value;
601 break;
602
603 case sLogLevel:
604 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000605 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000606 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100607 if (value == (LogLevel) - 1)
608 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000609 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100610 if (*intptr == -1)
611 *intptr = (LogLevel) value;
612 break;
613
Damien Miller50a41ed2000-10-16 12:14:42 +1100614 case sAllowTcpForwarding:
615 intptr = &options->allow_tcp_forwarding;
616 goto parse_flag;
617
Damien Miller95def091999-11-25 00:26:21 +1100618 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000619 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000620 if (options->num_allow_users >= MAX_ALLOW_USERS)
621 fatal("%s line %d: too many allow users.\n",
622 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000623 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100624 }
625 break;
626
627 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000628 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000629 if (options->num_deny_users >= MAX_DENY_USERS)
630 fatal( "%s line %d: too many deny users.\n",
631 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000632 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100633 }
634 break;
635
636 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000637 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000638 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
639 fatal("%s line %d: too many allow groups.\n",
640 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000641 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100642 }
643 break;
644
645 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000646 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000647 if (options->num_deny_groups >= MAX_DENY_GROUPS)
648 fatal("%s line %d: too many deny groups.\n",
649 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000650 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100651 }
652 break;
653
Damien Miller78928792000-04-12 20:17:38 +1000654 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000655 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000656 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000657 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000658 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000659 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000660 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000661 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000662 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000663 break;
664
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000665 case sMacs:
666 arg = strdelim(&cp);
667 if (!arg || *arg == '\0')
668 fatal("%s line %d: Missing argument.", filename, linenum);
669 if (!mac_valid(arg))
670 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
671 filename, linenum, arg ? arg : "<NONE>");
672 if (options->macs == NULL)
673 options->macs = xstrdup(arg);
674 break;
675
Damien Miller78928792000-04-12 20:17:38 +1000676 case sProtocol:
677 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000678 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000679 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000680 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000681 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000682 if (value == SSH_PROTO_UNKNOWN)
683 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000684 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000685 if (*intptr == SSH_PROTO_UNKNOWN)
686 *intptr = value;
687 break;
688
Damien Millerf6d9e222000-06-18 14:50:44 +1000689 case sSubsystem:
690 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
691 fatal("%s line %d: too many subsystems defined.",
692 filename, linenum);
693 }
Damien Millerbe484b52000-07-15 14:14:16 +1000694 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000695 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000696 fatal("%s line %d: Missing subsystem name.",
697 filename, linenum);
698 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000699 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000700 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000701 filename, linenum, arg);
702 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000703 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000704 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000705 fatal("%s line %d: Missing subsystem command.",
706 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000707 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000708 options->num_subsystems++;
709 break;
710
Damien Miller37023962000-07-11 17:31:38 +1000711 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000712 arg = strdelim(&cp);
713 if (!arg || *arg == '\0')
714 fatal("%s line %d: Missing MaxStartups spec.",
715 filename, linenum);
716 if (sscanf(arg, "%d:%d:%d",
717 &options->max_startups_begin,
718 &options->max_startups_rate,
719 &options->max_startups) == 3) {
720 if (options->max_startups_begin >
721 options->max_startups ||
722 options->max_startups_rate > 100 ||
723 options->max_startups_rate < 1)
724 fatal("%s line %d: Illegal MaxStartups spec.",
725 filename, linenum);
726 break;
727 }
Damien Miller37023962000-07-11 17:31:38 +1000728 intptr = &options->max_startups;
729 goto parse_int;
730
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000731 case sBanner:
732 charptr = &options->banner;
733 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000734
Damien Miller95def091999-11-25 00:26:21 +1100735 default:
736 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000737 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100738 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739 }
Damien Millerbe484b52000-07-15 14:14:16 +1000740 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000741 fprintf(stderr,
Damien Miller37023962000-07-11 17:31:38 +1000742 "%s line %d: garbage at end of line; \"%.200s\".\n",
743 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100744 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000745 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000746 }
Damien Miller95def091999-11-25 00:26:21 +1100747 fclose(f);
748 if (bad_options > 0) {
749 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
750 filename, bad_options);
751 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000752 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000753}