blob: 1e38f3b60f5c295cd20908555cdf8508bfdf566c [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 Lindstrom6df8ef42001-03-05 07:47:23 +000013RCSID("$OpenBSD: servconf.c,v 1.70 2001/03/04 17:42:28 millert 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,
Ben Lindstromd9cae222001-03-05 07:42:03 +0000212 sStrictModes, sEmptyPasswd, 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 },
Damien Miller95def091999-11-25 00:26:21 +1100264 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100265 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100266 { "allowusers", sAllowUsers },
267 { "denyusers", sDenyUsers },
268 { "allowgroups", sAllowGroups },
269 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000270 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000271 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000272 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000273 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000274 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000275 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000276 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100277 { "reversemappingcheck", sReverseMappingCheck },
Damien Miller95def091999-11-25 00:26:21 +1100278 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279};
280
Damien Miller5428f641999-11-25 11:54:57 +1100281/*
282 * Returns the number of the token pointed to by cp of length len. Never
283 * returns if the token is not known.
284 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller4af51302000-04-16 11:18:38 +1000286static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100287parse_token(const char *cp, const char *filename,
288 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000290 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291
Damien Miller95def091999-11-25 00:26:21 +1100292 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100293 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100294 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000295
Damien Miller95def091999-11-25 00:26:21 +1100296 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
297 filename, linenum, cp);
298 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299}
300
Damien Miller34132e52000-01-14 15:45:46 +1100301/*
302 * add listen address
303 */
Damien Miller4af51302000-04-16 11:18:38 +1000304void
Damien Miller34132e52000-01-14 15:45:46 +1100305add_listen_addr(ServerOptions *options, char *addr)
306{
Damien Miller34132e52000-01-14 15:45:46 +1100307 struct addrinfo hints, *ai, *aitop;
308 char strport[NI_MAXSERV];
309 int gaierr;
310 int i;
311
312 if (options->num_ports == 0)
313 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
314 for (i = 0; i < options->num_ports; i++) {
315 memset(&hints, 0, sizeof(hints));
316 hints.ai_family = IPv4or6;
317 hints.ai_socktype = SOCK_STREAM;
318 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
319 snprintf(strport, sizeof strport, "%d", options->ports[i]);
320 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000321 fatal("bad addr or host: %s (%s)",
Damien Miller34132e52000-01-14 15:45:46 +1100322 addr ? addr : "<NULL>",
323 gai_strerror(gaierr));
324 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
325 ;
326 ai->ai_next = options->listen_addrs;
327 options->listen_addrs = aitop;
328 }
329}
330
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331/* Reads the server configuration file. */
332
Damien Miller4af51302000-04-16 11:18:38 +1000333void
Damien Miller95def091999-11-25 00:26:21 +1100334read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000335{
Damien Miller95def091999-11-25 00:26:21 +1100336 FILE *f;
337 char line[1024];
Damien Miller37023962000-07-11 17:31:38 +1000338 char *cp, **charptr, *arg;
Damien Miller95def091999-11-25 00:26:21 +1100339 int linenum, *intptr, value;
340 int bad_options = 0;
341 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000342 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller95def091999-11-25 00:26:21 +1100344 f = fopen(filename, "r");
345 if (!f) {
346 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100348 }
349 linenum = 0;
350 while (fgets(line, sizeof(line), f)) {
351 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000352 cp = line;
353 arg = strdelim(&cp);
354 /* Ignore leading whitespace */
355 if (*arg == '\0')
356 arg = strdelim(&cp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000357 if (!arg || !*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100358 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100359 intptr = NULL;
360 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000361 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100362 switch (opcode) {
363 case sBadOption:
364 bad_options++;
365 continue;
366 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100367 /* ignore ports from configfile if cmdline specifies ports */
368 if (options->ports_from_cmdline)
369 continue;
370 if (options->listen_addrs != NULL)
371 fatal("%s line %d: ports must be specified before "
372 "ListenAdress.\n", filename, linenum);
373 if (options->num_ports >= MAX_PORTS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000374 fatal("%s line %d: too many ports.",
Damien Miller4af51302000-04-16 11:18:38 +1000375 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000376 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000377 if (!arg || *arg == '\0')
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000378 fatal("%s line %d: missing port number.",
Damien Miller34132e52000-01-14 15:45:46 +1100379 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000380 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100381 break;
382
383 case sServerKeyBits:
384 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100385parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000386 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000387 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100388 fprintf(stderr, "%s line %d: missing integer value.\n",
389 filename, linenum);
390 exit(1);
391 }
Damien Miller37023962000-07-11 17:31:38 +1000392 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100393 if (*intptr == -1)
394 *intptr = value;
395 break;
Damien Miller32265091999-11-12 11:33:04 +1100396
Damien Miller95def091999-11-25 00:26:21 +1100397 case sLoginGraceTime:
398 intptr = &options->login_grace_time;
399 goto parse_int;
400
401 case sKeyRegenerationTime:
402 intptr = &options->key_regeneration_time;
403 goto parse_int;
404
405 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000406 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000407 if (!arg || *arg == '\0')
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000408 fatal("%s line %d: missing inet addr.",
Damien Miller34132e52000-01-14 15:45:46 +1100409 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000410 add_listen_addr(options, arg);
Damien Miller95def091999-11-25 00:26:21 +1100411 break;
412
413 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100414 intptr = &options->num_host_key_files;
415 if (*intptr >= MAX_HOSTKEYS) {
Ben Lindstrom33a3cc32001-03-05 05:07:52 +0000416 fprintf(stderr,
417 "%s line %d: too many host keys specified (max %d).\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100418 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
Damien Miller95def091999-11-25 00:26:21 +1100441 case sPermitRootLogin:
442 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000443 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000444 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100445 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
446 filename, linenum);
447 exit(1);
448 }
Damien Miller37023962000-07-11 17:31:38 +1000449 if (strcmp(arg, "without-password") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000450 value = PERMIT_NO_PASSWD;
451 else if (strcmp(arg, "forced-commands-only") == 0)
452 value = PERMIT_FORCED_ONLY;
Damien Miller37023962000-07-11 17:31:38 +1000453 else if (strcmp(arg, "yes") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000454 value = PERMIT_YES;
Damien Miller37023962000-07-11 17:31:38 +1000455 else if (strcmp(arg, "no") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000456 value = PERMIT_NO;
Damien Miller95def091999-11-25 00:26:21 +1100457 else {
Ben Lindstromd8a90212001-02-15 03:08:27 +0000458 fprintf(stderr, "%s line %d: Bad yes/"
459 "without-password/forced-commands-only/no "
460 "argument: %s\n", filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100461 exit(1);
462 }
463 if (*intptr == -1)
464 *intptr = value;
465 break;
466
467 case sIgnoreRhosts:
468 intptr = &options->ignore_rhosts;
469parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000470 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000471 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100472 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
473 filename, linenum);
474 exit(1);
475 }
Damien Miller37023962000-07-11 17:31:38 +1000476 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100477 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000478 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100479 value = 0;
480 else {
481 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000482 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100483 exit(1);
484 }
485 if (*intptr == -1)
486 *intptr = value;
487 break;
488
489 case sIgnoreUserKnownHosts:
490 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100491 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100492
493 case sRhostsAuthentication:
494 intptr = &options->rhosts_authentication;
495 goto parse_flag;
496
497 case sRhostsRSAAuthentication:
498 intptr = &options->rhosts_rsa_authentication;
499 goto parse_flag;
500
501 case sRSAAuthentication:
502 intptr = &options->rsa_authentication;
503 goto parse_flag;
504
Damien Miller0bc1bd82000-11-13 22:57:25 +1100505 case sPubkeyAuthentication:
506 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000507 goto parse_flag;
508
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100510 case sKerberosAuthentication:
511 intptr = &options->kerberos_authentication;
512 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513
Damien Miller95def091999-11-25 00:26:21 +1100514 case sKerberosOrLocalPasswd:
515 intptr = &options->kerberos_or_local_passwd;
516 goto parse_flag;
517
518 case sKerberosTicketCleanup:
519 intptr = &options->kerberos_ticket_cleanup;
520 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521#endif
Damien Miller95def091999-11-25 00:26:21 +1100522
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100524 case sKerberosTgtPassing:
525 intptr = &options->kerberos_tgt_passing;
526 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Miller95def091999-11-25 00:26:21 +1100528 case sAFSTokenPassing:
529 intptr = &options->afs_token_passing;
530 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531#endif
532
Damien Miller95def091999-11-25 00:26:21 +1100533 case sPasswordAuthentication:
534 intptr = &options->password_authentication;
535 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
Damien Miller874d77b2000-10-14 16:23:11 +1100537 case sKbdInteractiveAuthentication:
538 intptr = &options->kbd_interactive_authentication;
539 goto parse_flag;
540
Damien Miller95def091999-11-25 00:26:21 +1100541 case sCheckMail:
542 intptr = &options->check_mail;
543 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000545 case sChallengeResponseAuthentication:
546 intptr = &options->challenge_reponse_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100547 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548
Damien Miller95def091999-11-25 00:26:21 +1100549 case sPrintMotd:
550 intptr = &options->print_motd;
551 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Damien Miller95def091999-11-25 00:26:21 +1100553 case sX11Forwarding:
554 intptr = &options->x11_forwarding;
555 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller95def091999-11-25 00:26:21 +1100557 case sX11DisplayOffset:
558 intptr = &options->x11_display_offset;
559 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Millerd3a18572000-06-07 19:55:44 +1000561 case sXAuthLocation:
562 charptr = &options->xauth_location;
563 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000564
Damien Miller95def091999-11-25 00:26:21 +1100565 case sStrictModes:
566 intptr = &options->strict_modes;
567 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Miller95def091999-11-25 00:26:21 +1100569 case sKeepAlives:
570 intptr = &options->keepalives;
571 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Damien Miller95def091999-11-25 00:26:21 +1100573 case sEmptyPasswd:
574 intptr = &options->permit_empty_passwd;
575 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller95def091999-11-25 00:26:21 +1100577 case sUseLogin:
578 intptr = &options->use_login;
579 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100580
Damien Millere247cc42000-05-07 12:03:14 +1000581 case sGatewayPorts:
582 intptr = &options->gateway_ports;
583 goto parse_flag;
584
Damien Miller33804262001-02-04 23:20:18 +1100585 case sReverseMappingCheck:
586 intptr = &options->reverse_mapping_check;
587 goto parse_flag;
588
Damien Miller95def091999-11-25 00:26:21 +1100589 case sLogFacility:
590 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000591 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000592 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100593 if (value == (SyslogFacility) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000594 fatal("%.200s line %d: unsupported log facility '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000595 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100596 if (*intptr == -1)
597 *intptr = (SyslogFacility) value;
598 break;
599
600 case sLogLevel:
601 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000602 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000603 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100604 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000605 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000606 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100607 if (*intptr == -1)
608 *intptr = (LogLevel) value;
609 break;
610
Damien Miller50a41ed2000-10-16 12:14:42 +1100611 case sAllowTcpForwarding:
612 intptr = &options->allow_tcp_forwarding;
613 goto parse_flag;
614
Damien Miller95def091999-11-25 00:26:21 +1100615 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000616 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000617 if (options->num_allow_users >= MAX_ALLOW_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000618 fatal("%s line %d: too many allow users.",
Damien Miller78928792000-04-12 20:17:38 +1000619 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000620 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100621 }
622 break;
623
624 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000625 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000626 if (options->num_deny_users >= MAX_DENY_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000627 fatal( "%s line %d: too many deny users.",
Damien Miller78928792000-04-12 20:17:38 +1000628 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000629 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100630 }
631 break;
632
633 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000634 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000635 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000636 fatal("%s line %d: too many allow groups.",
Damien Miller78928792000-04-12 20:17:38 +1000637 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000638 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100639 }
640 break;
641
642 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000643 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000644 if (options->num_deny_groups >= MAX_DENY_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000645 fatal("%s line %d: too many deny groups.",
Damien Miller78928792000-04-12 20:17:38 +1000646 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000647 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100648 }
649 break;
650
Damien Miller78928792000-04-12 20:17:38 +1000651 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000652 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000653 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000654 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000655 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000656 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000657 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000658 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000659 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000660 break;
661
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000662 case sMacs:
663 arg = strdelim(&cp);
664 if (!arg || *arg == '\0')
665 fatal("%s line %d: Missing argument.", filename, linenum);
666 if (!mac_valid(arg))
667 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
668 filename, linenum, arg ? arg : "<NONE>");
669 if (options->macs == NULL)
670 options->macs = xstrdup(arg);
671 break;
672
Damien Miller78928792000-04-12 20:17:38 +1000673 case sProtocol:
674 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000675 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000676 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000677 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000678 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000679 if (value == SSH_PROTO_UNKNOWN)
680 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000681 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000682 if (*intptr == SSH_PROTO_UNKNOWN)
683 *intptr = value;
684 break;
685
Damien Millerf6d9e222000-06-18 14:50:44 +1000686 case sSubsystem:
687 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
688 fatal("%s line %d: too many subsystems defined.",
689 filename, linenum);
690 }
Damien Millerbe484b52000-07-15 14:14:16 +1000691 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000692 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000693 fatal("%s line %d: Missing subsystem name.",
694 filename, linenum);
695 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000696 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000697 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000698 filename, linenum, arg);
699 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000700 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000701 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000702 fatal("%s line %d: Missing subsystem command.",
703 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000704 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000705 options->num_subsystems++;
706 break;
707
Damien Miller37023962000-07-11 17:31:38 +1000708 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000709 arg = strdelim(&cp);
710 if (!arg || *arg == '\0')
711 fatal("%s line %d: Missing MaxStartups spec.",
712 filename, linenum);
713 if (sscanf(arg, "%d:%d:%d",
714 &options->max_startups_begin,
715 &options->max_startups_rate,
716 &options->max_startups) == 3) {
717 if (options->max_startups_begin >
718 options->max_startups ||
719 options->max_startups_rate > 100 ||
720 options->max_startups_rate < 1)
721 fatal("%s line %d: Illegal MaxStartups spec.",
722 filename, linenum);
723 break;
724 }
Damien Miller37023962000-07-11 17:31:38 +1000725 intptr = &options->max_startups;
726 goto parse_int;
727
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000728 case sBanner:
729 charptr = &options->banner;
730 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000731
Damien Miller95def091999-11-25 00:26:21 +1100732 default:
733 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000734 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100735 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000736 }
Damien Millerbe484b52000-07-15 14:14:16 +1000737 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000738 fprintf(stderr,
Damien Miller37023962000-07-11 17:31:38 +1000739 "%s line %d: garbage at end of line; \"%.200s\".\n",
740 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100741 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000742 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000743 }
Damien Miller95def091999-11-25 00:26:21 +1100744 fclose(f);
745 if (bad_options > 0) {
746 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
747 filename, bad_options);
748 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750}