blob: 8e876d1f12ef38c52557d95d53c707b5e3a4c8e0 [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 Lindstrom5eabda32001-04-12 23:34:34 +000013RCSID("$OpenBSD: servconf.c,v 1.75 2001/04/12 19:15: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 */
Ben Lindstromc510af42001-04-07 17:25:48 +000035void add_listen_addr(ServerOptions *options, char *addr, char *port);
36void add_one_listen_addr(ServerOptions *options, char *addr, u_short port);
Damien Miller34132e52000-01-14 15:45:46 +110037
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038/* AF_UNSPEC or AF_INET or AF_INET6 */
39extern int IPv4or6;
40
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041/* Initializes the server options to their default values. */
42
Damien Miller4af51302000-04-16 11:18:38 +100043void
Damien Miller95def091999-11-25 00:26:21 +110044initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045{
Damien Miller95def091999-11-25 00:26:21 +110046 memset(options, 0, sizeof(*options));
Damien Miller34132e52000-01-14 15:45:46 +110047 options->num_ports = 0;
48 options->ports_from_cmdline = 0;
49 options->listen_addrs = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +110050 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100051 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110052 options->server_key_bits = -1;
53 options->login_grace_time = -1;
54 options->key_regeneration_time = -1;
Ben Lindstromd8a90212001-02-15 03:08:27 +000055 options->permit_root_login = PERMIT_NOT_SET;
Damien Miller95def091999-11-25 00:26:21 +110056 options->ignore_rhosts = -1;
57 options->ignore_user_known_hosts = -1;
58 options->print_motd = -1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +000059 options->print_lastlog = -1;
Damien Miller95def091999-11-25 00:26:21 +110060 options->check_mail = -1;
61 options->x11_forwarding = -1;
62 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100063 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110064 options->strict_modes = -1;
65 options->keepalives = -1;
66 options->log_facility = (SyslogFacility) - 1;
67 options->log_level = (LogLevel) - 1;
68 options->rhosts_authentication = -1;
69 options->rhosts_rsa_authentication = -1;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000070 options->hostbased_authentication = -1;
71 options->hostbased_uses_name_from_packet_only = -1;
Damien Miller95def091999-11-25 00:26:21 +110072 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110073 options->pubkey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110075 options->kerberos_authentication = -1;
76 options->kerberos_or_local_passwd = -1;
77 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#endif
79#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110080 options->kerberos_tgt_passing = -1;
81 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#endif
Damien Miller95def091999-11-25 00:26:21 +110083 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110084 options->kbd_interactive_authentication = -1;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000085 options->challenge_reponse_authentication = -1;
Damien Miller95def091999-11-25 00:26:21 +110086 options->permit_empty_passwd = -1;
87 options->use_login = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110088 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110089 options->num_allow_users = 0;
90 options->num_deny_users = 0;
91 options->num_allow_groups = 0;
92 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100093 options->ciphers = NULL;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000094 options->macs = NULL;
Damien Miller78928792000-04-12 20:17:38 +100095 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100096 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +100097 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100098 options->max_startups_begin = -1;
99 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +1000100 options->max_startups = -1;
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000101 options->banner = NULL;
Damien Miller33804262001-02-04 23:20:18 +1100102 options->reverse_mapping_check = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103}
104
Damien Miller4af51302000-04-16 11:18:38 +1000105void
Damien Miller95def091999-11-25 00:26:21 +1100106fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100108 if (options->protocol == SSH_PROTO_UNKNOWN)
109 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
110 if (options->num_host_key_files == 0) {
111 /* fill default hostkeys for protocols */
112 if (options->protocol & SSH_PROTO_1)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000113 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100114 if (options->protocol & SSH_PROTO_2)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000115 options->host_key_files[options->num_host_key_files++] = _PATH_HOST_DSA_KEY_FILE;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100116 }
Damien Miller34132e52000-01-14 15:45:46 +1100117 if (options->num_ports == 0)
118 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
119 if (options->listen_addrs == NULL)
Ben Lindstromc510af42001-04-07 17:25:48 +0000120 add_listen_addr(options, NULL, NULL);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000121 if (options->pid_file == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000122 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100123 if (options->server_key_bits == -1)
124 options->server_key_bits = 768;
125 if (options->login_grace_time == -1)
126 options->login_grace_time = 600;
127 if (options->key_regeneration_time == -1)
128 options->key_regeneration_time = 3600;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000129 if (options->permit_root_login == PERMIT_NOT_SET)
130 options->permit_root_login = PERMIT_YES;
Damien Miller95def091999-11-25 00:26:21 +1100131 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100132 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100133 if (options->ignore_user_known_hosts == -1)
134 options->ignore_user_known_hosts = 0;
135 if (options->check_mail == -1)
136 options->check_mail = 0;
137 if (options->print_motd == -1)
138 options->print_motd = 1;
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000139 if (options->print_lastlog == -1)
140 options->print_lastlog = 1;
Damien Miller95def091999-11-25 00:26:21 +1100141 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100142 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100143 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100144 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000145#ifdef XAUTH_PATH
146 if (options->xauth_location == NULL)
147 options->xauth_location = XAUTH_PATH;
148#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100149 if (options->strict_modes == -1)
150 options->strict_modes = 1;
151 if (options->keepalives == -1)
152 options->keepalives = 1;
153 if (options->log_facility == (SyslogFacility) (-1))
154 options->log_facility = SYSLOG_FACILITY_AUTH;
155 if (options->log_level == (LogLevel) (-1))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000156 options->log_level = SYSLOG_LEVEL_INFO;
Damien Miller95def091999-11-25 00:26:21 +1100157 if (options->rhosts_authentication == -1)
158 options->rhosts_authentication = 0;
159 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100160 options->rhosts_rsa_authentication = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000161 if (options->hostbased_authentication == -1)
162 options->hostbased_authentication = 0;
163 if (options->hostbased_uses_name_from_packet_only == -1)
164 options->hostbased_uses_name_from_packet_only = 0;
Damien Miller95def091999-11-25 00:26:21 +1100165 if (options->rsa_authentication == -1)
166 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100167 if (options->pubkey_authentication == -1)
168 options->pubkey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100170 if (options->kerberos_authentication == -1)
171 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
172 if (options->kerberos_or_local_passwd == -1)
173 options->kerberos_or_local_passwd = 1;
174 if (options->kerberos_ticket_cleanup == -1)
175 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176#endif /* KRB4 */
177#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100178 if (options->kerberos_tgt_passing == -1)
179 options->kerberos_tgt_passing = 0;
180 if (options->afs_token_passing == -1)
181 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100183 if (options->password_authentication == -1)
184 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100185 if (options->kbd_interactive_authentication == -1)
186 options->kbd_interactive_authentication = 0;
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000187 if (options->challenge_reponse_authentication == -1)
188 options->challenge_reponse_authentication = 1;
Damien Miller95def091999-11-25 00:26:21 +1100189 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100190 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100191 if (options->use_login == -1)
192 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100193 if (options->allow_tcp_forwarding == -1)
194 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000195 if (options->gateway_ports == -1)
196 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000197 if (options->max_startups == -1)
198 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000199 if (options->max_startups_rate == -1)
200 options->max_startups_rate = 100; /* 100% */
201 if (options->max_startups_begin == -1)
202 options->max_startups_begin = options->max_startups;
Damien Miller33804262001-02-04 23:20:18 +1100203 if (options->reverse_mapping_check == -1)
204 options->reverse_mapping_check = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205}
206
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100208typedef enum {
209 sBadOption, /* == unknown option */
210 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
211 sPermitRootLogin, sLogFacility, sLogLevel,
212 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100214 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215#endif
216#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100217 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000219 sChallengeResponseAuthentication,
Damien Miller874d77b2000-10-14 16:23:11 +1100220 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000221 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
222 sX11Forwarding, sX11DisplayOffset,
Ben Lindstromd9cae222001-03-05 07:42:03 +0000223 sStrictModes, sEmptyPasswd, sKeepAlives, sCheckMail,
Damien Miller50a41ed2000-10-16 12:14:42 +1100224 sUseLogin, sAllowTcpForwarding,
225 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000226 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100227 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000228 sBanner, sReverseMappingCheck, sHostbasedAuthentication,
229 sHostbasedUsesNameFromPacketOnly
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230} ServerOpCodes;
231
232/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100233static struct {
234 const char *name;
235 ServerOpCodes opcode;
236} keywords[] = {
237 { "port", sPort },
238 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100239 { "hostdsakey", sHostKeyFile }, /* alias */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000240 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100241 { "serverkeybits", sServerKeyBits },
242 { "logingracetime", sLoginGraceTime },
243 { "keyregenerationinterval", sKeyRegenerationTime },
244 { "permitrootlogin", sPermitRootLogin },
245 { "syslogfacility", sLogFacility },
246 { "loglevel", sLogLevel },
247 { "rhostsauthentication", sRhostsAuthentication },
248 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000249 { "hostbasedauthentication", sHostbasedAuthentication },
250 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
Damien Miller95def091999-11-25 00:26:21 +1100251 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100252 { "pubkeyauthentication", sPubkeyAuthentication },
253 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100255 { "kerberosauthentication", sKerberosAuthentication },
256 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
257 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258#endif
259#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100260 { "kerberostgtpassing", sKerberosTgtPassing },
261 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262#endif
Damien Miller95def091999-11-25 00:26:21 +1100263 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100264 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000265 { "challengeresponseauthentication", sChallengeResponseAuthentication },
266 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
Damien Miller95def091999-11-25 00:26:21 +1100267 { "checkmail", sCheckMail },
268 { "listenaddress", sListenAddress },
269 { "printmotd", sPrintMotd },
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000270 { "printlastlog", sPrintLastLog },
Damien Miller95def091999-11-25 00:26:21 +1100271 { "ignorerhosts", sIgnoreRhosts },
272 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
273 { "x11forwarding", sX11Forwarding },
274 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000275 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100276 { "strictmodes", sStrictModes },
277 { "permitemptypasswords", sEmptyPasswd },
278 { "uselogin", sUseLogin },
Damien Miller95def091999-11-25 00:26:21 +1100279 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100280 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100281 { "allowusers", sAllowUsers },
282 { "denyusers", sDenyUsers },
283 { "allowgroups", sAllowGroups },
284 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000285 { "ciphers", sCiphers },
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000286 { "macs", sMacs },
Damien Miller78928792000-04-12 20:17:38 +1000287 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000288 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000289 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000290 { "maxstartups", sMaxStartups },
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000291 { "banner", sBanner },
Damien Miller33804262001-02-04 23:20:18 +1100292 { "reversemappingcheck", sReverseMappingCheck },
Damien Miller95def091999-11-25 00:26:21 +1100293 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294};
295
Damien Miller5428f641999-11-25 11:54:57 +1100296/*
Ben Lindstrom3704c262001-04-02 18:20:03 +0000297 * Returns the number of the token pointed to by cp or sBadOption.
Damien Miller5428f641999-11-25 11:54:57 +1100298 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller4af51302000-04-16 11:18:38 +1000300static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100301parse_token(const char *cp, const char *filename,
302 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000304 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller95def091999-11-25 00:26:21 +1100306 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100307 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100308 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller95def091999-11-25 00:26:21 +1100310 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
311 filename, linenum, cp);
312 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313}
314
Damien Miller34132e52000-01-14 15:45:46 +1100315/*
316 * add listen address
317 */
Damien Miller4af51302000-04-16 11:18:38 +1000318void
Ben Lindstromc510af42001-04-07 17:25:48 +0000319add_listen_addr(ServerOptions *options, char *addr, char *port)
Damien Miller34132e52000-01-14 15:45:46 +1100320{
Damien Miller34132e52000-01-14 15:45:46 +1100321 int i;
322
323 if (options->num_ports == 0)
324 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Ben Lindstromc510af42001-04-07 17:25:48 +0000325 if (port == NULL)
326 for (i = 0; i < options->num_ports; i++)
327 add_one_listen_addr(options, addr, options->ports[i]);
328 else
329 add_one_listen_addr(options, addr, atoi(port));
330}
331
332void
333add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
334{
335 struct addrinfo hints, *ai, *aitop;
336 char strport[NI_MAXSERV];
337 int gaierr;
338
339 memset(&hints, 0, sizeof(hints));
340 hints.ai_family = IPv4or6;
341 hints.ai_socktype = SOCK_STREAM;
342 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
343 snprintf(strport, sizeof strport, "%d", port);
344 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
345 fatal("bad addr or host: %s (%s)",
346 addr ? addr : "<NULL>",
347 gai_strerror(gaierr));
348 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
349 ;
350 ai->ai_next = options->listen_addrs;
351 options->listen_addrs = aitop;
Damien Miller34132e52000-01-14 15:45:46 +1100352}
353
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354/* Reads the server configuration file. */
355
Damien Miller4af51302000-04-16 11:18:38 +1000356void
Damien Miller95def091999-11-25 00:26:21 +1100357read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358{
Damien Miller95def091999-11-25 00:26:21 +1100359 FILE *f;
360 char line[1024];
Ben Lindstromc510af42001-04-07 17:25:48 +0000361 char *cp, **charptr, *arg, *p;
Damien Miller95def091999-11-25 00:26:21 +1100362 int linenum, *intptr, value;
363 int bad_options = 0;
364 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000365 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
Damien Miller95def091999-11-25 00:26:21 +1100367 f = fopen(filename, "r");
368 if (!f) {
369 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100371 }
372 linenum = 0;
373 while (fgets(line, sizeof(line), f)) {
374 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000375 cp = line;
376 arg = strdelim(&cp);
377 /* Ignore leading whitespace */
378 if (*arg == '\0')
379 arg = strdelim(&cp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000380 if (!arg || !*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100381 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100382 intptr = NULL;
383 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000384 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100385 switch (opcode) {
386 case sBadOption:
387 bad_options++;
388 continue;
389 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100390 /* ignore ports from configfile if cmdline specifies ports */
391 if (options->ports_from_cmdline)
392 continue;
393 if (options->listen_addrs != NULL)
394 fatal("%s line %d: ports must be specified before "
395 "ListenAdress.\n", filename, linenum);
396 if (options->num_ports >= MAX_PORTS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000397 fatal("%s line %d: too many ports.",
Damien Miller4af51302000-04-16 11:18:38 +1000398 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000399 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000400 if (!arg || *arg == '\0')
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000401 fatal("%s line %d: missing port number.",
Damien Miller34132e52000-01-14 15:45:46 +1100402 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000403 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100404 break;
405
406 case sServerKeyBits:
407 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100408parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000409 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000410 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100411 fprintf(stderr, "%s line %d: missing integer value.\n",
412 filename, linenum);
413 exit(1);
414 }
Damien Miller37023962000-07-11 17:31:38 +1000415 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100416 if (*intptr == -1)
417 *intptr = value;
418 break;
Damien Miller32265091999-11-12 11:33:04 +1100419
Damien Miller95def091999-11-25 00:26:21 +1100420 case sLoginGraceTime:
421 intptr = &options->login_grace_time;
422 goto parse_int;
423
424 case sKeyRegenerationTime:
425 intptr = &options->key_regeneration_time;
426 goto parse_int;
427
428 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000429 arg = strdelim(&cp);
Ben Lindstromc510af42001-04-07 17:25:48 +0000430 if (!arg || *arg == '\0' || strncmp(arg, "[]", 2) == 0)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000431 fatal("%s line %d: missing inet addr.",
Damien Miller34132e52000-01-14 15:45:46 +1100432 filename, linenum);
Ben Lindstromc510af42001-04-07 17:25:48 +0000433 if (*arg == '[') {
434 if ((p = strchr(arg, ']')) == NULL)
435 fatal("%s line %d: bad ipv6 inet addr usage.",
436 filename, linenum);
437 arg++;
438 memmove(p, p+1, strlen(p+1)+1);
439 } else if (((p = strchr(arg, ':')) == NULL) ||
440 (strchr(p+1, ':') != NULL)) {
441 add_listen_addr(options, arg, NULL);
442 break;
443 }
444 if (*p == ':') {
445 p++;
446 if (*p == '\0')
447 fatal("%s line %d: bad inet addr:port usage.",
448 filename, linenum);
449 else {
450 *(p-1) = '\0';
451 add_listen_addr(options, arg, p);
452 }
453 } else if (*p == '\0')
454 add_listen_addr(options, arg, NULL);
455 else
456 fatal("%s line %d: bad inet addr usage.",
457 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100458 break;
459
460 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100461 intptr = &options->num_host_key_files;
462 if (*intptr >= MAX_HOSTKEYS) {
Ben Lindstrom33a3cc32001-03-05 05:07:52 +0000463 fprintf(stderr,
464 "%s line %d: too many host keys specified (max %d).\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100465 filename, linenum, MAX_HOSTKEYS);
466 exit(1);
467 }
468 charptr = &options->host_key_files[*intptr];
Damien Millerd3a18572000-06-07 19:55:44 +1000469parse_filename:
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 file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000473 filename, linenum);
474 exit(1);
475 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100476 if (*charptr == NULL) {
Damien Miller37023962000-07-11 17:31:38 +1000477 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller0bc1bd82000-11-13 22:57:25 +1100478 /* increase optional counter */
479 if (intptr != NULL)
480 *intptr = *intptr + 1;
481 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000482 break;
483
484 case sPidFile:
485 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000486 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100487
Damien Miller95def091999-11-25 00:26:21 +1100488 case sPermitRootLogin:
489 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000490 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000491 if (!arg || *arg == '\0') {
Ben Lindstrom35f1f4e2001-03-06 01:02:41 +0000492 fprintf(stderr, "%s line %d: missing yes/"
493 "without-password/forced-commands-only/no "
494 "argument.\n", filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100495 exit(1);
496 }
Damien Miller37023962000-07-11 17:31:38 +1000497 if (strcmp(arg, "without-password") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000498 value = PERMIT_NO_PASSWD;
499 else if (strcmp(arg, "forced-commands-only") == 0)
500 value = PERMIT_FORCED_ONLY;
Damien Miller37023962000-07-11 17:31:38 +1000501 else if (strcmp(arg, "yes") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000502 value = PERMIT_YES;
Damien Miller37023962000-07-11 17:31:38 +1000503 else if (strcmp(arg, "no") == 0)
Ben Lindstromd8a90212001-02-15 03:08:27 +0000504 value = PERMIT_NO;
Damien Miller95def091999-11-25 00:26:21 +1100505 else {
Ben Lindstromd8a90212001-02-15 03:08:27 +0000506 fprintf(stderr, "%s line %d: Bad yes/"
507 "without-password/forced-commands-only/no "
508 "argument: %s\n", filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100509 exit(1);
510 }
511 if (*intptr == -1)
512 *intptr = value;
513 break;
514
515 case sIgnoreRhosts:
516 intptr = &options->ignore_rhosts;
517parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000518 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000519 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100520 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
521 filename, linenum);
522 exit(1);
523 }
Damien Miller37023962000-07-11 17:31:38 +1000524 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100525 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000526 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100527 value = 0;
528 else {
529 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000530 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100531 exit(1);
532 }
533 if (*intptr == -1)
534 *intptr = value;
535 break;
536
537 case sIgnoreUserKnownHosts:
538 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100539 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100540
541 case sRhostsAuthentication:
542 intptr = &options->rhosts_authentication;
543 goto parse_flag;
544
545 case sRhostsRSAAuthentication:
546 intptr = &options->rhosts_rsa_authentication;
547 goto parse_flag;
548
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000549 case sHostbasedAuthentication:
550 intptr = &options->hostbased_authentication;
551 goto parse_flag;
552
553 case sHostbasedUsesNameFromPacketOnly:
554 intptr = &options->hostbased_uses_name_from_packet_only;
555 goto parse_flag;
556
Damien Miller95def091999-11-25 00:26:21 +1100557 case sRSAAuthentication:
558 intptr = &options->rsa_authentication;
559 goto parse_flag;
560
Damien Miller0bc1bd82000-11-13 22:57:25 +1100561 case sPubkeyAuthentication:
562 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000563 goto parse_flag;
564
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100566 case sKerberosAuthentication:
567 intptr = &options->kerberos_authentication;
568 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller95def091999-11-25 00:26:21 +1100570 case sKerberosOrLocalPasswd:
571 intptr = &options->kerberos_or_local_passwd;
572 goto parse_flag;
573
574 case sKerberosTicketCleanup:
575 intptr = &options->kerberos_ticket_cleanup;
576 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577#endif
Damien Miller95def091999-11-25 00:26:21 +1100578
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100580 case sKerberosTgtPassing:
581 intptr = &options->kerberos_tgt_passing;
582 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 case sAFSTokenPassing:
585 intptr = &options->afs_token_passing;
586 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587#endif
588
Damien Miller95def091999-11-25 00:26:21 +1100589 case sPasswordAuthentication:
590 intptr = &options->password_authentication;
591 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller874d77b2000-10-14 16:23:11 +1100593 case sKbdInteractiveAuthentication:
594 intptr = &options->kbd_interactive_authentication;
595 goto parse_flag;
596
Damien Miller95def091999-11-25 00:26:21 +1100597 case sCheckMail:
598 intptr = &options->check_mail;
599 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000601 case sChallengeResponseAuthentication:
602 intptr = &options->challenge_reponse_authentication;
Damien Miller95def091999-11-25 00:26:21 +1100603 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller95def091999-11-25 00:26:21 +1100605 case sPrintMotd:
606 intptr = &options->print_motd;
607 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608
Ben Lindstrom7bfff362001-03-26 05:45:53 +0000609 case sPrintLastLog:
610 intptr = &options->print_lastlog;
611 goto parse_flag;
612
Damien Miller95def091999-11-25 00:26:21 +1100613 case sX11Forwarding:
614 intptr = &options->x11_forwarding;
615 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Damien Miller95def091999-11-25 00:26:21 +1100617 case sX11DisplayOffset:
618 intptr = &options->x11_display_offset;
619 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Damien Millerd3a18572000-06-07 19:55:44 +1000621 case sXAuthLocation:
622 charptr = &options->xauth_location;
623 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000624
Damien Miller95def091999-11-25 00:26:21 +1100625 case sStrictModes:
626 intptr = &options->strict_modes;
627 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 case sKeepAlives:
630 intptr = &options->keepalives;
631 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Damien Miller95def091999-11-25 00:26:21 +1100633 case sEmptyPasswd:
634 intptr = &options->permit_empty_passwd;
635 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller95def091999-11-25 00:26:21 +1100637 case sUseLogin:
638 intptr = &options->use_login;
639 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100640
Damien Millere247cc42000-05-07 12:03:14 +1000641 case sGatewayPorts:
642 intptr = &options->gateway_ports;
643 goto parse_flag;
644
Damien Miller33804262001-02-04 23:20:18 +1100645 case sReverseMappingCheck:
646 intptr = &options->reverse_mapping_check;
647 goto parse_flag;
648
Damien Miller95def091999-11-25 00:26:21 +1100649 case sLogFacility:
650 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000651 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000652 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100653 if (value == (SyslogFacility) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000654 fatal("%.200s line %d: unsupported log facility '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000655 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100656 if (*intptr == -1)
657 *intptr = (SyslogFacility) value;
658 break;
659
660 case sLogLevel:
661 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000662 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000663 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100664 if (value == (LogLevel) - 1)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000665 fatal("%.200s line %d: unsupported log level '%s'",
Damien Miller37023962000-07-11 17:31:38 +1000666 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100667 if (*intptr == -1)
668 *intptr = (LogLevel) value;
669 break;
670
Damien Miller50a41ed2000-10-16 12:14:42 +1100671 case sAllowTcpForwarding:
672 intptr = &options->allow_tcp_forwarding;
673 goto parse_flag;
674
Damien Miller95def091999-11-25 00:26:21 +1100675 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000676 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000677 if (options->num_allow_users >= MAX_ALLOW_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000678 fatal("%s line %d: too many allow users.",
Damien Miller78928792000-04-12 20:17:38 +1000679 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000680 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100681 }
682 break;
683
684 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000685 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000686 if (options->num_deny_users >= MAX_DENY_USERS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000687 fatal( "%s line %d: too many deny users.",
Damien Miller78928792000-04-12 20:17:38 +1000688 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000689 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100690 }
691 break;
692
693 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000694 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000695 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000696 fatal("%s line %d: too many allow groups.",
Damien Miller78928792000-04-12 20:17:38 +1000697 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000698 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100699 }
700 break;
701
702 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000703 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000704 if (options->num_deny_groups >= MAX_DENY_GROUPS)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000705 fatal("%s line %d: too many deny groups.",
Damien Miller78928792000-04-12 20:17:38 +1000706 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000707 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100708 }
709 break;
710
Damien Miller78928792000-04-12 20:17:38 +1000711 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000712 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000713 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000714 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000715 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000716 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000717 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000718 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000719 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000720 break;
721
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000722 case sMacs:
723 arg = strdelim(&cp);
724 if (!arg || *arg == '\0')
725 fatal("%s line %d: Missing argument.", filename, linenum);
726 if (!mac_valid(arg))
727 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
728 filename, linenum, arg ? arg : "<NONE>");
729 if (options->macs == NULL)
730 options->macs = xstrdup(arg);
731 break;
732
Damien Miller78928792000-04-12 20:17:38 +1000733 case sProtocol:
734 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000735 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000736 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000737 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000738 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000739 if (value == SSH_PROTO_UNKNOWN)
740 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000741 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000742 if (*intptr == SSH_PROTO_UNKNOWN)
743 *intptr = value;
744 break;
745
Damien Millerf6d9e222000-06-18 14:50:44 +1000746 case sSubsystem:
747 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
748 fatal("%s line %d: too many subsystems defined.",
749 filename, linenum);
750 }
Damien Millerbe484b52000-07-15 14:14:16 +1000751 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000752 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000753 fatal("%s line %d: Missing subsystem name.",
754 filename, linenum);
755 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000756 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000757 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000758 filename, linenum, arg);
759 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000760 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000761 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000762 fatal("%s line %d: Missing subsystem command.",
763 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000764 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000765 options->num_subsystems++;
766 break;
767
Damien Miller37023962000-07-11 17:31:38 +1000768 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000769 arg = strdelim(&cp);
770 if (!arg || *arg == '\0')
771 fatal("%s line %d: Missing MaxStartups spec.",
772 filename, linenum);
773 if (sscanf(arg, "%d:%d:%d",
774 &options->max_startups_begin,
775 &options->max_startups_rate,
776 &options->max_startups) == 3) {
777 if (options->max_startups_begin >
778 options->max_startups ||
779 options->max_startups_rate > 100 ||
780 options->max_startups_rate < 1)
781 fatal("%s line %d: Illegal MaxStartups spec.",
782 filename, linenum);
783 break;
784 }
Damien Miller37023962000-07-11 17:31:38 +1000785 intptr = &options->max_startups;
786 goto parse_int;
787
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000788 case sBanner:
789 charptr = &options->banner;
790 goto parse_filename;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000791
Damien Miller95def091999-11-25 00:26:21 +1100792 default:
793 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000794 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100795 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796 }
Damien Millerbe484b52000-07-15 14:14:16 +1000797 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000798 fprintf(stderr,
Damien Miller37023962000-07-11 17:31:38 +1000799 "%s line %d: garbage at end of line; \"%.200s\".\n",
800 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100801 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000802 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000803 }
Damien Miller95def091999-11-25 00:26:21 +1100804 fclose(f);
805 if (bad_options > 0) {
806 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
807 filename, bad_options);
808 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000810}