blob: e90defe61e598d291cf08879b78f8e59400261fc [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Millere4340be2000-09-16 13:29:08 +11005 * As far as I am concerned, the code I have written for this software
6 * can be used freely for any purpose. Any derived versions of this
7 * software must be clearly marked as such, and if the derived work is
8 * incompatible with the protocol description in the RFC file, it must be
9 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110010 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100011
12#include "includes.h"
Damien Miller874d77b2000-10-14 16:23:11 +110013RCSID("$OpenBSD: servconf.c,v 1.52 2000/10/11 20:14:39 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "ssh.h"
16#include "servconf.h"
17#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100018#include "compat.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
Damien Miller34132e52000-01-14 15:45:46 +110020/* add listen address */
21void add_listen_addr(ServerOptions *options, char *addr);
22
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023/* Initializes the server options to their default values. */
24
Damien Miller4af51302000-04-16 11:18:38 +100025void
Damien Miller95def091999-11-25 00:26:21 +110026initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027{
Damien Miller95def091999-11-25 00:26:21 +110028 memset(options, 0, sizeof(*options));
Damien Miller34132e52000-01-14 15:45:46 +110029 options->num_ports = 0;
30 options->ports_from_cmdline = 0;
31 options->listen_addrs = NULL;
Damien Miller95def091999-11-25 00:26:21 +110032 options->host_key_file = NULL;
Damien Millere247cc42000-05-07 12:03:14 +100033 options->host_dsa_key_file = NULL;
Damien Miller6f83b8e2000-05-02 09:23:45 +100034 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110035 options->server_key_bits = -1;
36 options->login_grace_time = -1;
37 options->key_regeneration_time = -1;
38 options->permit_root_login = -1;
39 options->ignore_rhosts = -1;
40 options->ignore_user_known_hosts = -1;
41 options->print_motd = -1;
42 options->check_mail = -1;
43 options->x11_forwarding = -1;
44 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100045 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110046 options->strict_modes = -1;
47 options->keepalives = -1;
48 options->log_facility = (SyslogFacility) - 1;
49 options->log_level = (LogLevel) - 1;
50 options->rhosts_authentication = -1;
51 options->rhosts_rsa_authentication = -1;
52 options->rsa_authentication = -1;
Damien Millere247cc42000-05-07 12:03:14 +100053 options->dsa_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110055 options->kerberos_authentication = -1;
56 options->kerberos_or_local_passwd = -1;
57 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#endif
59#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110060 options->kerberos_tgt_passing = -1;
61 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062#endif
Damien Miller95def091999-11-25 00:26:21 +110063 options->password_authentication = -1;
Damien Miller874d77b2000-10-14 16:23:11 +110064 options->kbd_interactive_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +110066 options->skey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#endif
Damien Miller95def091999-11-25 00:26:21 +110068 options->permit_empty_passwd = -1;
69 options->use_login = -1;
70 options->num_allow_users = 0;
71 options->num_deny_users = 0;
72 options->num_allow_groups = 0;
73 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100074 options->ciphers = NULL;
75 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100076 options->gateway_ports = -1;
Damien Millerf6d9e222000-06-18 14:50:44 +100077 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100078 options->max_startups_begin = -1;
79 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +100080 options->max_startups = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081}
82
Damien Miller4af51302000-04-16 11:18:38 +100083void
Damien Miller95def091999-11-25 00:26:21 +110084fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085{
Damien Miller34132e52000-01-14 15:45:46 +110086 if (options->num_ports == 0)
87 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
88 if (options->listen_addrs == NULL)
89 add_listen_addr(options, NULL);
Damien Miller95def091999-11-25 00:26:21 +110090 if (options->host_key_file == NULL)
91 options->host_key_file = HOST_KEY_FILE;
Damien Millere247cc42000-05-07 12:03:14 +100092 if (options->host_dsa_key_file == NULL)
93 options->host_dsa_key_file = HOST_DSA_KEY_FILE;
Damien Miller6f83b8e2000-05-02 09:23:45 +100094 if (options->pid_file == NULL)
95 options->pid_file = SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +110096 if (options->server_key_bits == -1)
97 options->server_key_bits = 768;
98 if (options->login_grace_time == -1)
99 options->login_grace_time = 600;
100 if (options->key_regeneration_time == -1)
101 options->key_regeneration_time = 3600;
102 if (options->permit_root_login == -1)
103 options->permit_root_login = 1; /* yes */
104 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100105 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100106 if (options->ignore_user_known_hosts == -1)
107 options->ignore_user_known_hosts = 0;
108 if (options->check_mail == -1)
109 options->check_mail = 0;
110 if (options->print_motd == -1)
111 options->print_motd = 1;
112 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100113 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100114 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100115 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000116#ifdef XAUTH_PATH
117 if (options->xauth_location == NULL)
118 options->xauth_location = XAUTH_PATH;
119#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100120 if (options->strict_modes == -1)
121 options->strict_modes = 1;
122 if (options->keepalives == -1)
123 options->keepalives = 1;
124 if (options->log_facility == (SyslogFacility) (-1))
125 options->log_facility = SYSLOG_FACILITY_AUTH;
126 if (options->log_level == (LogLevel) (-1))
127 options->log_level = SYSLOG_LEVEL_INFO;
128 if (options->rhosts_authentication == -1)
129 options->rhosts_authentication = 0;
130 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100131 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100132 if (options->rsa_authentication == -1)
133 options->rsa_authentication = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000134 if (options->dsa_authentication == -1)
135 options->dsa_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100137 if (options->kerberos_authentication == -1)
138 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
139 if (options->kerberos_or_local_passwd == -1)
140 options->kerberos_or_local_passwd = 1;
141 if (options->kerberos_ticket_cleanup == -1)
142 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143#endif /* KRB4 */
144#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100145 if (options->kerberos_tgt_passing == -1)
146 options->kerberos_tgt_passing = 0;
147 if (options->afs_token_passing == -1)
148 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100150 if (options->password_authentication == -1)
151 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100152 if (options->kbd_interactive_authentication == -1)
153 options->kbd_interactive_authentication = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->skey_authentication == -1)
156 options->skey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157#endif
Damien Miller95def091999-11-25 00:26:21 +1100158 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100159 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100160 if (options->use_login == -1)
161 options->use_login = 0;
Damien Miller78928792000-04-12 20:17:38 +1000162 if (options->protocol == SSH_PROTO_UNKNOWN)
Damien Millereba71ba2000-04-29 23:57:08 +1000163 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Millere247cc42000-05-07 12:03:14 +1000164 if (options->gateway_ports == -1)
165 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000166 if (options->max_startups == -1)
167 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000168 if (options->max_startups_rate == -1)
169 options->max_startups_rate = 100; /* 100% */
170 if (options->max_startups_begin == -1)
171 options->max_startups_begin = options->max_startups;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172}
173
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100175typedef enum {
176 sBadOption, /* == unknown option */
177 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
178 sPermitRootLogin, sLogFacility, sLogLevel,
179 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100181 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182#endif
183#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100184 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185#endif
186#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100187 sSkeyAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100189 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Damien Miller95def091999-11-25 00:26:21 +1100190 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
191 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
192 sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Damien Millere247cc42000-05-07 12:03:14 +1000193 sIgnoreUserKnownHosts, sHostDSAKeyFile, sCiphers, sProtocol, sPidFile,
Damien Miller37023962000-07-11 17:31:38 +1000194 sGatewayPorts, sDSAAuthentication, sXAuthLocation, sSubsystem, sMaxStartups
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195} ServerOpCodes;
196
197/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100198static struct {
199 const char *name;
200 ServerOpCodes opcode;
201} keywords[] = {
202 { "port", sPort },
203 { "hostkey", sHostKeyFile },
Damien Millere247cc42000-05-07 12:03:14 +1000204 { "hostdsakey", sHostDSAKeyFile },
Damien Miller6f83b8e2000-05-02 09:23:45 +1000205 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100206 { "serverkeybits", sServerKeyBits },
207 { "logingracetime", sLoginGraceTime },
208 { "keyregenerationinterval", sKeyRegenerationTime },
209 { "permitrootlogin", sPermitRootLogin },
210 { "syslogfacility", sLogFacility },
211 { "loglevel", sLogLevel },
212 { "rhostsauthentication", sRhostsAuthentication },
213 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
214 { "rsaauthentication", sRSAAuthentication },
Damien Millere247cc42000-05-07 12:03:14 +1000215 { "dsaauthentication", sDSAAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100217 { "kerberosauthentication", sKerberosAuthentication },
218 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
219 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220#endif
221#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100222 { "kerberostgtpassing", sKerberosTgtPassing },
223 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224#endif
Damien Miller95def091999-11-25 00:26:21 +1100225 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100226 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100228 { "skeyauthentication", sSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229#endif
Damien Miller95def091999-11-25 00:26:21 +1100230 { "checkmail", sCheckMail },
231 { "listenaddress", sListenAddress },
232 { "printmotd", sPrintMotd },
233 { "ignorerhosts", sIgnoreRhosts },
234 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
235 { "x11forwarding", sX11Forwarding },
236 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000237 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100238 { "strictmodes", sStrictModes },
239 { "permitemptypasswords", sEmptyPasswd },
240 { "uselogin", sUseLogin },
241 { "randomseed", sRandomSeedFile },
242 { "keepalive", sKeepAlives },
243 { "allowusers", sAllowUsers },
244 { "denyusers", sDenyUsers },
245 { "allowgroups", sAllowGroups },
246 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000247 { "ciphers", sCiphers },
248 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000249 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000250 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000251 { "maxstartups", sMaxStartups },
Damien Miller95def091999-11-25 00:26:21 +1100252 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253};
254
Damien Miller5428f641999-11-25 11:54:57 +1100255/*
256 * Returns the number of the token pointed to by cp of length len. Never
257 * returns if the token is not known.
258 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Miller4af51302000-04-16 11:18:38 +1000260static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100261parse_token(const char *cp, const char *filename,
262 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263{
Damien Miller95def091999-11-25 00:26:21 +1100264 unsigned int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller95def091999-11-25 00:26:21 +1100266 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100267 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100268 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
271 filename, linenum, cp);
272 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273}
274
Damien Miller34132e52000-01-14 15:45:46 +1100275/*
276 * add listen address
277 */
Damien Miller4af51302000-04-16 11:18:38 +1000278void
Damien Miller34132e52000-01-14 15:45:46 +1100279add_listen_addr(ServerOptions *options, char *addr)
280{
281 extern int IPv4or6;
282 struct addrinfo hints, *ai, *aitop;
283 char strport[NI_MAXSERV];
284 int gaierr;
285 int i;
286
287 if (options->num_ports == 0)
288 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
289 for (i = 0; i < options->num_ports; i++) {
290 memset(&hints, 0, sizeof(hints));
291 hints.ai_family = IPv4or6;
292 hints.ai_socktype = SOCK_STREAM;
293 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
294 snprintf(strport, sizeof strport, "%d", options->ports[i]);
295 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
296 fatal("bad addr or host: %s (%s)\n",
297 addr ? addr : "<NULL>",
298 gai_strerror(gaierr));
299 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
300 ;
301 ai->ai_next = options->listen_addrs;
302 options->listen_addrs = aitop;
303 }
304}
305
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306/* Reads the server configuration file. */
307
Damien Miller4af51302000-04-16 11:18:38 +1000308void
Damien Miller95def091999-11-25 00:26:21 +1100309read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
Damien Miller95def091999-11-25 00:26:21 +1100311 FILE *f;
312 char line[1024];
Damien Miller37023962000-07-11 17:31:38 +1000313 char *cp, **charptr, *arg;
Damien Miller95def091999-11-25 00:26:21 +1100314 int linenum, *intptr, value;
315 int bad_options = 0;
316 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000317 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller95def091999-11-25 00:26:21 +1100319 f = fopen(filename, "r");
320 if (!f) {
321 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100323 }
324 linenum = 0;
325 while (fgets(line, sizeof(line), f)) {
326 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000327 cp = line;
328 arg = strdelim(&cp);
329 /* Ignore leading whitespace */
330 if (*arg == '\0')
331 arg = strdelim(&cp);
332 if (!*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100333 continue;
Damien Miller37023962000-07-11 17:31:38 +1000334 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100335 switch (opcode) {
336 case sBadOption:
337 bad_options++;
338 continue;
339 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100340 /* ignore ports from configfile if cmdline specifies ports */
341 if (options->ports_from_cmdline)
342 continue;
343 if (options->listen_addrs != NULL)
344 fatal("%s line %d: ports must be specified before "
345 "ListenAdress.\n", filename, linenum);
346 if (options->num_ports >= MAX_PORTS)
347 fatal("%s line %d: too many ports.\n",
Damien Miller4af51302000-04-16 11:18:38 +1000348 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000349 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000350 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100351 fatal("%s line %d: missing port number.\n",
352 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000353 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100354 break;
355
356 case sServerKeyBits:
357 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100358parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000359 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000360 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100361 fprintf(stderr, "%s line %d: missing integer value.\n",
362 filename, linenum);
363 exit(1);
364 }
Damien Miller37023962000-07-11 17:31:38 +1000365 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100366 if (*intptr == -1)
367 *intptr = value;
368 break;
Damien Miller32265091999-11-12 11:33:04 +1100369
Damien Miller95def091999-11-25 00:26:21 +1100370 case sLoginGraceTime:
371 intptr = &options->login_grace_time;
372 goto parse_int;
373
374 case sKeyRegenerationTime:
375 intptr = &options->key_regeneration_time;
376 goto parse_int;
377
378 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000379 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000380 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100381 fatal("%s line %d: missing inet addr.\n",
382 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000383 add_listen_addr(options, arg);
Damien Miller95def091999-11-25 00:26:21 +1100384 break;
385
386 case sHostKeyFile:
Damien Millere247cc42000-05-07 12:03:14 +1000387 case sHostDSAKeyFile:
Damien Millerefb4afe2000-04-12 18:45:05 +1000388 charptr = (opcode == sHostKeyFile ) ?
Damien Millere247cc42000-05-07 12:03:14 +1000389 &options->host_key_file : &options->host_dsa_key_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000390parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000391 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000392 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100393 fprintf(stderr, "%s line %d: missing file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000394 filename, linenum);
395 exit(1);
396 }
397 if (*charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000398 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller6f83b8e2000-05-02 09:23:45 +1000399 break;
400
401 case sPidFile:
402 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000403 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100404
405 case sRandomSeedFile:
406 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
407 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000408 arg = strdelim(&cp);
Damien Miller95def091999-11-25 00:26:21 +1100409 break;
410
411 case sPermitRootLogin:
412 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000413 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000414 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100415 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
416 filename, linenum);
417 exit(1);
418 }
Damien Miller37023962000-07-11 17:31:38 +1000419 if (strcmp(arg, "without-password") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100420 value = 2;
Damien Miller37023962000-07-11 17:31:38 +1000421 else if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100422 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000423 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100424 value = 0;
425 else {
426 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000427 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100428 exit(1);
429 }
430 if (*intptr == -1)
431 *intptr = value;
432 break;
433
434 case sIgnoreRhosts:
435 intptr = &options->ignore_rhosts;
436parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000437 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000438 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100439 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
440 filename, linenum);
441 exit(1);
442 }
Damien Miller37023962000-07-11 17:31:38 +1000443 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100444 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000445 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100446 value = 0;
447 else {
448 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000449 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100450 exit(1);
451 }
452 if (*intptr == -1)
453 *intptr = value;
454 break;
455
456 case sIgnoreUserKnownHosts:
457 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100458 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100459
460 case sRhostsAuthentication:
461 intptr = &options->rhosts_authentication;
462 goto parse_flag;
463
464 case sRhostsRSAAuthentication:
465 intptr = &options->rhosts_rsa_authentication;
466 goto parse_flag;
467
468 case sRSAAuthentication:
469 intptr = &options->rsa_authentication;
470 goto parse_flag;
471
Damien Millere247cc42000-05-07 12:03:14 +1000472 case sDSAAuthentication:
473 intptr = &options->dsa_authentication;
474 goto parse_flag;
475
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000476#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100477 case sKerberosAuthentication:
478 intptr = &options->kerberos_authentication;
479 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Damien Miller95def091999-11-25 00:26:21 +1100481 case sKerberosOrLocalPasswd:
482 intptr = &options->kerberos_or_local_passwd;
483 goto parse_flag;
484
485 case sKerberosTicketCleanup:
486 intptr = &options->kerberos_ticket_cleanup;
487 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488#endif
Damien Miller95def091999-11-25 00:26:21 +1100489
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100491 case sKerberosTgtPassing:
492 intptr = &options->kerberos_tgt_passing;
493 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494
Damien Miller95def091999-11-25 00:26:21 +1100495 case sAFSTokenPassing:
496 intptr = &options->afs_token_passing;
497 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498#endif
499
Damien Miller95def091999-11-25 00:26:21 +1100500 case sPasswordAuthentication:
501 intptr = &options->password_authentication;
502 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503
Damien Miller874d77b2000-10-14 16:23:11 +1100504 case sKbdInteractiveAuthentication:
505 intptr = &options->kbd_interactive_authentication;
506 goto parse_flag;
507
Damien Miller95def091999-11-25 00:26:21 +1100508 case sCheckMail:
509 intptr = &options->check_mail;
510 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
512#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100513 case sSkeyAuthentication:
514 intptr = &options->skey_authentication;
515 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516#endif
517
Damien Miller95def091999-11-25 00:26:21 +1100518 case sPrintMotd:
519 intptr = &options->print_motd;
520 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller95def091999-11-25 00:26:21 +1100522 case sX11Forwarding:
523 intptr = &options->x11_forwarding;
524 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525
Damien Miller95def091999-11-25 00:26:21 +1100526 case sX11DisplayOffset:
527 intptr = &options->x11_display_offset;
528 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529
Damien Millerd3a18572000-06-07 19:55:44 +1000530 case sXAuthLocation:
531 charptr = &options->xauth_location;
532 goto parse_filename;
533
Damien Miller95def091999-11-25 00:26:21 +1100534 case sStrictModes:
535 intptr = &options->strict_modes;
536 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537
Damien Miller95def091999-11-25 00:26:21 +1100538 case sKeepAlives:
539 intptr = &options->keepalives;
540 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000541
Damien Miller95def091999-11-25 00:26:21 +1100542 case sEmptyPasswd:
543 intptr = &options->permit_empty_passwd;
544 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Damien Miller95def091999-11-25 00:26:21 +1100546 case sUseLogin:
547 intptr = &options->use_login;
548 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100549
Damien Millere247cc42000-05-07 12:03:14 +1000550 case sGatewayPorts:
551 intptr = &options->gateway_ports;
552 goto parse_flag;
553
Damien Miller95def091999-11-25 00:26:21 +1100554 case sLogFacility:
555 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000556 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000557 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100558 if (value == (SyslogFacility) - 1)
559 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000560 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100561 if (*intptr == -1)
562 *intptr = (SyslogFacility) value;
563 break;
564
565 case sLogLevel:
566 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000567 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000568 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100569 if (value == (LogLevel) - 1)
570 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000571 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100572 if (*intptr == -1)
573 *intptr = (LogLevel) value;
574 break;
575
576 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000577 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000578 if (options->num_allow_users >= MAX_ALLOW_USERS)
579 fatal("%s line %d: too many allow users.\n",
580 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000581 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100582 }
583 break;
584
585 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000586 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000587 if (options->num_deny_users >= MAX_DENY_USERS)
588 fatal( "%s line %d: too many deny users.\n",
589 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000590 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100591 }
592 break;
593
594 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000595 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000596 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
597 fatal("%s line %d: too many allow groups.\n",
598 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000599 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100600 }
601 break;
602
603 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000604 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000605 if (options->num_deny_groups >= MAX_DENY_GROUPS)
606 fatal("%s line %d: too many deny groups.\n",
607 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000608 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100609 }
610 break;
611
Damien Miller78928792000-04-12 20:17:38 +1000612 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000613 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000614 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000615 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000616 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000617 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000618 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000619 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000620 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000621 break;
622
623 case sProtocol:
624 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000625 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000626 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000627 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000628 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000629 if (value == SSH_PROTO_UNKNOWN)
630 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000631 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000632 if (*intptr == SSH_PROTO_UNKNOWN)
633 *intptr = value;
634 break;
635
Damien Millerf6d9e222000-06-18 14:50:44 +1000636 case sSubsystem:
637 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
638 fatal("%s line %d: too many subsystems defined.",
639 filename, linenum);
640 }
Damien Millerbe484b52000-07-15 14:14:16 +1000641 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000642 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000643 fatal("%s line %d: Missing subsystem name.",
644 filename, linenum);
645 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000646 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000647 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000648 filename, linenum, arg);
649 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000650 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000651 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000652 fatal("%s line %d: Missing subsystem command.",
653 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000654 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000655 options->num_subsystems++;
656 break;
657
Damien Miller37023962000-07-11 17:31:38 +1000658 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000659 arg = strdelim(&cp);
660 if (!arg || *arg == '\0')
661 fatal("%s line %d: Missing MaxStartups spec.",
662 filename, linenum);
663 if (sscanf(arg, "%d:%d:%d",
664 &options->max_startups_begin,
665 &options->max_startups_rate,
666 &options->max_startups) == 3) {
667 if (options->max_startups_begin >
668 options->max_startups ||
669 options->max_startups_rate > 100 ||
670 options->max_startups_rate < 1)
671 fatal("%s line %d: Illegal MaxStartups spec.",
672 filename, linenum);
673 break;
674 }
Damien Miller37023962000-07-11 17:31:38 +1000675 intptr = &options->max_startups;
676 goto parse_int;
677
Damien Miller95def091999-11-25 00:26:21 +1100678 default:
679 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000680 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100681 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000682 }
Damien Millerbe484b52000-07-15 14:14:16 +1000683 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000684 fprintf(stderr,
685 "%s line %d: garbage at end of line; \"%.200s\".\n",
686 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100687 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000688 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689 }
Damien Miller95def091999-11-25 00:26:21 +1100690 fclose(f);
691 if (bad_options > 0) {
692 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
693 filename, bad_options);
694 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696}