blob: 8dd6e7d88973a4ecb6968661fa14d5c25bd34db1 [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 Lindstrom46c16222000-12-22 01:43:59 +000013RCSID("$OpenBSD: servconf.c,v 1.55 2000/12/19 23:17:57 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 Miller0bc1bd82000-11-13 22:57:25 +110032 options->num_host_key_files = 0;
Damien Miller6f83b8e2000-05-02 09:23:45 +100033 options->pid_file = NULL;
Damien Miller95def091999-11-25 00:26:21 +110034 options->server_key_bits = -1;
35 options->login_grace_time = -1;
36 options->key_regeneration_time = -1;
37 options->permit_root_login = -1;
38 options->ignore_rhosts = -1;
39 options->ignore_user_known_hosts = -1;
40 options->print_motd = -1;
41 options->check_mail = -1;
42 options->x11_forwarding = -1;
43 options->x11_display_offset = -1;
Damien Millerd3a18572000-06-07 19:55:44 +100044 options->xauth_location = NULL;
Damien Miller95def091999-11-25 00:26:21 +110045 options->strict_modes = -1;
46 options->keepalives = -1;
47 options->log_facility = (SyslogFacility) - 1;
48 options->log_level = (LogLevel) - 1;
49 options->rhosts_authentication = -1;
50 options->rhosts_rsa_authentication = -1;
51 options->rsa_authentication = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +110052 options->pubkey_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 Miller874d77b2000-10-14 16:23:11 +110063 options->kbd_interactive_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +110065 options->skey_authentication = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#endif
Damien Miller95def091999-11-25 00:26:21 +110067 options->permit_empty_passwd = -1;
68 options->use_login = -1;
Damien Miller50a41ed2000-10-16 12:14:42 +110069 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110070 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 Miller0bc1bd82000-11-13 22:57:25 +110086 if (options->protocol == SSH_PROTO_UNKNOWN)
87 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
88 if (options->num_host_key_files == 0) {
89 /* fill default hostkeys for protocols */
90 if (options->protocol & SSH_PROTO_1)
91 options->host_key_files[options->num_host_key_files++] = HOST_KEY_FILE;
92 if (options->protocol & SSH_PROTO_2)
93 options->host_key_files[options->num_host_key_files++] = HOST_DSA_KEY_FILE;
94 }
Damien Miller34132e52000-01-14 15:45:46 +110095 if (options->num_ports == 0)
96 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
97 if (options->listen_addrs == NULL)
98 add_listen_addr(options, NULL);
Damien Miller6f83b8e2000-05-02 09:23:45 +100099 if (options->pid_file == NULL)
100 options->pid_file = SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +1100101 if (options->server_key_bits == -1)
102 options->server_key_bits = 768;
103 if (options->login_grace_time == -1)
104 options->login_grace_time = 600;
105 if (options->key_regeneration_time == -1)
106 options->key_regeneration_time = 3600;
107 if (options->permit_root_login == -1)
108 options->permit_root_login = 1; /* yes */
109 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100110 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100111 if (options->ignore_user_known_hosts == -1)
112 options->ignore_user_known_hosts = 0;
113 if (options->check_mail == -1)
114 options->check_mail = 0;
115 if (options->print_motd == -1)
116 options->print_motd = 1;
117 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100118 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100119 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100120 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000121#ifdef XAUTH_PATH
122 if (options->xauth_location == NULL)
123 options->xauth_location = XAUTH_PATH;
124#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100125 if (options->strict_modes == -1)
126 options->strict_modes = 1;
127 if (options->keepalives == -1)
128 options->keepalives = 1;
129 if (options->log_facility == (SyslogFacility) (-1))
130 options->log_facility = SYSLOG_FACILITY_AUTH;
131 if (options->log_level == (LogLevel) (-1))
132 options->log_level = SYSLOG_LEVEL_INFO;
133 if (options->rhosts_authentication == -1)
134 options->rhosts_authentication = 0;
135 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100136 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100137 if (options->rsa_authentication == -1)
138 options->rsa_authentication = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100139 if (options->pubkey_authentication == -1)
140 options->pubkey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100142 if (options->kerberos_authentication == -1)
143 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
144 if (options->kerberos_or_local_passwd == -1)
145 options->kerberos_or_local_passwd = 1;
146 if (options->kerberos_ticket_cleanup == -1)
147 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148#endif /* KRB4 */
149#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100150 if (options->kerberos_tgt_passing == -1)
151 options->kerberos_tgt_passing = 0;
152 if (options->afs_token_passing == -1)
153 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100155 if (options->password_authentication == -1)
156 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100157 if (options->kbd_interactive_authentication == -1)
158 options->kbd_interactive_authentication = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100160 if (options->skey_authentication == -1)
161 options->skey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162#endif
Damien Miller95def091999-11-25 00:26:21 +1100163 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100164 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100165 if (options->use_login == -1)
166 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100167 if (options->allow_tcp_forwarding == -1)
168 options->allow_tcp_forwarding = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000169 if (options->gateway_ports == -1)
170 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000171 if (options->max_startups == -1)
172 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000173 if (options->max_startups_rate == -1)
174 options->max_startups_rate = 100; /* 100% */
175 if (options->max_startups_begin == -1)
176 options->max_startups_begin = options->max_startups;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177}
178
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100180typedef enum {
181 sBadOption, /* == unknown option */
182 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
183 sPermitRootLogin, sLogFacility, sLogLevel,
184 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100186 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187#endif
188#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100189 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190#endif
191#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100192 sSkeyAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100194 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Damien Miller95def091999-11-25 00:26:21 +1100195 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
196 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
Damien Miller50a41ed2000-10-16 12:14:42 +1100197 sUseLogin, sAllowTcpForwarding,
198 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100199 sIgnoreUserKnownHosts, sCiphers, sProtocol, sPidFile,
200 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201} ServerOpCodes;
202
203/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100204static struct {
205 const char *name;
206 ServerOpCodes opcode;
207} keywords[] = {
208 { "port", sPort },
209 { "hostkey", sHostKeyFile },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100210 { "hostdsakey", sHostKeyFile }, /* alias */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000211 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100212 { "serverkeybits", sServerKeyBits },
213 { "logingracetime", sLoginGraceTime },
214 { "keyregenerationinterval", sKeyRegenerationTime },
215 { "permitrootlogin", sPermitRootLogin },
216 { "syslogfacility", sLogFacility },
217 { "loglevel", sLogLevel },
218 { "rhostsauthentication", sRhostsAuthentication },
219 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
220 { "rsaauthentication", sRSAAuthentication },
Damien Miller0bc1bd82000-11-13 22:57:25 +1100221 { "pubkeyauthentication", sPubkeyAuthentication },
222 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100224 { "kerberosauthentication", sKerberosAuthentication },
225 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
226 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227#endif
228#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100229 { "kerberostgtpassing", sKerberosTgtPassing },
230 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231#endif
Damien Miller95def091999-11-25 00:26:21 +1100232 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100233 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100235 { "skeyauthentication", sSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236#endif
Damien Miller95def091999-11-25 00:26:21 +1100237 { "checkmail", sCheckMail },
238 { "listenaddress", sListenAddress },
239 { "printmotd", sPrintMotd },
240 { "ignorerhosts", sIgnoreRhosts },
241 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
242 { "x11forwarding", sX11Forwarding },
243 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000244 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100245 { "strictmodes", sStrictModes },
246 { "permitemptypasswords", sEmptyPasswd },
247 { "uselogin", sUseLogin },
248 { "randomseed", sRandomSeedFile },
249 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100250 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100251 { "allowusers", sAllowUsers },
252 { "denyusers", sDenyUsers },
253 { "allowgroups", sAllowGroups },
254 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000255 { "ciphers", sCiphers },
256 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000257 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000258 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000259 { "maxstartups", sMaxStartups },
Damien Miller95def091999-11-25 00:26:21 +1100260 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261};
262
Damien Miller5428f641999-11-25 11:54:57 +1100263/*
264 * Returns the number of the token pointed to by cp of length len. Never
265 * returns if the token is not known.
266 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267
Damien Miller4af51302000-04-16 11:18:38 +1000268static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100269parse_token(const char *cp, const char *filename,
270 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000272 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller95def091999-11-25 00:26:21 +1100274 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100275 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100276 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller95def091999-11-25 00:26:21 +1100278 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
279 filename, linenum, cp);
280 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281}
282
Damien Miller34132e52000-01-14 15:45:46 +1100283/*
284 * add listen address
285 */
Damien Miller4af51302000-04-16 11:18:38 +1000286void
Damien Miller34132e52000-01-14 15:45:46 +1100287add_listen_addr(ServerOptions *options, char *addr)
288{
289 extern int IPv4or6;
290 struct addrinfo hints, *ai, *aitop;
291 char strport[NI_MAXSERV];
292 int gaierr;
293 int i;
294
295 if (options->num_ports == 0)
296 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
297 for (i = 0; i < options->num_ports; i++) {
298 memset(&hints, 0, sizeof(hints));
299 hints.ai_family = IPv4or6;
300 hints.ai_socktype = SOCK_STREAM;
301 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
302 snprintf(strport, sizeof strport, "%d", options->ports[i]);
303 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
304 fatal("bad addr or host: %s (%s)\n",
305 addr ? addr : "<NULL>",
306 gai_strerror(gaierr));
307 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
308 ;
309 ai->ai_next = options->listen_addrs;
310 options->listen_addrs = aitop;
311 }
312}
313
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314/* Reads the server configuration file. */
315
Damien Miller4af51302000-04-16 11:18:38 +1000316void
Damien Miller95def091999-11-25 00:26:21 +1100317read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318{
Damien Miller95def091999-11-25 00:26:21 +1100319 FILE *f;
320 char line[1024];
Damien Miller37023962000-07-11 17:31:38 +1000321 char *cp, **charptr, *arg;
Damien Miller95def091999-11-25 00:26:21 +1100322 int linenum, *intptr, value;
323 int bad_options = 0;
324 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000325 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Damien Miller95def091999-11-25 00:26:21 +1100327 f = fopen(filename, "r");
328 if (!f) {
329 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100331 }
332 linenum = 0;
333 while (fgets(line, sizeof(line), f)) {
334 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000335 cp = line;
336 arg = strdelim(&cp);
337 /* Ignore leading whitespace */
338 if (*arg == '\0')
339 arg = strdelim(&cp);
340 if (!*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100341 continue;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100342 intptr = NULL;
343 charptr = NULL;
Damien Miller37023962000-07-11 17:31:38 +1000344 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100345 switch (opcode) {
346 case sBadOption:
347 bad_options++;
348 continue;
349 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100350 /* ignore ports from configfile if cmdline specifies ports */
351 if (options->ports_from_cmdline)
352 continue;
353 if (options->listen_addrs != NULL)
354 fatal("%s line %d: ports must be specified before "
355 "ListenAdress.\n", filename, linenum);
356 if (options->num_ports >= MAX_PORTS)
357 fatal("%s line %d: too many ports.\n",
Damien Miller4af51302000-04-16 11:18:38 +1000358 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000359 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000360 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100361 fatal("%s line %d: missing port number.\n",
362 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000363 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100364 break;
365
366 case sServerKeyBits:
367 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100368parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000369 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000370 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100371 fprintf(stderr, "%s line %d: missing integer value.\n",
372 filename, linenum);
373 exit(1);
374 }
Damien Miller37023962000-07-11 17:31:38 +1000375 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100376 if (*intptr == -1)
377 *intptr = value;
378 break;
Damien Miller32265091999-11-12 11:33:04 +1100379
Damien Miller95def091999-11-25 00:26:21 +1100380 case sLoginGraceTime:
381 intptr = &options->login_grace_time;
382 goto parse_int;
383
384 case sKeyRegenerationTime:
385 intptr = &options->key_regeneration_time;
386 goto parse_int;
387
388 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000389 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000390 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100391 fatal("%s line %d: missing inet addr.\n",
392 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000393 add_listen_addr(options, arg);
Damien Miller95def091999-11-25 00:26:21 +1100394 break;
395
396 case sHostKeyFile:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100397 intptr = &options->num_host_key_files;
398 if (*intptr >= MAX_HOSTKEYS) {
399 fprintf(stderr, "%s line %d: to many host keys specified (max %d).\n",
400 filename, linenum, MAX_HOSTKEYS);
401 exit(1);
402 }
403 charptr = &options->host_key_files[*intptr];
Damien Millerd3a18572000-06-07 19:55:44 +1000404parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000405 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000406 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100407 fprintf(stderr, "%s line %d: missing file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000408 filename, linenum);
409 exit(1);
410 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100411 if (*charptr == NULL) {
Damien Miller37023962000-07-11 17:31:38 +1000412 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller0bc1bd82000-11-13 22:57:25 +1100413 /* increase optional counter */
414 if (intptr != NULL)
415 *intptr = *intptr + 1;
416 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000417 break;
418
419 case sPidFile:
420 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000421 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100422
423 case sRandomSeedFile:
424 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
425 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000426 arg = strdelim(&cp);
Damien Miller95def091999-11-25 00:26:21 +1100427 break;
428
429 case sPermitRootLogin:
430 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000431 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000432 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100433 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
434 filename, linenum);
435 exit(1);
436 }
Damien Miller37023962000-07-11 17:31:38 +1000437 if (strcmp(arg, "without-password") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100438 value = 2;
Damien Miller37023962000-07-11 17:31:38 +1000439 else if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100440 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000441 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100442 value = 0;
443 else {
444 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000445 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100446 exit(1);
447 }
448 if (*intptr == -1)
449 *intptr = value;
450 break;
451
452 case sIgnoreRhosts:
453 intptr = &options->ignore_rhosts;
454parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000455 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000456 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100457 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
458 filename, linenum);
459 exit(1);
460 }
Damien Miller37023962000-07-11 17:31:38 +1000461 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100462 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000463 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100464 value = 0;
465 else {
466 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000467 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100468 exit(1);
469 }
470 if (*intptr == -1)
471 *intptr = value;
472 break;
473
474 case sIgnoreUserKnownHosts:
475 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100476 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100477
478 case sRhostsAuthentication:
479 intptr = &options->rhosts_authentication;
480 goto parse_flag;
481
482 case sRhostsRSAAuthentication:
483 intptr = &options->rhosts_rsa_authentication;
484 goto parse_flag;
485
486 case sRSAAuthentication:
487 intptr = &options->rsa_authentication;
488 goto parse_flag;
489
Damien Miller0bc1bd82000-11-13 22:57:25 +1100490 case sPubkeyAuthentication:
491 intptr = &options->pubkey_authentication;
Damien Millere247cc42000-05-07 12:03:14 +1000492 goto parse_flag;
493
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100495 case sKerberosAuthentication:
496 intptr = &options->kerberos_authentication;
497 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498
Damien Miller95def091999-11-25 00:26:21 +1100499 case sKerberosOrLocalPasswd:
500 intptr = &options->kerberos_or_local_passwd;
501 goto parse_flag;
502
503 case sKerberosTicketCleanup:
504 intptr = &options->kerberos_ticket_cleanup;
505 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506#endif
Damien Miller95def091999-11-25 00:26:21 +1100507
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100509 case sKerberosTgtPassing:
510 intptr = &options->kerberos_tgt_passing;
511 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512
Damien Miller95def091999-11-25 00:26:21 +1100513 case sAFSTokenPassing:
514 intptr = &options->afs_token_passing;
515 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516#endif
517
Damien Miller95def091999-11-25 00:26:21 +1100518 case sPasswordAuthentication:
519 intptr = &options->password_authentication;
520 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller874d77b2000-10-14 16:23:11 +1100522 case sKbdInteractiveAuthentication:
523 intptr = &options->kbd_interactive_authentication;
524 goto parse_flag;
525
Damien Miller95def091999-11-25 00:26:21 +1100526 case sCheckMail:
527 intptr = &options->check_mail;
528 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529
530#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100531 case sSkeyAuthentication:
532 intptr = &options->skey_authentication;
533 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534#endif
535
Damien Miller95def091999-11-25 00:26:21 +1100536 case sPrintMotd:
537 intptr = &options->print_motd;
538 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Damien Miller95def091999-11-25 00:26:21 +1100540 case sX11Forwarding:
541 intptr = &options->x11_forwarding;
542 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543
Damien Miller95def091999-11-25 00:26:21 +1100544 case sX11DisplayOffset:
545 intptr = &options->x11_display_offset;
546 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Damien Millerd3a18572000-06-07 19:55:44 +1000548 case sXAuthLocation:
549 charptr = &options->xauth_location;
550 goto parse_filename;
551
Damien Miller95def091999-11-25 00:26:21 +1100552 case sStrictModes:
553 intptr = &options->strict_modes;
554 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 case sKeepAlives:
557 intptr = &options->keepalives;
558 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 case sEmptyPasswd:
561 intptr = &options->permit_empty_passwd;
562 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Miller95def091999-11-25 00:26:21 +1100564 case sUseLogin:
565 intptr = &options->use_login;
566 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100567
Damien Millere247cc42000-05-07 12:03:14 +1000568 case sGatewayPorts:
569 intptr = &options->gateway_ports;
570 goto parse_flag;
571
Damien Miller95def091999-11-25 00:26:21 +1100572 case sLogFacility:
573 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000574 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000575 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100576 if (value == (SyslogFacility) - 1)
577 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000578 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100579 if (*intptr == -1)
580 *intptr = (SyslogFacility) value;
581 break;
582
583 case sLogLevel:
584 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000585 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000586 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100587 if (value == (LogLevel) - 1)
588 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000589 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100590 if (*intptr == -1)
591 *intptr = (LogLevel) value;
592 break;
593
Damien Miller50a41ed2000-10-16 12:14:42 +1100594 case sAllowTcpForwarding:
595 intptr = &options->allow_tcp_forwarding;
596 goto parse_flag;
597
Damien Miller95def091999-11-25 00:26:21 +1100598 case sAllowUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000599 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000600 if (options->num_allow_users >= MAX_ALLOW_USERS)
601 fatal("%s line %d: too many allow users.\n",
602 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000603 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100604 }
605 break;
606
607 case sDenyUsers:
Damien Millerbe484b52000-07-15 14:14:16 +1000608 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000609 if (options->num_deny_users >= MAX_DENY_USERS)
610 fatal( "%s line %d: too many deny users.\n",
611 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000612 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100613 }
614 break;
615
616 case sAllowGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000617 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000618 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
619 fatal("%s line %d: too many allow groups.\n",
620 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000621 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100622 }
623 break;
624
625 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000626 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000627 if (options->num_deny_groups >= MAX_DENY_GROUPS)
628 fatal("%s line %d: too many deny groups.\n",
629 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000630 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100631 }
632 break;
633
Damien Miller78928792000-04-12 20:17:38 +1000634 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000635 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000636 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000637 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000638 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000639 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000640 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000641 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000642 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000643 break;
644
645 case sProtocol:
646 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000647 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000648 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000649 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000650 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000651 if (value == SSH_PROTO_UNKNOWN)
652 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000653 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000654 if (*intptr == SSH_PROTO_UNKNOWN)
655 *intptr = value;
656 break;
657
Damien Millerf6d9e222000-06-18 14:50:44 +1000658 case sSubsystem:
659 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
660 fatal("%s line %d: too many subsystems defined.",
661 filename, linenum);
662 }
Damien Millerbe484b52000-07-15 14:14:16 +1000663 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000664 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000665 fatal("%s line %d: Missing subsystem name.",
666 filename, linenum);
667 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000668 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000669 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000670 filename, linenum, arg);
671 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000672 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000673 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000674 fatal("%s line %d: Missing subsystem command.",
675 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000676 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000677 options->num_subsystems++;
678 break;
679
Damien Miller37023962000-07-11 17:31:38 +1000680 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000681 arg = strdelim(&cp);
682 if (!arg || *arg == '\0')
683 fatal("%s line %d: Missing MaxStartups spec.",
684 filename, linenum);
685 if (sscanf(arg, "%d:%d:%d",
686 &options->max_startups_begin,
687 &options->max_startups_rate,
688 &options->max_startups) == 3) {
689 if (options->max_startups_begin >
690 options->max_startups ||
691 options->max_startups_rate > 100 ||
692 options->max_startups_rate < 1)
693 fatal("%s line %d: Illegal MaxStartups spec.",
694 filename, linenum);
695 break;
696 }
Damien Miller37023962000-07-11 17:31:38 +1000697 intptr = &options->max_startups;
698 goto parse_int;
699
Damien Miller95def091999-11-25 00:26:21 +1100700 default:
701 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000702 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100703 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000704 }
Damien Millerbe484b52000-07-15 14:14:16 +1000705 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000706 fprintf(stderr,
707 "%s line %d: garbage at end of line; \"%.200s\".\n",
708 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100709 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000710 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711 }
Damien Miller95def091999-11-25 00:26:21 +1100712 fclose(f);
713 if (bad_options > 0) {
714 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
715 filename, bad_options);
716 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000718}