blob: 76702a83612cfb1d349dd20035e6521d57ac09f8 [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 Miller50a41ed2000-10-16 12:14:42 +110013RCSID("$OpenBSD: servconf.c,v 1.53 2000/10/14 12:12:09 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;
Damien Miller50a41ed2000-10-16 12:14:42 +110070 options->allow_tcp_forwarding = -1;
Damien Miller95def091999-11-25 00:26:21 +110071 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 Millerf6d9e222000-06-18 14:50:44 +100078 options->num_subsystems = 0;
Damien Miller942da032000-08-18 13:59:06 +100079 options->max_startups_begin = -1;
80 options->max_startups_rate = -1;
Damien Miller37023962000-07-11 17:31:38 +100081 options->max_startups = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082}
83
Damien Miller4af51302000-04-16 11:18:38 +100084void
Damien Miller95def091999-11-25 00:26:21 +110085fill_default_server_options(ServerOptions *options)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086{
Damien Miller34132e52000-01-14 15:45:46 +110087 if (options->num_ports == 0)
88 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
89 if (options->listen_addrs == NULL)
90 add_listen_addr(options, NULL);
Damien Miller95def091999-11-25 00:26:21 +110091 if (options->host_key_file == NULL)
92 options->host_key_file = HOST_KEY_FILE;
Damien Millere247cc42000-05-07 12:03:14 +100093 if (options->host_dsa_key_file == NULL)
94 options->host_dsa_key_file = HOST_DSA_KEY_FILE;
Damien Miller6f83b8e2000-05-02 09:23:45 +100095 if (options->pid_file == NULL)
96 options->pid_file = SSH_DAEMON_PID_FILE;
Damien Miller95def091999-11-25 00:26:21 +110097 if (options->server_key_bits == -1)
98 options->server_key_bits = 768;
99 if (options->login_grace_time == -1)
100 options->login_grace_time = 600;
101 if (options->key_regeneration_time == -1)
102 options->key_regeneration_time = 3600;
103 if (options->permit_root_login == -1)
104 options->permit_root_login = 1; /* yes */
105 if (options->ignore_rhosts == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100106 options->ignore_rhosts = 1;
Damien Miller95def091999-11-25 00:26:21 +1100107 if (options->ignore_user_known_hosts == -1)
108 options->ignore_user_known_hosts = 0;
109 if (options->check_mail == -1)
110 options->check_mail = 0;
111 if (options->print_motd == -1)
112 options->print_motd = 1;
113 if (options->x11_forwarding == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100114 options->x11_forwarding = 0;
Damien Miller95def091999-11-25 00:26:21 +1100115 if (options->x11_display_offset == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100116 options->x11_display_offset = 10;
Damien Millerd3a18572000-06-07 19:55:44 +1000117#ifdef XAUTH_PATH
118 if (options->xauth_location == NULL)
119 options->xauth_location = XAUTH_PATH;
120#endif /* XAUTH_PATH */
Damien Miller95def091999-11-25 00:26:21 +1100121 if (options->strict_modes == -1)
122 options->strict_modes = 1;
123 if (options->keepalives == -1)
124 options->keepalives = 1;
125 if (options->log_facility == (SyslogFacility) (-1))
126 options->log_facility = SYSLOG_FACILITY_AUTH;
127 if (options->log_level == (LogLevel) (-1))
128 options->log_level = SYSLOG_LEVEL_INFO;
129 if (options->rhosts_authentication == -1)
130 options->rhosts_authentication = 0;
131 if (options->rhosts_rsa_authentication == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100132 options->rhosts_rsa_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100133 if (options->rsa_authentication == -1)
134 options->rsa_authentication = 1;
Damien Millere247cc42000-05-07 12:03:14 +1000135 if (options->dsa_authentication == -1)
136 options->dsa_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100138 if (options->kerberos_authentication == -1)
139 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
140 if (options->kerberos_or_local_passwd == -1)
141 options->kerberos_or_local_passwd = 1;
142 if (options->kerberos_ticket_cleanup == -1)
143 options->kerberos_ticket_cleanup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144#endif /* KRB4 */
145#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100146 if (options->kerberos_tgt_passing == -1)
147 options->kerberos_tgt_passing = 0;
148 if (options->afs_token_passing == -1)
149 options->afs_token_passing = k_hasafs();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150#endif /* AFS */
Damien Miller95def091999-11-25 00:26:21 +1100151 if (options->password_authentication == -1)
152 options->password_authentication = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100153 if (options->kbd_interactive_authentication == -1)
154 options->kbd_interactive_authentication = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100156 if (options->skey_authentication == -1)
157 options->skey_authentication = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#endif
Damien Miller95def091999-11-25 00:26:21 +1100159 if (options->permit_empty_passwd == -1)
Damien Miller98c7ad62000-03-09 21:27:49 +1100160 options->permit_empty_passwd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100161 if (options->use_login == -1)
162 options->use_login = 0;
Damien Miller50a41ed2000-10-16 12:14:42 +1100163 if (options->allow_tcp_forwarding == -1)
164 options->allow_tcp_forwarding = 1;
Damien Miller78928792000-04-12 20:17:38 +1000165 if (options->protocol == SSH_PROTO_UNKNOWN)
Damien Millereba71ba2000-04-29 23:57:08 +1000166 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
Damien Millere247cc42000-05-07 12:03:14 +1000167 if (options->gateway_ports == -1)
168 options->gateway_ports = 0;
Damien Miller37023962000-07-11 17:31:38 +1000169 if (options->max_startups == -1)
170 options->max_startups = 10;
Damien Miller942da032000-08-18 13:59:06 +1000171 if (options->max_startups_rate == -1)
172 options->max_startups_rate = 100; /* 100% */
173 if (options->max_startups_begin == -1)
174 options->max_startups_begin = options->max_startups;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175}
176
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177/* Keyword tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100178typedef enum {
179 sBadOption, /* == unknown option */
180 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
181 sPermitRootLogin, sLogFacility, sLogLevel,
182 sRhostsAuthentication, sRhostsRSAAuthentication, sRSAAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100184 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185#endif
186#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100187 sKerberosTgtPassing, sAFSTokenPassing,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188#endif
189#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100190 sSkeyAuthentication,
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100192 sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
Damien Miller95def091999-11-25 00:26:21 +1100193 sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
194 sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
Damien Miller50a41ed2000-10-16 12:14:42 +1100195 sUseLogin, sAllowTcpForwarding,
196 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
Damien Millere247cc42000-05-07 12:03:14 +1000197 sIgnoreUserKnownHosts, sHostDSAKeyFile, sCiphers, sProtocol, sPidFile,
Damien Miller37023962000-07-11 17:31:38 +1000198 sGatewayPorts, sDSAAuthentication, sXAuthLocation, sSubsystem, sMaxStartups
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199} ServerOpCodes;
200
201/* Textual representation of the tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100202static struct {
203 const char *name;
204 ServerOpCodes opcode;
205} keywords[] = {
206 { "port", sPort },
207 { "hostkey", sHostKeyFile },
Damien Millere247cc42000-05-07 12:03:14 +1000208 { "hostdsakey", sHostDSAKeyFile },
Damien Miller6f83b8e2000-05-02 09:23:45 +1000209 { "pidfile", sPidFile },
Damien Miller95def091999-11-25 00:26:21 +1100210 { "serverkeybits", sServerKeyBits },
211 { "logingracetime", sLoginGraceTime },
212 { "keyregenerationinterval", sKeyRegenerationTime },
213 { "permitrootlogin", sPermitRootLogin },
214 { "syslogfacility", sLogFacility },
215 { "loglevel", sLogLevel },
216 { "rhostsauthentication", sRhostsAuthentication },
217 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
218 { "rsaauthentication", sRSAAuthentication },
Damien Millere247cc42000-05-07 12:03:14 +1000219 { "dsaauthentication", sDSAAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100221 { "kerberosauthentication", sKerberosAuthentication },
222 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
223 { "kerberosticketcleanup", sKerberosTicketCleanup },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224#endif
225#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100226 { "kerberostgtpassing", sKerberosTgtPassing },
227 { "afstokenpassing", sAFSTokenPassing },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228#endif
Damien Miller95def091999-11-25 00:26:21 +1100229 { "passwordauthentication", sPasswordAuthentication },
Damien Miller874d77b2000-10-14 16:23:11 +1100230 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100232 { "skeyauthentication", sSkeyAuthentication },
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233#endif
Damien Miller95def091999-11-25 00:26:21 +1100234 { "checkmail", sCheckMail },
235 { "listenaddress", sListenAddress },
236 { "printmotd", sPrintMotd },
237 { "ignorerhosts", sIgnoreRhosts },
238 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
239 { "x11forwarding", sX11Forwarding },
240 { "x11displayoffset", sX11DisplayOffset },
Damien Millerd3a18572000-06-07 19:55:44 +1000241 { "xauthlocation", sXAuthLocation },
Damien Miller95def091999-11-25 00:26:21 +1100242 { "strictmodes", sStrictModes },
243 { "permitemptypasswords", sEmptyPasswd },
244 { "uselogin", sUseLogin },
245 { "randomseed", sRandomSeedFile },
246 { "keepalive", sKeepAlives },
Damien Miller50a41ed2000-10-16 12:14:42 +1100247 { "allowtcpforwarding", sAllowTcpForwarding },
Damien Miller95def091999-11-25 00:26:21 +1100248 { "allowusers", sAllowUsers },
249 { "denyusers", sDenyUsers },
250 { "allowgroups", sAllowGroups },
251 { "denygroups", sDenyGroups },
Damien Miller78928792000-04-12 20:17:38 +1000252 { "ciphers", sCiphers },
253 { "protocol", sProtocol },
Damien Millere247cc42000-05-07 12:03:14 +1000254 { "gatewayports", sGatewayPorts },
Damien Millerf6d9e222000-06-18 14:50:44 +1000255 { "subsystem", sSubsystem },
Damien Miller37023962000-07-11 17:31:38 +1000256 { "maxstartups", sMaxStartups },
Damien Miller95def091999-11-25 00:26:21 +1100257 { NULL, 0 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258};
259
Damien Miller5428f641999-11-25 11:54:57 +1100260/*
261 * Returns the number of the token pointed to by cp of length len. Never
262 * returns if the token is not known.
263 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Damien Miller4af51302000-04-16 11:18:38 +1000265static ServerOpCodes
Damien Miller95def091999-11-25 00:26:21 +1100266parse_token(const char *cp, const char *filename,
267 int linenum)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268{
Damien Miller95def091999-11-25 00:26:21 +1100269 unsigned int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller95def091999-11-25 00:26:21 +1100271 for (i = 0; keywords[i].name; i++)
Damien Miller5428f641999-11-25 11:54:57 +1100272 if (strcasecmp(cp, keywords[i].name) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100273 return keywords[i].opcode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 fprintf(stderr, "%s: line %d: Bad configuration option: %s\n",
276 filename, linenum, cp);
277 return sBadOption;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278}
279
Damien Miller34132e52000-01-14 15:45:46 +1100280/*
281 * add listen address
282 */
Damien Miller4af51302000-04-16 11:18:38 +1000283void
Damien Miller34132e52000-01-14 15:45:46 +1100284add_listen_addr(ServerOptions *options, char *addr)
285{
286 extern int IPv4or6;
287 struct addrinfo hints, *ai, *aitop;
288 char strport[NI_MAXSERV];
289 int gaierr;
290 int i;
291
292 if (options->num_ports == 0)
293 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
294 for (i = 0; i < options->num_ports; i++) {
295 memset(&hints, 0, sizeof(hints));
296 hints.ai_family = IPv4or6;
297 hints.ai_socktype = SOCK_STREAM;
298 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
299 snprintf(strport, sizeof strport, "%d", options->ports[i]);
300 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
301 fatal("bad addr or host: %s (%s)\n",
302 addr ? addr : "<NULL>",
303 gai_strerror(gaierr));
304 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
305 ;
306 ai->ai_next = options->listen_addrs;
307 options->listen_addrs = aitop;
308 }
309}
310
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311/* Reads the server configuration file. */
312
Damien Miller4af51302000-04-16 11:18:38 +1000313void
Damien Miller95def091999-11-25 00:26:21 +1100314read_server_config(ServerOptions *options, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315{
Damien Miller95def091999-11-25 00:26:21 +1100316 FILE *f;
317 char line[1024];
Damien Miller37023962000-07-11 17:31:38 +1000318 char *cp, **charptr, *arg;
Damien Miller95def091999-11-25 00:26:21 +1100319 int linenum, *intptr, value;
320 int bad_options = 0;
321 ServerOpCodes opcode;
Damien Millerf6d9e222000-06-18 14:50:44 +1000322 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323
Damien Miller95def091999-11-25 00:26:21 +1100324 f = fopen(filename, "r");
325 if (!f) {
326 perror(filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100328 }
329 linenum = 0;
330 while (fgets(line, sizeof(line), f)) {
331 linenum++;
Damien Millerbe484b52000-07-15 14:14:16 +1000332 cp = line;
333 arg = strdelim(&cp);
334 /* Ignore leading whitespace */
335 if (*arg == '\0')
336 arg = strdelim(&cp);
337 if (!*arg || *arg == '#')
Damien Miller95def091999-11-25 00:26:21 +1100338 continue;
Damien Miller37023962000-07-11 17:31:38 +1000339 opcode = parse_token(arg, filename, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100340 switch (opcode) {
341 case sBadOption:
342 bad_options++;
343 continue;
344 case sPort:
Damien Miller34132e52000-01-14 15:45:46 +1100345 /* ignore ports from configfile if cmdline specifies ports */
346 if (options->ports_from_cmdline)
347 continue;
348 if (options->listen_addrs != NULL)
349 fatal("%s line %d: ports must be specified before "
350 "ListenAdress.\n", filename, linenum);
351 if (options->num_ports >= MAX_PORTS)
352 fatal("%s line %d: too many ports.\n",
Damien Miller4af51302000-04-16 11:18:38 +1000353 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000354 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000355 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100356 fatal("%s line %d: missing port number.\n",
357 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000358 options->ports[options->num_ports++] = atoi(arg);
Damien Miller34132e52000-01-14 15:45:46 +1100359 break;
360
361 case sServerKeyBits:
362 intptr = &options->server_key_bits;
Damien Miller95def091999-11-25 00:26:21 +1100363parse_int:
Damien Millerbe484b52000-07-15 14:14:16 +1000364 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000365 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100366 fprintf(stderr, "%s line %d: missing integer value.\n",
367 filename, linenum);
368 exit(1);
369 }
Damien Miller37023962000-07-11 17:31:38 +1000370 value = atoi(arg);
Damien Miller95def091999-11-25 00:26:21 +1100371 if (*intptr == -1)
372 *intptr = value;
373 break;
Damien Miller32265091999-11-12 11:33:04 +1100374
Damien Miller95def091999-11-25 00:26:21 +1100375 case sLoginGraceTime:
376 intptr = &options->login_grace_time;
377 goto parse_int;
378
379 case sKeyRegenerationTime:
380 intptr = &options->key_regeneration_time;
381 goto parse_int;
382
383 case sListenAddress:
Damien Millerbe484b52000-07-15 14:14:16 +1000384 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000385 if (!arg || *arg == '\0')
Damien Miller34132e52000-01-14 15:45:46 +1100386 fatal("%s line %d: missing inet addr.\n",
387 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000388 add_listen_addr(options, arg);
Damien Miller95def091999-11-25 00:26:21 +1100389 break;
390
391 case sHostKeyFile:
Damien Millere247cc42000-05-07 12:03:14 +1000392 case sHostDSAKeyFile:
Damien Millerefb4afe2000-04-12 18:45:05 +1000393 charptr = (opcode == sHostKeyFile ) ?
Damien Millere247cc42000-05-07 12:03:14 +1000394 &options->host_key_file : &options->host_dsa_key_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000395parse_filename:
Damien Millerbe484b52000-07-15 14:14:16 +1000396 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000397 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100398 fprintf(stderr, "%s line %d: missing file name.\n",
Damien Miller6f83b8e2000-05-02 09:23:45 +1000399 filename, linenum);
400 exit(1);
401 }
402 if (*charptr == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000403 *charptr = tilde_expand_filename(arg, getuid());
Damien Miller6f83b8e2000-05-02 09:23:45 +1000404 break;
405
406 case sPidFile:
407 charptr = &options->pid_file;
Damien Millerd3a18572000-06-07 19:55:44 +1000408 goto parse_filename;
Damien Miller95def091999-11-25 00:26:21 +1100409
410 case sRandomSeedFile:
411 fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
412 filename, linenum);
Damien Millerbe484b52000-07-15 14:14:16 +1000413 arg = strdelim(&cp);
Damien Miller95def091999-11-25 00:26:21 +1100414 break;
415
416 case sPermitRootLogin:
417 intptr = &options->permit_root_login;
Damien Millerbe484b52000-07-15 14:14:16 +1000418 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000419 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100420 fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
421 filename, linenum);
422 exit(1);
423 }
Damien Miller37023962000-07-11 17:31:38 +1000424 if (strcmp(arg, "without-password") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100425 value = 2;
Damien Miller37023962000-07-11 17:31:38 +1000426 else if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100427 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000428 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100429 value = 0;
430 else {
431 fprintf(stderr, "%s line %d: Bad yes/without-password/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000432 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100433 exit(1);
434 }
435 if (*intptr == -1)
436 *intptr = value;
437 break;
438
439 case sIgnoreRhosts:
440 intptr = &options->ignore_rhosts;
441parse_flag:
Damien Millerbe484b52000-07-15 14:14:16 +1000442 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000443 if (!arg || *arg == '\0') {
Damien Miller95def091999-11-25 00:26:21 +1100444 fprintf(stderr, "%s line %d: missing yes/no argument.\n",
445 filename, linenum);
446 exit(1);
447 }
Damien Miller37023962000-07-11 17:31:38 +1000448 if (strcmp(arg, "yes") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100449 value = 1;
Damien Miller37023962000-07-11 17:31:38 +1000450 else if (strcmp(arg, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100451 value = 0;
452 else {
453 fprintf(stderr, "%s line %d: Bad yes/no argument: %s\n",
Damien Miller37023962000-07-11 17:31:38 +1000454 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100455 exit(1);
456 }
457 if (*intptr == -1)
458 *intptr = value;
459 break;
460
461 case sIgnoreUserKnownHosts:
462 intptr = &options->ignore_user_known_hosts;
Damien Miller98c7ad62000-03-09 21:27:49 +1100463 goto parse_flag;
Damien Miller95def091999-11-25 00:26:21 +1100464
465 case sRhostsAuthentication:
466 intptr = &options->rhosts_authentication;
467 goto parse_flag;
468
469 case sRhostsRSAAuthentication:
470 intptr = &options->rhosts_rsa_authentication;
471 goto parse_flag;
472
473 case sRSAAuthentication:
474 intptr = &options->rsa_authentication;
475 goto parse_flag;
476
Damien Millere247cc42000-05-07 12:03:14 +1000477 case sDSAAuthentication:
478 intptr = &options->dsa_authentication;
479 goto parse_flag;
480
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100482 case sKerberosAuthentication:
483 intptr = &options->kerberos_authentication;
484 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Damien Miller95def091999-11-25 00:26:21 +1100486 case sKerberosOrLocalPasswd:
487 intptr = &options->kerberos_or_local_passwd;
488 goto parse_flag;
489
490 case sKerberosTicketCleanup:
491 intptr = &options->kerberos_ticket_cleanup;
492 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493#endif
Damien Miller95def091999-11-25 00:26:21 +1100494
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100496 case sKerberosTgtPassing:
497 intptr = &options->kerberos_tgt_passing;
498 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499
Damien Miller95def091999-11-25 00:26:21 +1100500 case sAFSTokenPassing:
501 intptr = &options->afs_token_passing;
502 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503#endif
504
Damien Miller95def091999-11-25 00:26:21 +1100505 case sPasswordAuthentication:
506 intptr = &options->password_authentication;
507 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508
Damien Miller874d77b2000-10-14 16:23:11 +1100509 case sKbdInteractiveAuthentication:
510 intptr = &options->kbd_interactive_authentication;
511 goto parse_flag;
512
Damien Miller95def091999-11-25 00:26:21 +1100513 case sCheckMail:
514 intptr = &options->check_mail;
515 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
517#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100518 case sSkeyAuthentication:
519 intptr = &options->skey_authentication;
520 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521#endif
522
Damien Miller95def091999-11-25 00:26:21 +1100523 case sPrintMotd:
524 intptr = &options->print_motd;
525 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526
Damien Miller95def091999-11-25 00:26:21 +1100527 case sX11Forwarding:
528 intptr = &options->x11_forwarding;
529 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
Damien Miller95def091999-11-25 00:26:21 +1100531 case sX11DisplayOffset:
532 intptr = &options->x11_display_offset;
533 goto parse_int;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534
Damien Millerd3a18572000-06-07 19:55:44 +1000535 case sXAuthLocation:
536 charptr = &options->xauth_location;
537 goto parse_filename;
538
Damien Miller95def091999-11-25 00:26:21 +1100539 case sStrictModes:
540 intptr = &options->strict_modes;
541 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller95def091999-11-25 00:26:21 +1100543 case sKeepAlives:
544 intptr = &options->keepalives;
545 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547 case sEmptyPasswd:
548 intptr = &options->permit_empty_passwd;
549 goto parse_flag;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Miller95def091999-11-25 00:26:21 +1100551 case sUseLogin:
552 intptr = &options->use_login;
553 goto parse_flag;
Damien Miller5ce662a1999-11-11 17:57:39 +1100554
Damien Millere247cc42000-05-07 12:03:14 +1000555 case sGatewayPorts:
556 intptr = &options->gateway_ports;
557 goto parse_flag;
558
Damien Miller95def091999-11-25 00:26:21 +1100559 case sLogFacility:
560 intptr = (int *) &options->log_facility;
Damien Millerbe484b52000-07-15 14:14:16 +1000561 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000562 value = log_facility_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100563 if (value == (SyslogFacility) - 1)
564 fatal("%.200s line %d: unsupported log facility '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000565 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100566 if (*intptr == -1)
567 *intptr = (SyslogFacility) value;
568 break;
569
570 case sLogLevel:
571 intptr = (int *) &options->log_level;
Damien Millerbe484b52000-07-15 14:14:16 +1000572 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000573 value = log_level_number(arg);
Damien Miller95def091999-11-25 00:26:21 +1100574 if (value == (LogLevel) - 1)
575 fatal("%.200s line %d: unsupported log level '%s'\n",
Damien Miller37023962000-07-11 17:31:38 +1000576 filename, linenum, arg ? arg : "<NONE>");
Damien Miller95def091999-11-25 00:26:21 +1100577 if (*intptr == -1)
578 *intptr = (LogLevel) value;
579 break;
580
Damien Miller50a41ed2000-10-16 12:14:42 +1100581 case sAllowTcpForwarding:
582 intptr = &options->allow_tcp_forwarding;
583 goto parse_flag;
584
Damien Miller95def091999-11-25 00:26:21 +1100585 case sAllowUsers:
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_allow_users >= MAX_ALLOW_USERS)
588 fatal("%s line %d: too many allow users.\n",
589 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000590 options->allow_users[options->num_allow_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100591 }
592 break;
593
594 case sDenyUsers:
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_deny_users >= MAX_DENY_USERS)
597 fatal( "%s line %d: too many deny users.\n",
598 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000599 options->deny_users[options->num_deny_users++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100600 }
601 break;
602
603 case sAllowGroups:
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_allow_groups >= MAX_ALLOW_GROUPS)
606 fatal("%s line %d: too many allow groups.\n",
607 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000608 options->allow_groups[options->num_allow_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100609 }
610 break;
611
612 case sDenyGroups:
Damien Millerbe484b52000-07-15 14:14:16 +1000613 while ((arg = strdelim(&cp)) && *arg != '\0') {
Damien Miller78928792000-04-12 20:17:38 +1000614 if (options->num_deny_groups >= MAX_DENY_GROUPS)
615 fatal("%s line %d: too many deny groups.\n",
616 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000617 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
Damien Miller95def091999-11-25 00:26:21 +1100618 }
619 break;
620
Damien Miller78928792000-04-12 20:17:38 +1000621 case sCiphers:
Damien Millerbe484b52000-07-15 14:14:16 +1000622 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000623 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000624 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000625 if (!ciphers_valid(arg))
Damien Miller30c3d422000-05-09 11:02:59 +1000626 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000627 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000628 if (options->ciphers == NULL)
Damien Miller37023962000-07-11 17:31:38 +1000629 options->ciphers = xstrdup(arg);
Damien Miller78928792000-04-12 20:17:38 +1000630 break;
631
632 case sProtocol:
633 intptr = &options->protocol;
Damien Millerbe484b52000-07-15 14:14:16 +1000634 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000635 if (!arg || *arg == '\0')
Damien Millerb1715dc2000-05-30 13:44:51 +1000636 fatal("%s line %d: Missing argument.", filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000637 value = proto_spec(arg);
Damien Miller78928792000-04-12 20:17:38 +1000638 if (value == SSH_PROTO_UNKNOWN)
639 fatal("%s line %d: Bad protocol spec '%s'.",
Damien Miller37023962000-07-11 17:31:38 +1000640 filename, linenum, arg ? arg : "<NONE>");
Damien Miller78928792000-04-12 20:17:38 +1000641 if (*intptr == SSH_PROTO_UNKNOWN)
642 *intptr = value;
643 break;
644
Damien Millerf6d9e222000-06-18 14:50:44 +1000645 case sSubsystem:
646 if(options->num_subsystems >= MAX_SUBSYSTEMS) {
647 fatal("%s line %d: too many subsystems defined.",
648 filename, linenum);
649 }
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 name.",
653 filename, linenum);
654 for (i = 0; i < options->num_subsystems; i++)
Damien Miller37023962000-07-11 17:31:38 +1000655 if(strcmp(arg, options->subsystem_name[i]) == 0)
Damien Millerf6d9e222000-06-18 14:50:44 +1000656 fatal("%s line %d: Subsystem '%s' already defined.",
Damien Miller37023962000-07-11 17:31:38 +1000657 filename, linenum, arg);
658 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Damien Millerbe484b52000-07-15 14:14:16 +1000659 arg = strdelim(&cp);
Damien Miller37023962000-07-11 17:31:38 +1000660 if (!arg || *arg == '\0')
Damien Millerf6d9e222000-06-18 14:50:44 +1000661 fatal("%s line %d: Missing subsystem command.",
662 filename, linenum);
Damien Miller37023962000-07-11 17:31:38 +1000663 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
Damien Millerf6d9e222000-06-18 14:50:44 +1000664 options->num_subsystems++;
665 break;
666
Damien Miller37023962000-07-11 17:31:38 +1000667 case sMaxStartups:
Damien Miller942da032000-08-18 13:59:06 +1000668 arg = strdelim(&cp);
669 if (!arg || *arg == '\0')
670 fatal("%s line %d: Missing MaxStartups spec.",
671 filename, linenum);
672 if (sscanf(arg, "%d:%d:%d",
673 &options->max_startups_begin,
674 &options->max_startups_rate,
675 &options->max_startups) == 3) {
676 if (options->max_startups_begin >
677 options->max_startups ||
678 options->max_startups_rate > 100 ||
679 options->max_startups_rate < 1)
680 fatal("%s line %d: Illegal MaxStartups spec.",
681 filename, linenum);
682 break;
683 }
Damien Miller37023962000-07-11 17:31:38 +1000684 intptr = &options->max_startups;
685 goto parse_int;
686
Damien Miller95def091999-11-25 00:26:21 +1100687 default:
688 fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
Damien Miller37023962000-07-11 17:31:38 +1000689 filename, linenum, arg, opcode);
Damien Miller95def091999-11-25 00:26:21 +1100690 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000691 }
Damien Millerbe484b52000-07-15 14:14:16 +1000692 if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
Damien Miller37023962000-07-11 17:31:38 +1000693 fprintf(stderr,
694 "%s line %d: garbage at end of line; \"%.200s\".\n",
695 filename, linenum, arg);
Damien Miller95def091999-11-25 00:26:21 +1100696 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000697 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000698 }
Damien Miller95def091999-11-25 00:26:21 +1100699 fclose(f);
700 if (bad_options > 0) {
701 fprintf(stderr, "%s: terminating, %d bad configuration options\n",
702 filename, bad_options);
703 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000704 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000705}