blob: 918fb8ed2c7c4f76b66e068f55f57da0e13dccde [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * servconf.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Mon Aug 21 15:48:58 1995 ylo
11 *
12 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Miller78928792000-04-12 20:17:38 +100015RCSID("$Id: servconf.c,v 1.11 2000/04/12 10:17:40 damien Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "ssh.h"
18#include "servconf.h"
19#include "xmalloc.h"
Damien Miller78928792000-04-12 20:17:38 +100020#include "compat.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Miller34132e52000-01-14 15:45:46 +110022/* add listen address */
23void add_listen_addr(ServerOptions *options, char *addr);
24
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025/* Initializes the server options to their default values. */
26
Damien Miller95def091999-11-25 00:26:21 +110027void
28initialize_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029{
Damien Miller95def091999-11-25 00:26:21 +110030 memset(options, 0, sizeof(*options));
Damien Miller34132e52000-01-14 15:45:46 +110031 options->num_ports = 0;
32 options->ports_from_cmdline = 0;
33 options->listen_addrs = NULL;
Damien Miller95def091999-11-25 00:26:21 +110034 options->host_key_file = NULL;
Damien Millerefb4afe2000-04-12 18:45:05 +100035 options->dsa_key_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110036 options->server_key_bits = -1;
37 options->login_grace_time = -1;
38 options->key_regeneration_time = -1;
39 options->permit_root_login = -1;
40 options->ignore_rhosts = -1;
41 options->ignore_user_known_hosts = -1;
42 options->print_motd = -1;
43 options->check_mail = -1;
44 options->x11_forwarding = -1;
45 options->x11_display_offset = -1;
46 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 Millerd4a8b7e1999-10-27 13:42:43 +100053#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110054 options->kerberos_authentication = -1;
55 options->kerberos_or_local_passwd = -1;
56 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057#endif
58#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110059 options->kerberos_tgt_passing = -1;
60 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061#endif
Damien Miller95def091999-11-25 00:26:21 +110062 options->password_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +110064 options->skey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#endif
Damien Miller95def091999-11-25 00:26:21 +110066 options->permit_empty_passwd = -1;
67 options->use_login = -1;
68 options->num_allow_users = 0;
69 options->num_deny_users = 0;
70 options->num_allow_groups = 0;
71 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100072 options->ciphers = NULL;
73 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074}
75
Damien Miller95def091999-11-25 00:26:21 +110076void
77fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078{
Damien Miller34132e52000-01-14 15:45:46 +110079 if (options->num_ports == 0)
80 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
81 if (options->listen_addrs == NULL)
82 add_listen_addr(options, NULL);
Damien Miller95def091999-11-25 00:26:21 +110083 if (options->host_key_file == NULL)
84 options->host_key_file = HOST_KEY_FILE;
Damien Millerefb4afe2000-04-12 18:45:05 +100085 if (options->dsa_key_file == NULL)
86 options->dsa_key_file = DSA_KEY_FILE;
Damien Miller95def091999-11-25 00:26:21 +110087 if (options->server_key_bits == -1)
88 options->server_key_bits = 768;
89 if (options->login_grace_time == -1)
90 options->login_grace_time = 600;
91 if (options->key_regeneration_time == -1)
92 options->key_regeneration_time = 3600;
93 if (options->permit_root_login == -1)
94 options->permit_root_login = 1; /* yes */
95 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +110096 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +110097 if (options->ignore_user_known_hosts == -1)
98 options->ignore_user_known_hosts = 0;
99 if (options->check_mail == -1)
100 options->check_mail = 0;
101 if (options->print_motd == -1)
102 options->print_motd = 1;
103 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100104 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100105 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100106 options->x11_display_offset = 10;
Damien Miller95def091999-11-25 00:26:21 +1100107 if (options->strict_modes == -1)
108 options->strict_modes = 1;
109 if (options->keepalives == -1)
110 options->keepalives = 1;
111 if (options->log_facility == (SyslogFacility) (-1))
112 options->log_facility = SYSLOG_FACILITY_AUTH;
113 if (options->log_level == (LogLevel) (-1))
114 options->log_level = SYSLOG_LEVEL_INFO;
115 if (options->rhosts_authentication == -1)
116 options->rhosts_authentication = 0;
117 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100118 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100119 if (options->rsa_authentication == -1)
120 options->rsa_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100122 if (options->kerberos_authentication == -1)
123 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
124 if (options->kerberos_or_local_passwd == -1)
125 options->kerberos_or_local_passwd = 1;
126 if (options->kerberos_ticket_cleanup == -1)
127 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128#endif /* KRB4 */
129#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100130 if (options->kerberos_tgt_passing == -1)
131 options->kerberos_tgt_passing = 0;
132 if (options->afs_token_passing == -1)
133 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100135 if (options->password_authentication == -1)
136 options->password_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100138 if (options->skey_authentication == -1)
139 options->skey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140#endif
Damien Miller95def091999-11-25 00:26:21 +1100141 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100142 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100143 if (options->use_login == -1)
144 options->use_login = 0;
Damien Miller78928792000-04-12 20:17:38 +1000145 if (options->protocol == SSH_PROTO_UNKNOWN)
146 options->protocol = SSH_PROTO_1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147}
148
149#define WHITESPACE " \t\r\n"
150
151/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100152typedef enum {
153 sBadOption, /* == unknown option */
154 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
155 sPermitRootLogin, sLogFacility, sLogLevel,
156 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100158 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159#endif
160#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100161 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162#endif
163#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100164 sSkeyAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#endif
Damien Miller95def091999-11-25 00:26:21 +1100166 sPasswordAuthentication, sListenAddress,
167 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
168 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
169 sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Damien Miller78928792000-04-12 20:17:38 +1000170 sIgnoreUserKnownHosts, sDSAKeyFile, sCiphers, sProtocol
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171} ServerOpCodes;
172
173/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100174static struct {
175 const char *name;
176 ServerOpCodes opcode;
177} keywords[] = {
178 { "port", sPort },
179 { "hostkey", sHostKeyFile },
Damien Millerefb4afe2000-04-12 18:45:05 +1000180 { "dsakey", sDSAKeyFile },
Damien Miller95def091999-11-25 00:26:21 +1100181 { "serverkeybits", sServerKeyBits },
182 { "logingracetime", sLoginGraceTime },
183 { "keyregenerationinterval", sKeyRegenerationTime },
184 { "permitrootlogin", sPermitRootLogin },
185 { "syslogfacility", sLogFacility },
186 { "loglevel", sLogLevel },
187 { "rhostsauthentication", sRhostsAuthentication },
188 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
189 { "rsaauthentication", sRSAAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100191 { "kerberosauthentication", sKerberosAuthentication },
192 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
193 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194#endif
195#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100196 { "kerberostgtpassing", sKerberosTgtPassing },
197 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198#endif
Damien Miller95def091999-11-25 00:26:21 +1100199 { "passwordauthentication", sPasswordAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100201 { "skeyauthentication", sSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202#endif
Damien Miller95def091999-11-25 00:26:21 +1100203 { "checkmail", sCheckMail },
204 { "listenaddress", sListenAddress },
205 { "printmotd", sPrintMotd },
206 { "ignorerhosts", sIgnoreRhosts },
207 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
208 { "x11forwarding", sX11Forwarding },
209 { "x11displayoffset", sX11DisplayOffset },
210 { "strictmodes", sStrictModes },
211 { "permitemptypasswords", sEmptyPasswd },
212 { "uselogin", sUseLogin },
213 { "randomseed", sRandomSeedFile },
214 { "keepalive", sKeepAlives },
215 { "allowusers", sAllowUsers },
216 { "denyusers", sDenyUsers },
217 { "allowgroups", sAllowGroups },
218 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000219 { "ciphers", sCiphers },
220 { "protocol", sProtocol },
Damien Miller95def091999-11-25 00:26:21 +1100221 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222};
223
Damien Miller5428f641999-11-25 11:54:57 +1100224/*
225 * Returns the number of the token pointed to by cp of length len. Never
226 * returns if the token is not known.
227 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller95def091999-11-25 00:26:21 +1100229static ServerOpCodes
230parse_token(const char *cp, const char *filename,
231 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 unsigned int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234
Damien Miller95def091999-11-25 00:26:21 +1100235 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100236 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100237 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238
Damien Miller95def091999-11-25 00:26:21 +1100239 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
240 filename, linenum, cp);
241 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242}
243
Damien Miller34132e52000-01-14 15:45:46 +1100244/*
245 * add listen address
246 */
247void
248add_listen_addr(ServerOptions *options, char *addr)
249{
250 extern int IPv4or6;
251 struct addrinfo hints, *ai, *aitop;
252 char strport[NI_MAXSERV];
253 int gaierr;
254 int i;
255
256 if (options->num_ports == 0)
257 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
258 for (i = 0; i < options->num_ports; i++) {
259 memset(&hints, 0, sizeof(hints));
260 hints.ai_family = IPv4or6;
261 hints.ai_socktype = SOCK_STREAM;
262 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
263 snprintf(strport, sizeof strport, "%d", options->ports[i]);
264 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
265 fatal("bad addr or host: %s (%s)\n",
266 addr ? addr : "<NULL>",
267 gai_strerror(gaierr));
268 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
269 ;
270 ai->ai_next = options->listen_addrs;
271 options->listen_addrs = aitop;
272 }
273}
274
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275/* Reads the server configuration file. */
276
Damien Miller95def091999-11-25 00:26:21 +1100277void
278read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279{
Damien Miller95def091999-11-25 00:26:21 +1100280 FILE *f;
281 char line[1024];
282 char *cp, **charptr;
283 int linenum, *intptr, value;
284 int bad_options = 0;
285 ServerOpCodes opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Damien Miller95def091999-11-25 00:26:21 +1100287 f = fopen(filename, "r");
288 if (!f) {
289 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100291 }
292 linenum = 0;
293 while (fgets(line, sizeof(line), f)) {
294 linenum++;
295 cp = line + strspn(line, WHITESPACE);
296 if (!*cp || *cp == '#')
297 continue;
298 cp = strtok(cp, WHITESPACE);
Damien Miller95def091999-11-25 00:26:21 +1100299 opcode = parse_token(cp, filename, linenum);
300 switch (opcode) {
301 case sBadOption:
302 bad_options++;
303 continue;
304 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100305 /* ignore ports from configfile if cmdline specifies ports */
306 if (options->ports_from_cmdline)
307 continue;
308 if (options->listen_addrs != NULL)
309 fatal("%s line %d: ports must be specified before "
310 "ListenAdress.\n", filename, linenum);
311 if (options->num_ports >= MAX_PORTS)
312 fatal("%s line %d: too many ports.\n",
313 filename, linenum);
314 cp = strtok(NULL, WHITESPACE);
315 if (!cp)
316 fatal("%s line %d: missing port number.\n",
317 filename, linenum);
318 options->ports[options->num_ports++] = atoi(cp);
319 break;
320
321 case sServerKeyBits:
322 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100323parse_int:
324 cp = strtok(NULL, WHITESPACE);
325 if (!cp) {
326 fprintf(stderr, "%s line %d: missing integer value.\n",
327 filename, linenum);
328 exit(1);
329 }
330 value = atoi(cp);
331 if (*intptr == -1)
332 *intptr = value;
333 break;
Damien Miller32265091999-11-12 11:33:04 +1100334
Damien Miller95def091999-11-25 00:26:21 +1100335 case sLoginGraceTime:
336 intptr = &options->login_grace_time;
337 goto parse_int;
338
339 case sKeyRegenerationTime:
340 intptr = &options->key_regeneration_time;
341 goto parse_int;
342
343 case sListenAddress:
344 cp = strtok(NULL, WHITESPACE);
Damien Miller34132e52000-01-14 15:45:46 +1100345 if (!cp)
346 fatal("%s line %d: missing inet addr.\n",
347 filename, linenum);
348 add_listen_addr(options, cp);
Damien Miller95def091999-11-25 00:26:21 +1100349 break;
350
351 case sHostKeyFile:
Damien Millerefb4afe2000-04-12 18:45:05 +1000352 case sDSAKeyFile:
353 charptr = (opcode == sHostKeyFile ) ?
354 &options->host_key_file : &options->dsa_key_file;
Damien Miller95def091999-11-25 00:26:21 +1100355 cp = strtok(NULL, WHITESPACE);
356 if (!cp) {
357 fprintf(stderr, "%s line %d: missing file name.\n",
358 filename, linenum);
359 exit(1);
360 }
361 if (*charptr == NULL)
362 *charptr = tilde_expand_filename(cp, getuid());
363 break;
364
365 case sRandomSeedFile:
366 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
367 filename, linenum);
368 cp = strtok(NULL, WHITESPACE);
369 break;
370
371 case sPermitRootLogin:
372 intptr = &options->permit_root_login;
373 cp = strtok(NULL, WHITESPACE);
374 if (!cp) {
375 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
376 filename, linenum);
377 exit(1);
378 }
379 if (strcmp(cp, "without-password") == 0)
380 value = 2;
381 else if (strcmp(cp, "yes") == 0)
382 value = 1;
383 else if (strcmp(cp, "no") == 0)
384 value = 0;
385 else {
386 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
387 filename, linenum, cp);
388 exit(1);
389 }
390 if (*intptr == -1)
391 *intptr = value;
392 break;
393
394 case sIgnoreRhosts:
395 intptr = &options->ignore_rhosts;
396parse_flag:
397 cp = strtok(NULL, WHITESPACE);
398 if (!cp) {
399 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
400 filename, linenum);
401 exit(1);
402 }
403 if (strcmp(cp, "yes") == 0)
404 value = 1;
405 else if (strcmp(cp, "no") == 0)
406 value = 0;
407 else {
408 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
409 filename, linenum, cp);
410 exit(1);
411 }
412 if (*intptr == -1)
413 *intptr = value;
414 break;
415
416 case sIgnoreUserKnownHosts:
417 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100418 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100419
420 case sRhostsAuthentication:
421 intptr = &options->rhosts_authentication;
422 goto parse_flag;
423
424 case sRhostsRSAAuthentication:
425 intptr = &options->rhosts_rsa_authentication;
426 goto parse_flag;
427
428 case sRSAAuthentication:
429 intptr = &options->rsa_authentication;
430 goto parse_flag;
431
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100433 case sKerberosAuthentication:
434 intptr = &options->kerberos_authentication;
435 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller95def091999-11-25 00:26:21 +1100437 case sKerberosOrLocalPasswd:
438 intptr = &options->kerberos_or_local_passwd;
439 goto parse_flag;
440
441 case sKerberosTicketCleanup:
442 intptr = &options->kerberos_ticket_cleanup;
443 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444#endif
Damien Miller95def091999-11-25 00:26:21 +1100445
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100447 case sKerberosTgtPassing:
448 intptr = &options->kerberos_tgt_passing;
449 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000450
Damien Miller95def091999-11-25 00:26:21 +1100451 case sAFSTokenPassing:
452 intptr = &options->afs_token_passing;
453 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454#endif
455
Damien Miller95def091999-11-25 00:26:21 +1100456 case sPasswordAuthentication:
457 intptr = &options->password_authentication;
458 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000459
Damien Miller95def091999-11-25 00:26:21 +1100460 case sCheckMail:
461 intptr = &options->check_mail;
462 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463
464#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100465 case sSkeyAuthentication:
466 intptr = &options->skey_authentication;
467 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468#endif
469
Damien Miller95def091999-11-25 00:26:21 +1100470 case sPrintMotd:
471 intptr = &options->print_motd;
472 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473
Damien Miller95def091999-11-25 00:26:21 +1100474 case sX11Forwarding:
475 intptr = &options->x11_forwarding;
476 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477
Damien Miller95def091999-11-25 00:26:21 +1100478 case sX11DisplayOffset:
479 intptr = &options->x11_display_offset;
480 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481
Damien Miller95def091999-11-25 00:26:21 +1100482 case sStrictModes:
483 intptr = &options->strict_modes;
484 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Damien Miller95def091999-11-25 00:26:21 +1100486 case sKeepAlives:
487 intptr = &options->keepalives;
488 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Miller95def091999-11-25 00:26:21 +1100490 case sEmptyPasswd:
491 intptr = &options->permit_empty_passwd;
492 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493
Damien Miller95def091999-11-25 00:26:21 +1100494 case sUseLogin:
495 intptr = &options->use_login;
496 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100497
Damien Miller95def091999-11-25 00:26:21 +1100498 case sLogFacility:
499 intptr = (int *) &options->log_facility;
500 cp = strtok(NULL, WHITESPACE);
501 value = log_facility_number(cp);
502 if (value == (SyslogFacility) - 1)
503 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller78928792000-04-12 20:17:38 +1000504 filename, linenum, cp ? cp : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100505 if (*intptr == -1)
506 *intptr = (SyslogFacility) value;
507 break;
508
509 case sLogLevel:
510 intptr = (int *) &options->log_level;
511 cp = strtok(NULL, WHITESPACE);
512 value = log_level_number(cp);
513 if (value == (LogLevel) - 1)
514 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller78928792000-04-12 20:17:38 +1000515 filename, linenum, cp ? cp : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100516 if (*intptr == -1)
517 *intptr = (LogLevel) value;
518 break;
519
520 case sAllowUsers:
521 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000522 if (options->num_allow_users >= MAX_ALLOW_USERS)
523 fatal("%s line %d: too many allow users.\n",
524 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100525 options->allow_users[options->num_allow_users++] = xstrdup(cp);
526 }
527 break;
528
529 case sDenyUsers:
530 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000531 if (options->num_deny_users >= MAX_DENY_USERS)
532 fatal( "%s line %d: too many deny users.\n",
533 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100534 options->deny_users[options->num_deny_users++] = xstrdup(cp);
535 }
536 break;
537
538 case sAllowGroups:
539 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000540 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
541 fatal("%s line %d: too many allow groups.\n",
542 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100543 options->allow_groups[options->num_allow_groups++] = xstrdup(cp);
544 }
545 break;
546
547 case sDenyGroups:
548 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000549 if (options->num_deny_groups >= MAX_DENY_GROUPS)
550 fatal("%s line %d: too many deny groups.\n",
551 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100552 options->deny_groups[options->num_deny_groups++] = xstrdup(cp);
553 }
554 break;
555
Damien Miller78928792000-04-12 20:17:38 +1000556 case sCiphers:
557 cp = strtok(NULL, WHITESPACE);
558 if (!ciphers_valid(cp))
559 fatal("%s line %d: Bad cipher spec '%s'.",
560 filename, linenum, cp ? cp : "<NONE>");
561 if (options->ciphers == NULL)
562 options->ciphers = xstrdup(cp);
563 break;
564
565 case sProtocol:
566 intptr = &options->protocol;
567 cp = strtok(NULL, WHITESPACE);
568 value = proto_spec(cp);
569 if (value == SSH_PROTO_UNKNOWN)
570 fatal("%s line %d: Bad protocol spec '%s'.",
571 filename, linenum, cp ? cp : "<NONE>");
572 if (*intptr == SSH_PROTO_UNKNOWN)
573 *intptr = value;
574 break;
575
Damien Miller95def091999-11-25 00:26:21 +1100576 default:
577 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
578 filename, linenum, cp, opcode);
579 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580 }
Damien Miller95def091999-11-25 00:26:21 +1100581 if (strtok(NULL, WHITESPACE) != NULL) {
582 fprintf(stderr, "%s line %d: garbage at end of line.\n",
583 filename, linenum);
584 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 }
Damien Miller95def091999-11-25 00:26:21 +1100587 fclose(f);
588 if (bad_options > 0) {
589 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
590 filename, bad_options);
591 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593}