blob: 6583829e7fed2f2c7ed7c3e8511dd446b1ff02c5 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * servconf.c
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Mon Aug 21 15:48:58 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerd3a18572000-06-07 19:55:44 +100015RCSID("$Id: servconf.c,v 1.18 2000/06/07 09:55:44 djm 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 Miller4af51302000-04-16 11:18:38 +100027void
Damien Miller95def091999-11-25 00:26:21 +110028initialize_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 Millere247cc42000-05-07 12:03:14 +100035 options->host_dsa_key_file = NULL;
Damien Miller6f83b8e2000-05-02 09:23:45 +100036 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110037 options->server_key_bits = -1;
38 options->login_grace_time = -1;
39 options->key_regeneration_time = -1;
40 options->permit_root_login = -1;
41 options->ignore_rhosts = -1;
42 options->ignore_user_known_hosts = -1;
43 options->print_motd = -1;
44 options->check_mail = -1;
45 options->x11_forwarding = -1;
46 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100047 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110048 options->strict_modes = -1;
49 options->keepalives = -1;
50 options->log_facility = (SyslogFacility) - 1;
51 options->log_level = (LogLevel) - 1;
52 options->rhosts_authentication = -1;
53 options->rhosts_rsa_authentication = -1;
54 options->rsa_authentication = -1;
Damien Millere247cc42000-05-07 12:03:14 +100055 options->dsa_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +110057 options->kerberos_authentication = -1;
58 options->kerberos_or_local_passwd = -1;
59 options->kerberos_ticket_cleanup = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#endif
61#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +110062 options->kerberos_tgt_passing = -1;
63 options->afs_token_passing = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#endif
Damien Miller95def091999-11-25 00:26:21 +110065 options->password_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +110067 options->skey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#endif
Damien Miller95def091999-11-25 00:26:21 +110069 options->permit_empty_passwd = -1;
70 options->use_login = -1;
71 options->num_allow_users = 0;
72 options->num_deny_users = 0;
73 options->num_allow_groups = 0;
74 options->num_deny_groups = 0;
Damien Miller78928792000-04-12 20:17:38 +100075 options->ciphers = NULL;
76 options->protocol = SSH_PROTO_UNKNOWN;
Damien Millere247cc42000-05-07 12:03:14 +100077 options->gateway_ports = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078}
79
Damien Miller4af51302000-04-16 11:18:38 +100080void
Damien Miller95def091999-11-25 00:26:21 +110081fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082{
Damien Miller34132e52000-01-14 15:45:46 +110083 if (options->num_ports == 0)
84 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
85 if (options->listen_addrs == NULL)
86 add_listen_addr(options, NULL);
Damien Miller95def091999-11-25 00:26:21 +110087 if (options->host_key_file == NULL)
88 options->host_key_file = HOST_KEY_FILE;
Damien Millere247cc42000-05-07 12:03:14 +100089 if (options->host_dsa_key_file == NULL)
90 options->host_dsa_key_file = HOST_DSA_KEY_FILE;
Damien Miller6f83b8e2000-05-02 09:23:45 +100091 if (options->pid_file == NULL)
92 options->pid_file = SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +110093 if (options->server_key_bits == -1)
94 options->server_key_bits = 768;
95 if (options->login_grace_time == -1)
96 options->login_grace_time = 600;
97 if (options->key_regeneration_time == -1)
98 options->key_regeneration_time = 3600;
99 if (options->permit_root_login == -1)
100 options->permit_root_login = 1; /* yes */
101 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100102 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100103 if (options->ignore_user_known_hosts == -1)
104 options->ignore_user_known_hosts = 0;
105 if (options->check_mail == -1)
106 options->check_mail = 0;
107 if (options->print_motd == -1)
108 options->print_motd = 1;
109 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100110 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100111 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100112 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000113#ifdef XAUTH_PATH
114 if (options->xauth_location == NULL)
115 options->xauth_location = XAUTH_PATH;
116#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100117 if (options->strict_modes == -1)
118 options->strict_modes = 1;
119 if (options->keepalives == -1)
120 options->keepalives = 1;
121 if (options->log_facility == (SyslogFacility) (-1))
122 options->log_facility = SYSLOG_FACILITY_AUTH;
123 if (options->log_level == (LogLevel) (-1))
124 options->log_level = SYSLOG_LEVEL_INFO;
125 if (options->rhosts_authentication == -1)
126 options->rhosts_authentication = 0;
127 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100128 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100129 if (options->rsa_authentication == -1)
130 options->rsa_authentication = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000131 if (options->dsa_authentication == -1)
132 options->dsa_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100134 if (options->kerberos_authentication == -1)
135 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
136 if (options->kerberos_or_local_passwd == -1)
137 options->kerberos_or_local_passwd = 1;
138 if (options->kerberos_ticket_cleanup == -1)
139 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140#endif /* KRB4 */
141#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100142 if (options->kerberos_tgt_passing == -1)
143 options->kerberos_tgt_passing = 0;
144 if (options->afs_token_passing == -1)
145 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100147 if (options->password_authentication == -1)
148 options->password_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100150 if (options->skey_authentication == -1)
151 options->skey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152#endif
Damien Miller95def091999-11-25 00:26:21 +1100153 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100154 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->use_login == -1)
156 options->use_login = 0;
Damien Miller78928792000-04-12 20:17:38 +1000157 if (options->protocol == SSH_PROTO_UNKNOWN)
Damien Millereba71ba2000-04-29 23:57:08 +1000158 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Millere247cc42000-05-07 12:03:14 +1000159 if (options->gateway_ports == -1)
160 options->gateway_ports = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161}
162
163#define WHITESPACE " \t\r\n"
164
165/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100166typedef enum {
167 sBadOption, /* == unknown option */
168 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
169 sPermitRootLogin, sLogFacility, sLogLevel,
170 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100172 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173#endif
174#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100175 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176#endif
177#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100178 sSkeyAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179#endif
Damien Miller95def091999-11-25 00:26:21 +1100180 sPasswordAuthentication, sListenAddress,
181 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
182 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
183 sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Damien Millere247cc42000-05-07 12:03:14 +1000184 sIgnoreUserKnownHosts, sHostDSAKeyFile, sCiphers, sProtocol, sPidFile,
Damien Millerd3a18572000-06-07 19:55:44 +1000185 sGatewayPorts, sDSAAuthentication, sXAuthLocation
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186} ServerOpCodes;
187
188/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100189static struct {
190 const char *name;
191 ServerOpCodes opcode;
192} keywords[] = {
193 { "port", sPort },
194 { "hostkey", sHostKeyFile },
Damien Millere247cc42000-05-07 12:03:14 +1000195 { "hostdsakey", sHostDSAKeyFile },
Damien Miller6f83b8e2000-05-02 09:23:45 +1000196 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100197 { "serverkeybits", sServerKeyBits },
198 { "logingracetime", sLoginGraceTime },
199 { "keyregenerationinterval", sKeyRegenerationTime },
200 { "permitrootlogin", sPermitRootLogin },
201 { "syslogfacility", sLogFacility },
202 { "loglevel", sLogLevel },
203 { "rhostsauthentication", sRhostsAuthentication },
204 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
205 { "rsaauthentication", sRSAAuthentication },
Damien Millere247cc42000-05-07 12:03:14 +1000206 { "dsaauthentication", sDSAAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100208 { "kerberosauthentication", sKerberosAuthentication },
209 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
210 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211#endif
212#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100213 { "kerberostgtpassing", sKerberosTgtPassing },
214 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215#endif
Damien Miller95def091999-11-25 00:26:21 +1100216 { "passwordauthentication", sPasswordAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100218 { "skeyauthentication", sSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219#endif
Damien Miller95def091999-11-25 00:26:21 +1100220 { "checkmail", sCheckMail },
221 { "listenaddress", sListenAddress },
222 { "printmotd", sPrintMotd },
223 { "ignorerhosts", sIgnoreRhosts },
224 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
225 { "x11forwarding", sX11Forwarding },
226 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000227 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100228 { "strictmodes", sStrictModes },
229 { "permitemptypasswords", sEmptyPasswd },
230 { "uselogin", sUseLogin },
231 { "randomseed", sRandomSeedFile },
232 { "keepalive", sKeepAlives },
233 { "allowusers", sAllowUsers },
234 { "denyusers", sDenyUsers },
235 { "allowgroups", sAllowGroups },
236 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000237 { "ciphers", sCiphers },
238 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000239 { "gatewayports", sGatewayPorts },
Damien Miller95def091999-11-25 00:26:21 +1100240 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241};
242
Damien Miller5428f641999-11-25 11:54:57 +1100243/*
244 * Returns the number of the token pointed to by cp of length len. Never
245 * returns if the token is not known.
246 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller4af51302000-04-16 11:18:38 +1000248static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100249parse_token(const char *cp, const char *filename,
250 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251{
Damien Miller95def091999-11-25 00:26:21 +1100252 unsigned int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253
Damien Miller95def091999-11-25 00:26:21 +1100254 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100255 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100256 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller95def091999-11-25 00:26:21 +1100258 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
259 filename, linenum, cp);
260 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261}
262
Damien Miller34132e52000-01-14 15:45:46 +1100263/*
264 * add listen address
265 */
Damien Miller4af51302000-04-16 11:18:38 +1000266void
Damien Miller34132e52000-01-14 15:45:46 +1100267add_listen_addr(ServerOptions *options, char *addr)
268{
269 extern int IPv4or6;
270 struct addrinfo hints, *ai, *aitop;
271 char strport[NI_MAXSERV];
272 int gaierr;
273 int i;
274
275 if (options->num_ports == 0)
276 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
277 for (i = 0; i < options->num_ports; i++) {
278 memset(&hints, 0, sizeof(hints));
279 hints.ai_family = IPv4or6;
280 hints.ai_socktype = SOCK_STREAM;
281 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
282 snprintf(strport, sizeof strport, "%d", options->ports[i]);
283 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
284 fatal("bad addr or host: %s (%s)\n",
285 addr ? addr : "<NULL>",
286 gai_strerror(gaierr));
287 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
288 ;
289 ai->ai_next = options->listen_addrs;
290 options->listen_addrs = aitop;
291 }
292}
293
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294/* Reads the server configuration file. */
295
Damien Miller4af51302000-04-16 11:18:38 +1000296void
Damien Miller95def091999-11-25 00:26:21 +1100297read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298{
Damien Miller95def091999-11-25 00:26:21 +1100299 FILE *f;
300 char line[1024];
301 char *cp, **charptr;
302 int linenum, *intptr, value;
303 int bad_options = 0;
304 ServerOpCodes opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller95def091999-11-25 00:26:21 +1100306 f = fopen(filename, "r");
307 if (!f) {
308 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100310 }
311 linenum = 0;
312 while (fgets(line, sizeof(line), f)) {
313 linenum++;
314 cp = line + strspn(line, WHITESPACE);
315 if (!*cp || *cp == '#')
316 continue;
317 cp = strtok(cp, WHITESPACE);
Damien Miller95def091999-11-25 00:26:21 +1100318 opcode = parse_token(cp, filename, linenum);
319 switch (opcode) {
320 case sBadOption:
321 bad_options++;
322 continue;
323 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100324 /* ignore ports from configfile if cmdline specifies ports */
325 if (options->ports_from_cmdline)
326 continue;
327 if (options->listen_addrs != NULL)
328 fatal("%s line %d: ports must be specified before "
329 "ListenAdress.\n", filename, linenum);
330 if (options->num_ports >= MAX_PORTS)
331 fatal("%s line %d: too many ports.\n",
Damien Miller4af51302000-04-16 11:18:38 +1000332 filename, linenum);
Damien Miller34132e52000-01-14 15:45:46 +1100333 cp = strtok(NULL, WHITESPACE);
334 if (!cp)
335 fatal("%s line %d: missing port number.\n",
336 filename, linenum);
337 options->ports[options->num_ports++] = atoi(cp);
338 break;
339
340 case sServerKeyBits:
341 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100342parse_int:
343 cp = strtok(NULL, WHITESPACE);
344 if (!cp) {
345 fprintf(stderr, "%s line %d: missing integer value.\n",
346 filename, linenum);
347 exit(1);
348 }
349 value = atoi(cp);
350 if (*intptr == -1)
351 *intptr = value;
352 break;
Damien Miller32265091999-11-12 11:33:04 +1100353
Damien Miller95def091999-11-25 00:26:21 +1100354 case sLoginGraceTime:
355 intptr = &options->login_grace_time;
356 goto parse_int;
357
358 case sKeyRegenerationTime:
359 intptr = &options->key_regeneration_time;
360 goto parse_int;
361
362 case sListenAddress:
363 cp = strtok(NULL, WHITESPACE);
Damien Miller34132e52000-01-14 15:45:46 +1100364 if (!cp)
365 fatal("%s line %d: missing inet addr.\n",
366 filename, linenum);
367 add_listen_addr(options, cp);
Damien Miller95def091999-11-25 00:26:21 +1100368 break;
369
370 case sHostKeyFile:
Damien Millere247cc42000-05-07 12:03:14 +1000371 case sHostDSAKeyFile:
Damien Millerefb4afe2000-04-12 18:45:05 +1000372 charptr = (opcode == sHostKeyFile ) ?
Damien Millere247cc42000-05-07 12:03:14 +1000373 &options->host_key_file : &options->host_dsa_key_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000374parse_filename:
Damien Miller95def091999-11-25 00:26:21 +1100375 cp = strtok(NULL, WHITESPACE);
376 if (!cp) {
377 fprintf(stderr, "%s line %d: missing file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000378 filename, linenum);
379 exit(1);
380 }
381 if (*charptr == NULL)
382 *charptr = tilde_expand_filename(cp, getuid());
383 break;
384
385 case sPidFile:
386 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000387 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100388
389 case sRandomSeedFile:
390 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
391 filename, linenum);
392 cp = strtok(NULL, WHITESPACE);
393 break;
394
395 case sPermitRootLogin:
396 intptr = &options->permit_root_login;
397 cp = strtok(NULL, WHITESPACE);
398 if (!cp) {
399 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
400 filename, linenum);
401 exit(1);
402 }
403 if (strcmp(cp, "without-password") == 0)
404 value = 2;
405 else if (strcmp(cp, "yes") == 0)
406 value = 1;
407 else if (strcmp(cp, "no") == 0)
408 value = 0;
409 else {
410 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
411 filename, linenum, cp);
412 exit(1);
413 }
414 if (*intptr == -1)
415 *intptr = value;
416 break;
417
418 case sIgnoreRhosts:
419 intptr = &options->ignore_rhosts;
420parse_flag:
421 cp = strtok(NULL, WHITESPACE);
422 if (!cp) {
423 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
424 filename, linenum);
425 exit(1);
426 }
427 if (strcmp(cp, "yes") == 0)
428 value = 1;
429 else if (strcmp(cp, "no") == 0)
430 value = 0;
431 else {
432 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
433 filename, linenum, cp);
434 exit(1);
435 }
436 if (*intptr == -1)
437 *intptr = value;
438 break;
439
440 case sIgnoreUserKnownHosts:
441 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100442 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100443
444 case sRhostsAuthentication:
445 intptr = &options->rhosts_authentication;
446 goto parse_flag;
447
448 case sRhostsRSAAuthentication:
449 intptr = &options->rhosts_rsa_authentication;
450 goto parse_flag;
451
452 case sRSAAuthentication:
453 intptr = &options->rsa_authentication;
454 goto parse_flag;
455
Damien Millere247cc42000-05-07 12:03:14 +1000456 case sDSAAuthentication:
457 intptr = &options->dsa_authentication;
458 goto parse_flag;
459
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100461 case sKerberosAuthentication:
462 intptr = &options->kerberos_authentication;
463 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000464
Damien Miller95def091999-11-25 00:26:21 +1100465 case sKerberosOrLocalPasswd:
466 intptr = &options->kerberos_or_local_passwd;
467 goto parse_flag;
468
469 case sKerberosTicketCleanup:
470 intptr = &options->kerberos_ticket_cleanup;
471 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472#endif
Damien Miller95def091999-11-25 00:26:21 +1100473
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100475 case sKerberosTgtPassing:
476 intptr = &options->kerberos_tgt_passing;
477 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000478
Damien Miller95def091999-11-25 00:26:21 +1100479 case sAFSTokenPassing:
480 intptr = &options->afs_token_passing;
481 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000482#endif
483
Damien Miller95def091999-11-25 00:26:21 +1100484 case sPasswordAuthentication:
485 intptr = &options->password_authentication;
486 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487
Damien Miller95def091999-11-25 00:26:21 +1100488 case sCheckMail:
489 intptr = &options->check_mail;
490 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
492#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100493 case sSkeyAuthentication:
494 intptr = &options->skey_authentication;
495 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496#endif
497
Damien Miller95def091999-11-25 00:26:21 +1100498 case sPrintMotd:
499 intptr = &options->print_motd;
500 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller95def091999-11-25 00:26:21 +1100502 case sX11Forwarding:
503 intptr = &options->x11_forwarding;
504 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000505
Damien Miller95def091999-11-25 00:26:21 +1100506 case sX11DisplayOffset:
507 intptr = &options->x11_display_offset;
508 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
Damien Millerd3a18572000-06-07 19:55:44 +1000510 case sXAuthLocation:
511 charptr = &options->xauth_location;
512 goto parse_filename;
513
Damien Miller95def091999-11-25 00:26:21 +1100514 case sStrictModes:
515 intptr = &options->strict_modes;
516 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Miller95def091999-11-25 00:26:21 +1100518 case sKeepAlives:
519 intptr = &options->keepalives;
520 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller95def091999-11-25 00:26:21 +1100522 case sEmptyPasswd:
523 intptr = &options->permit_empty_passwd;
524 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525
Damien Miller95def091999-11-25 00:26:21 +1100526 case sUseLogin:
527 intptr = &options->use_login;
528 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100529
Damien Millere247cc42000-05-07 12:03:14 +1000530 case sGatewayPorts:
531 intptr = &options->gateway_ports;
532 goto parse_flag;
533
Damien Miller95def091999-11-25 00:26:21 +1100534 case sLogFacility:
535 intptr = (int *) &options->log_facility;
536 cp = strtok(NULL, WHITESPACE);
537 value = log_facility_number(cp);
538 if (value == (SyslogFacility) - 1)
539 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller78928792000-04-12 20:17:38 +1000540 filename, linenum, cp ? cp : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100541 if (*intptr == -1)
542 *intptr = (SyslogFacility) value;
543 break;
544
545 case sLogLevel:
546 intptr = (int *) &options->log_level;
547 cp = strtok(NULL, WHITESPACE);
548 value = log_level_number(cp);
549 if (value == (LogLevel) - 1)
550 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller78928792000-04-12 20:17:38 +1000551 filename, linenum, cp ? cp : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100552 if (*intptr == -1)
553 *intptr = (LogLevel) value;
554 break;
555
556 case sAllowUsers:
557 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000558 if (options->num_allow_users >= MAX_ALLOW_USERS)
559 fatal("%s line %d: too many allow users.\n",
560 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100561 options->allow_users[options->num_allow_users++] = xstrdup(cp);
562 }
563 break;
564
565 case sDenyUsers:
566 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000567 if (options->num_deny_users >= MAX_DENY_USERS)
568 fatal( "%s line %d: too many deny users.\n",
569 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100570 options->deny_users[options->num_deny_users++] = xstrdup(cp);
571 }
572 break;
573
574 case sAllowGroups:
575 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000576 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
577 fatal("%s line %d: too many allow groups.\n",
578 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100579 options->allow_groups[options->num_allow_groups++] = xstrdup(cp);
580 }
581 break;
582
583 case sDenyGroups:
584 while ((cp = strtok(NULL, WHITESPACE))) {
Damien Miller78928792000-04-12 20:17:38 +1000585 if (options->num_deny_groups >= MAX_DENY_GROUPS)
586 fatal("%s line %d: too many deny groups.\n",
587 filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100588 options->deny_groups[options->num_deny_groups++] = xstrdup(cp);
589 }
590 break;
591
Damien Miller78928792000-04-12 20:17:38 +1000592 case sCiphers:
593 cp = strtok(NULL, WHITESPACE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000594 if (!cp)
595 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller78928792000-04-12 20:17:38 +1000596 if (!ciphers_valid(cp))
Damien Miller30c3d422000-05-09 11:02:59 +1000597 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller78928792000-04-12 20:17:38 +1000598 filename, linenum, cp ? cp : "<NONE>");
599 if (options->ciphers == NULL)
600 options->ciphers = xstrdup(cp);
601 break;
602
603 case sProtocol:
604 intptr = &options->protocol;
605 cp = strtok(NULL, WHITESPACE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000606 if (!cp)
607 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller78928792000-04-12 20:17:38 +1000608 value = proto_spec(cp);
609 if (value == SSH_PROTO_UNKNOWN)
610 fatal("%s line %d: Bad protocol spec '%s'.",
611 filename, linenum, cp ? cp : "<NONE>");
612 if (*intptr == SSH_PROTO_UNKNOWN)
613 *intptr = value;
614 break;
615
Damien Miller95def091999-11-25 00:26:21 +1100616 default:
617 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
618 filename, linenum, cp, opcode);
619 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620 }
Damien Miller95def091999-11-25 00:26:21 +1100621 if (strtok(NULL, WHITESPACE) != NULL) {
622 fprintf(stderr, "%s line %d: garbage at end of line.\n",
623 filename, linenum);
624 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626 }
Damien Miller95def091999-11-25 00:26:21 +1100627 fclose(f);
628 if (bad_options > 0) {
629 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
630 filename, bad_options);
631 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633}