]> andersk Git - openssh.git/blame - servconf.c
20050312
[openssh.git] / servconf.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
6ae2364d 4 *
bcbf86ec 5 * 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".
5260325f 10 */
8efc0c15 11
12#include "includes.h"
3867aa0a 13RCSID("$OpenBSD: servconf.c,v 1.139 2005/03/01 10:09:52 djm Exp $");
8efc0c15 14
15#include "ssh.h"
42f11eb2 16#include "log.h"
8efc0c15 17#include "servconf.h"
18#include "xmalloc.h"
a8be9f80 19#include "compat.h"
42f11eb2 20#include "pathnames.h"
42f11eb2 21#include "misc.h"
22#include "cipher.h"
b2552997 23#include "kex.h"
24#include "mac.h"
42f11eb2 25
396c147e 26static void add_listen_addr(ServerOptions *, char *, u_short);
27static void add_one_listen_addr(ServerOptions *, char *, u_short);
48e671d5 28
1853d1ef 29/* Use of privilege separation or not */
30extern int use_privsep;
42f11eb2 31
8efc0c15 32/* Initializes the server options to their default values. */
33
6ae2364d 34void
5260325f 35initialize_server_options(ServerOptions *options)
8efc0c15 36{
5260325f 37 memset(options, 0, sizeof(*options));
e15895cd 38
39 /* Portable-specific options */
7fceb20d 40 options->use_pam = -1;
e15895cd 41
42 /* Standard Options */
48e671d5 43 options->num_ports = 0;
44 options->ports_from_cmdline = 0;
45 options->listen_addrs = NULL;
31b41ceb 46 options->address_family = -1;
fa08c86b 47 options->num_host_key_files = 0;
0fbe8c74 48 options->pid_file = NULL;
5260325f 49 options->server_key_bits = -1;
50 options->login_grace_time = -1;
51 options->key_regeneration_time = -1;
15853e93 52 options->permit_root_login = PERMIT_NOT_SET;
5260325f 53 options->ignore_rhosts = -1;
54 options->ignore_user_known_hosts = -1;
55 options->print_motd = -1;
4f4648f9 56 options->print_lastlog = -1;
5260325f 57 options->x11_forwarding = -1;
58 options->x11_display_offset = -1;
e6e573bd 59 options->x11_use_localhost = -1;
fa649821 60 options->xauth_location = NULL;
5260325f 61 options->strict_modes = -1;
fd573618 62 options->tcp_keep_alive = -1;
5eaf8578 63 options->log_facility = SYSLOG_FACILITY_NOT_SET;
64 options->log_level = SYSLOG_LEVEL_NOT_SET;
5260325f 65 options->rhosts_rsa_authentication = -1;
8002af61 66 options->hostbased_authentication = -1;
67 options->hostbased_uses_name_from_packet_only = -1;
5260325f 68 options->rsa_authentication = -1;
fa08c86b 69 options->pubkey_authentication = -1;
5260325f 70 options->kerberos_authentication = -1;
71 options->kerberos_or_local_passwd = -1;
72 options->kerberos_ticket_cleanup = -1;
a1e30b47 73 options->kerberos_get_afs_token = -1;
7364bd04 74 options->gss_authentication=-1;
75 options->gss_cleanup_creds = -1;
5260325f 76 options->password_authentication = -1;
94ec8c6b 77 options->kbd_interactive_authentication = -1;
5ba55ada 78 options->challenge_response_authentication = -1;
5260325f 79 options->permit_empty_passwd = -1;
f00bab84 80 options->permit_user_env = -1;
5260325f 81 options->use_login = -1;
636f76ca 82 options->compression = -1;
33de75a3 83 options->allow_tcp_forwarding = -1;
5260325f 84 options->num_allow_users = 0;
85 options->num_deny_users = 0;
86 options->num_allow_groups = 0;
87 options->num_deny_groups = 0;
a8be9f80 88 options->ciphers = NULL;
b2552997 89 options->macs = NULL;
a8be9f80 90 options->protocol = SSH_PROTO_UNKNOWN;
1d1ffb87 91 options->gateway_ports = -1;
38c295d6 92 options->num_subsystems = 0;
c345cf9d 93 options->max_startups_begin = -1;
94 options->max_startups_rate = -1;
089fbbd2 95 options->max_startups = -1;
af4bd935 96 options->max_authtries = -1;
eea39c02 97 options->banner = NULL;
c5a7d788 98 options->use_dns = -1;
3ffc6336 99 options->client_alive_interval = -1;
100 options->client_alive_count_max = -1;
c8445989 101 options->authorized_keys_file = NULL;
102 options->authorized_keys_file2 = NULL;
61a2c1da 103 options->num_accept_env = 0;
1853d1ef 104
1853d1ef 105 /* Needs to be accessable in many places */
106 use_privsep = -1;
8efc0c15 107}
108
6ae2364d 109void
5260325f 110fill_default_server_options(ServerOptions *options)
8efc0c15 111{
e15895cd 112 /* Portable-specific options */
7fceb20d 113 if (options->use_pam == -1)
0a23d79f 114 options->use_pam = 0;
e15895cd 115
116 /* Standard Options */
fa08c86b 117 if (options->protocol == SSH_PROTO_UNKNOWN)
118 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
119 if (options->num_host_key_files == 0) {
120 /* fill default hostkeys for protocols */
121 if (options->protocol & SSH_PROTO_1)
0f84fe37 122 options->host_key_files[options->num_host_key_files++] =
123 _PATH_HOST_KEY_FILE;
124 if (options->protocol & SSH_PROTO_2) {
125 options->host_key_files[options->num_host_key_files++] =
126 _PATH_HOST_RSA_KEY_FILE;
127 options->host_key_files[options->num_host_key_files++] =
128 _PATH_HOST_DSA_KEY_FILE;
129 }
fa08c86b 130 }
48e671d5 131 if (options->num_ports == 0)
132 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
133 if (options->listen_addrs == NULL)
2d2a2c65 134 add_listen_addr(options, NULL, 0);
0fbe8c74 135 if (options->pid_file == NULL)
42f11eb2 136 options->pid_file = _PATH_SSH_DAEMON_PID_FILE;
5260325f 137 if (options->server_key_bits == -1)
138 options->server_key_bits = 768;
139 if (options->login_grace_time == -1)
3445ca02 140 options->login_grace_time = 120;
5260325f 141 if (options->key_regeneration_time == -1)
142 options->key_regeneration_time = 3600;
15853e93 143 if (options->permit_root_login == PERMIT_NOT_SET)
144 options->permit_root_login = PERMIT_YES;
5260325f 145 if (options->ignore_rhosts == -1)
c8d54615 146 options->ignore_rhosts = 1;
5260325f 147 if (options->ignore_user_known_hosts == -1)
148 options->ignore_user_known_hosts = 0;
5260325f 149 if (options->print_motd == -1)
150 options->print_motd = 1;
4f4648f9 151 if (options->print_lastlog == -1)
152 options->print_lastlog = 1;
5260325f 153 if (options->x11_forwarding == -1)
c8d54615 154 options->x11_forwarding = 0;
5260325f 155 if (options->x11_display_offset == -1)
c8d54615 156 options->x11_display_offset = 10;
e6e573bd 157 if (options->x11_use_localhost == -1)
158 options->x11_use_localhost = 1;
fa649821 159 if (options->xauth_location == NULL)
fd9ede94 160 options->xauth_location = _PATH_XAUTH;
5260325f 161 if (options->strict_modes == -1)
162 options->strict_modes = 1;
fd573618 163 if (options->tcp_keep_alive == -1)
164 options->tcp_keep_alive = 1;
5eaf8578 165 if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
5260325f 166 options->log_facility = SYSLOG_FACILITY_AUTH;
5eaf8578 167 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
59c97189 168 options->log_level = SYSLOG_LEVEL_INFO;
5260325f 169 if (options->rhosts_rsa_authentication == -1)
c8d54615 170 options->rhosts_rsa_authentication = 0;
8002af61 171 if (options->hostbased_authentication == -1)
172 options->hostbased_authentication = 0;
173 if (options->hostbased_uses_name_from_packet_only == -1)
174 options->hostbased_uses_name_from_packet_only = 0;
5260325f 175 if (options->rsa_authentication == -1)
176 options->rsa_authentication = 1;
fa08c86b 177 if (options->pubkey_authentication == -1)
178 options->pubkey_authentication = 1;
5260325f 179 if (options->kerberos_authentication == -1)
eadc806d 180 options->kerberos_authentication = 0;
5260325f 181 if (options->kerberos_or_local_passwd == -1)
182 options->kerberos_or_local_passwd = 1;
183 if (options->kerberos_ticket_cleanup == -1)
184 options->kerberos_ticket_cleanup = 1;
a1e30b47 185 if (options->kerberos_get_afs_token == -1)
186 options->kerberos_get_afs_token = 0;
7364bd04 187 if (options->gss_authentication == -1)
188 options->gss_authentication = 0;
189 if (options->gss_cleanup_creds == -1)
190 options->gss_cleanup_creds = 1;
5260325f 191 if (options->password_authentication == -1)
192 options->password_authentication = 1;
94ec8c6b 193 if (options->kbd_interactive_authentication == -1)
194 options->kbd_interactive_authentication = 0;
5ba55ada 195 if (options->challenge_response_authentication == -1)
196 options->challenge_response_authentication = 1;
5260325f 197 if (options->permit_empty_passwd == -1)
c8d54615 198 options->permit_empty_passwd = 0;
f00bab84 199 if (options->permit_user_env == -1)
200 options->permit_user_env = 0;
5260325f 201 if (options->use_login == -1)
202 options->use_login = 0;
636f76ca 203 if (options->compression == -1)
204 options->compression = 1;
33de75a3 205 if (options->allow_tcp_forwarding == -1)
206 options->allow_tcp_forwarding = 1;
1d1ffb87 207 if (options->gateway_ports == -1)
208 options->gateway_ports = 0;
089fbbd2 209 if (options->max_startups == -1)
210 options->max_startups = 10;
c345cf9d 211 if (options->max_startups_rate == -1)
212 options->max_startups_rate = 100; /* 100% */
213 if (options->max_startups_begin == -1)
214 options->max_startups_begin = options->max_startups;
af4bd935 215 if (options->max_authtries == -1)
216 options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
c5a7d788 217 if (options->use_dns == -1)
218 options->use_dns = 1;
3ffc6336 219 if (options->client_alive_interval == -1)
184eed6a 220 options->client_alive_interval = 0;
3ffc6336 221 if (options->client_alive_count_max == -1)
222 options->client_alive_count_max = 3;
5df83e07 223 if (options->authorized_keys_file2 == NULL) {
224 /* authorized_keys_file2 falls back to authorized_keys_file */
225 if (options->authorized_keys_file != NULL)
226 options->authorized_keys_file2 = options->authorized_keys_file;
227 else
228 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
229 }
230 if (options->authorized_keys_file == NULL)
231 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
1853d1ef 232
2ee1b704 233 /* Turn privilege separation on by default */
1853d1ef 234 if (use_privsep == -1)
2ee1b704 235 use_privsep = 1;
e299a298 236
4165b82e 237#ifndef HAVE_MMAP
e299a298 238 if (use_privsep && options->compression == 1) {
239 error("This platform does not support both privilege "
240 "separation and compression");
241 error("Compression disabled");
242 options->compression = 0;
243 }
244#endif
245
8efc0c15 246}
247
8efc0c15 248/* Keyword tokens. */
5260325f 249typedef enum {
250 sBadOption, /* == unknown option */
e15895cd 251 /* Portable-specific options */
7fceb20d 252 sUsePAM,
e15895cd 253 /* Standard Options */
5260325f 254 sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime,
255 sPermitRootLogin, sLogFacility, sLogLevel,
0598d99d 256 sRhostsRSAAuthentication, sRSAAuthentication,
5260325f 257 sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
a1e30b47 258 sKerberosGetAFSToken,
1c590258 259 sKerberosTgtPassing, sChallengeResponseAuthentication,
31b41ceb 260 sPasswordAuthentication, sKbdInteractiveAuthentication,
261 sListenAddress, sAddressFamily,
4f4648f9 262 sPrintMotd, sPrintLastLog, sIgnoreRhosts,
e6e573bd 263 sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
fd573618 264 sStrictModes, sEmptyPasswd, sTCPKeepAlive,
f00bab84 265 sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression,
33de75a3 266 sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
b2552997 267 sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile,
af4bd935 268 sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem,
269 sMaxStartups, sMaxAuthTries,
c5a7d788 270 sBanner, sUseDNS, sHostbasedAuthentication,
184eed6a 271 sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
c8445989 272 sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2,
61a2c1da 273 sGssAuthentication, sGssCleanupCreds, sAcceptEnv,
2ea6de2b 274 sUsePrivilegeSeparation,
a2144546 275 sDeprecated, sUnsupported
8efc0c15 276} ServerOpCodes;
277
278/* Textual representation of the tokens. */
5260325f 279static struct {
280 const char *name;
281 ServerOpCodes opcode;
282} keywords[] = {
e15895cd 283 /* Portable-specific options */
b06b11ad 284#ifdef USE_PAM
fe46678b 285 { "usepam", sUsePAM },
b06b11ad 286#else
fe46678b 287 { "usepam", sUnsupported },
b06b11ad 288#endif
fe46678b 289 { "pamauthenticationviakbdint", sDeprecated },
e15895cd 290 /* Standard Options */
5260325f 291 { "port", sPort },
292 { "hostkey", sHostKeyFile },
fa08c86b 293 { "hostdsakey", sHostKeyFile }, /* alias */
2b87da3b 294 { "pidfile", sPidFile },
5260325f 295 { "serverkeybits", sServerKeyBits },
296 { "logingracetime", sLoginGraceTime },
297 { "keyregenerationinterval", sKeyRegenerationTime },
298 { "permitrootlogin", sPermitRootLogin },
299 { "syslogfacility", sLogFacility },
300 { "loglevel", sLogLevel },
0598d99d 301 { "rhostsauthentication", sDeprecated },
5260325f 302 { "rhostsrsaauthentication", sRhostsRSAAuthentication },
8002af61 303 { "hostbasedauthentication", sHostbasedAuthentication },
304 { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly },
5260325f 305 { "rsaauthentication", sRSAAuthentication },
fa08c86b 306 { "pubkeyauthentication", sPubkeyAuthentication },
307 { "dsaauthentication", sPubkeyAuthentication }, /* alias */
1c590258 308#ifdef KRB5
5260325f 309 { "kerberosauthentication", sKerberosAuthentication },
310 { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
311 { "kerberosticketcleanup", sKerberosTicketCleanup },
bcfcc5f9 312#ifdef USE_AFS
a1e30b47 313 { "kerberosgetafstoken", sKerberosGetAFSToken },
309af4e5 314#else
315 { "kerberosgetafstoken", sUnsupported },
316#endif
a2144546 317#else
318 { "kerberosauthentication", sUnsupported },
319 { "kerberosorlocalpasswd", sUnsupported },
320 { "kerberosticketcleanup", sUnsupported },
a1e30b47 321 { "kerberosgetafstoken", sUnsupported },
a2144546 322#endif
8f73f7bb 323 { "kerberostgtpassing", sUnsupported },
a2144546 324 { "afstokenpassing", sUnsupported },
7364bd04 325#ifdef GSSAPI
326 { "gssapiauthentication", sGssAuthentication },
e377c083 327 { "gssapicleanupcredentials", sGssCleanupCreds },
7364bd04 328#else
329 { "gssapiauthentication", sUnsupported },
e377c083 330 { "gssapicleanupcredentials", sUnsupported },
7364bd04 331#endif
5260325f 332 { "passwordauthentication", sPasswordAuthentication },
94ec8c6b 333 { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
d464095c 334 { "challengeresponseauthentication", sChallengeResponseAuthentication },
335 { "skeyauthentication", sChallengeResponseAuthentication }, /* alias */
5c53a31e 336 { "checkmail", sDeprecated },
5260325f 337 { "listenaddress", sListenAddress },
31b41ceb 338 { "addressfamily", sAddressFamily },
5260325f 339 { "printmotd", sPrintMotd },
4f4648f9 340 { "printlastlog", sPrintLastLog },
5260325f 341 { "ignorerhosts", sIgnoreRhosts },
342 { "ignoreuserknownhosts", sIgnoreUserKnownHosts },
343 { "x11forwarding", sX11Forwarding },
344 { "x11displayoffset", sX11DisplayOffset },
e6e573bd 345 { "x11uselocalhost", sX11UseLocalhost },
fa649821 346 { "xauthlocation", sXAuthLocation },
5260325f 347 { "strictmodes", sStrictModes },
348 { "permitemptypasswords", sEmptyPasswd },
f00bab84 349 { "permituserenvironment", sPermitUserEnvironment },
5260325f 350 { "uselogin", sUseLogin },
636f76ca 351 { "compression", sCompression },
fd573618 352 { "tcpkeepalive", sTCPKeepAlive },
353 { "keepalive", sTCPKeepAlive }, /* obsolete alias */
33de75a3 354 { "allowtcpforwarding", sAllowTcpForwarding },
5260325f 355 { "allowusers", sAllowUsers },
356 { "denyusers", sDenyUsers },
357 { "allowgroups", sAllowGroups },
358 { "denygroups", sDenyGroups },
a8be9f80 359 { "ciphers", sCiphers },
b2552997 360 { "macs", sMacs },
a8be9f80 361 { "protocol", sProtocol },
1d1ffb87 362 { "gatewayports", sGatewayPorts },
38c295d6 363 { "subsystem", sSubsystem },
089fbbd2 364 { "maxstartups", sMaxStartups },
af4bd935 365 { "maxauthtries", sMaxAuthTries },
eea39c02 366 { "banner", sBanner },
c5a7d788 367 { "usedns", sUseDNS },
368 { "verifyreversemapping", sDeprecated },
369 { "reversemappingcheck", sDeprecated },
3ffc6336 370 { "clientaliveinterval", sClientAliveInterval },
371 { "clientalivecountmax", sClientAliveCountMax },
c8445989 372 { "authorizedkeysfile", sAuthorizedKeysFile },
373 { "authorizedkeysfile2", sAuthorizedKeysFile2 },
1853d1ef 374 { "useprivilegeseparation", sUsePrivilegeSeparation},
61a2c1da 375 { "acceptenv", sAcceptEnv },
17a3011c 376 { NULL, sBadOption }
8efc0c15 377};
378
aa3378df 379/*
6be9a5e8 380 * Returns the number of the token pointed to by cp or sBadOption.
aa3378df 381 */
8efc0c15 382
6ae2364d 383static ServerOpCodes
5260325f 384parse_token(const char *cp, const char *filename,
385 int linenum)
8efc0c15 386{
1e3b8b07 387 u_int i;
8efc0c15 388
5260325f 389 for (i = 0; keywords[i].name; i++)
aa3378df 390 if (strcasecmp(cp, keywords[i].name) == 0)
5260325f 391 return keywords[i].opcode;
8efc0c15 392
b7c70970 393 error("%s: line %d: Bad configuration option: %s",
394 filename, linenum, cp);
5260325f 395 return sBadOption;
8efc0c15 396}
397
396c147e 398static void
2d2a2c65 399add_listen_addr(ServerOptions *options, char *addr, u_short port)
48e671d5 400{
48e671d5 401 int i;
402
403 if (options->num_ports == 0)
404 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
31b41ceb 405 if (options->address_family == -1)
406 options->address_family = AF_UNSPEC;
2d2a2c65 407 if (port == 0)
d11c1288 408 for (i = 0; i < options->num_ports; i++)
409 add_one_listen_addr(options, addr, options->ports[i]);
410 else
2d2a2c65 411 add_one_listen_addr(options, addr, port);
d11c1288 412}
413
396c147e 414static void
d11c1288 415add_one_listen_addr(ServerOptions *options, char *addr, u_short port)
416{
417 struct addrinfo hints, *ai, *aitop;
418 char strport[NI_MAXSERV];
419 int gaierr;
420
421 memset(&hints, 0, sizeof(hints));
31b41ceb 422 hints.ai_family = options->address_family;
d11c1288 423 hints.ai_socktype = SOCK_STREAM;
424 hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
7528d467 425 snprintf(strport, sizeof strport, "%u", port);
d11c1288 426 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
427 fatal("bad addr or host: %s (%s)",
428 addr ? addr : "<NULL>",
429 gai_strerror(gaierr));
430 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
431 ;
432 ai->ai_next = options->listen_addrs;
433 options->listen_addrs = aitop;
48e671d5 434}
435
2717fa0f 436int
437process_server_config_line(ServerOptions *options, char *line,
438 const char *filename, int linenum)
8efc0c15 439{
d11c1288 440 char *cp, **charptr, *arg, *p;
7528d467 441 int *intptr, value, i, n;
5260325f 442 ServerOpCodes opcode;
3867aa0a 443 u_short port;
5260325f 444
2717fa0f 445 cp = line;
446 arg = strdelim(&cp);
447 /* Ignore leading whitespace */
448 if (*arg == '\0')
704b1659 449 arg = strdelim(&cp);
2717fa0f 450 if (!arg || !*arg || *arg == '#')
451 return 0;
452 intptr = NULL;
453 charptr = NULL;
454 opcode = parse_token(arg, filename, linenum);
455 switch (opcode) {
456 /* Portable-specific options */
7fceb20d 457 case sUsePAM:
458 intptr = &options->use_pam;
2717fa0f 459 goto parse_flag;
48e671d5 460
2717fa0f 461 /* Standard Options */
462 case sBadOption:
463 return -1;
464 case sPort:
465 /* ignore ports from configfile if cmdline specifies ports */
466 if (options->ports_from_cmdline)
467 return 0;
468 if (options->listen_addrs != NULL)
469 fatal("%s line %d: ports must be specified before "
3a454b6a 470 "ListenAddress.", filename, linenum);
2717fa0f 471 if (options->num_ports >= MAX_PORTS)
472 fatal("%s line %d: too many ports.",
473 filename, linenum);
474 arg = strdelim(&cp);
475 if (!arg || *arg == '\0')
476 fatal("%s line %d: missing port number.",
477 filename, linenum);
478 options->ports[options->num_ports++] = a2port(arg);
479 if (options->ports[options->num_ports-1] == 0)
480 fatal("%s line %d: Badly formatted port number.",
481 filename, linenum);
482 break;
483
484 case sServerKeyBits:
485 intptr = &options->server_key_bits;
5260325f 486parse_int:
2717fa0f 487 arg = strdelim(&cp);
488 if (!arg || *arg == '\0')
489 fatal("%s line %d: missing integer value.",
490 filename, linenum);
491 value = atoi(arg);
492 if (*intptr == -1)
493 *intptr = value;
494 break;
495
496 case sLoginGraceTime:
497 intptr = &options->login_grace_time;
e2b1fb42 498parse_time:
2717fa0f 499 arg = strdelim(&cp);
500 if (!arg || *arg == '\0')
501 fatal("%s line %d: missing time value.",
502 filename, linenum);
503 if ((value = convtime(arg)) == -1)
504 fatal("%s line %d: invalid time value.",
505 filename, linenum);
506 if (*intptr == -1)
507 *intptr = value;
508 break;
509
510 case sKeyRegenerationTime:
511 intptr = &options->key_regeneration_time;
512 goto parse_time;
513
514 case sListenAddress:
515 arg = strdelim(&cp);
3867aa0a 516 if (arg == NULL || *arg == '\0')
517 fatal("%s line %d: missing address",
2717fa0f 518 filename, linenum);
3867aa0a 519 p = hpdelim(&arg);
520 if (p == NULL)
521 fatal("%s line %d: bad address:port usage",
2717fa0f 522 filename, linenum);
3867aa0a 523 p = cleanhostname(p);
524 if (arg == NULL)
525 port = 0;
526 else if ((port = a2port(arg)) == 0)
527 fatal("%s line %d: bad port number", filename, linenum);
528
529 add_listen_addr(options, p, port);
530
2717fa0f 531 break;
532
31b41ceb 533 case sAddressFamily:
534 arg = strdelim(&cp);
535 intptr = &options->address_family;
536 if (options->listen_addrs != NULL)
537 fatal("%s line %d: address family must be specified before "
538 "ListenAddress.", filename, linenum);
539 if (strcasecmp(arg, "inet") == 0)
540 value = AF_INET;
541 else if (strcasecmp(arg, "inet6") == 0)
542 value = AF_INET6;
543 else if (strcasecmp(arg, "any") == 0)
544 value = AF_UNSPEC;
545 else
546 fatal("%s line %d: unsupported address family \"%s\".",
547 filename, linenum, arg);
548 if (*intptr == -1)
549 *intptr = value;
550 break;
551
2717fa0f 552 case sHostKeyFile:
553 intptr = &options->num_host_key_files;
554 if (*intptr >= MAX_HOSTKEYS)
555 fatal("%s line %d: too many host keys specified (max %d).",
556 filename, linenum, MAX_HOSTKEYS);
557 charptr = &options->host_key_files[*intptr];
fa649821 558parse_filename:
2717fa0f 559 arg = strdelim(&cp);
560 if (!arg || *arg == '\0')
561 fatal("%s line %d: missing file name.",
562 filename, linenum);
563 if (*charptr == NULL) {
564 *charptr = tilde_expand_filename(arg, getuid());
565 /* increase optional counter */
566 if (intptr != NULL)
567 *intptr = *intptr + 1;
568 }
569 break;
0fbe8c74 570
2717fa0f 571 case sPidFile:
572 charptr = &options->pid_file;
573 goto parse_filename;
5260325f 574
2717fa0f 575 case sPermitRootLogin:
576 intptr = &options->permit_root_login;
577 arg = strdelim(&cp);
578 if (!arg || *arg == '\0')
579 fatal("%s line %d: missing yes/"
580 "without-password/forced-commands-only/no "
581 "argument.", filename, linenum);
582 value = 0; /* silence compiler */
583 if (strcmp(arg, "without-password") == 0)
584 value = PERMIT_NO_PASSWD;
585 else if (strcmp(arg, "forced-commands-only") == 0)
586 value = PERMIT_FORCED_ONLY;
587 else if (strcmp(arg, "yes") == 0)
588 value = PERMIT_YES;
589 else if (strcmp(arg, "no") == 0)
590 value = PERMIT_NO;
591 else
592 fatal("%s line %d: Bad yes/"
593 "without-password/forced-commands-only/no "
594 "argument: %s", filename, linenum, arg);
595 if (*intptr == -1)
596 *intptr = value;
597 break;
598
599 case sIgnoreRhosts:
600 intptr = &options->ignore_rhosts;
5260325f 601parse_flag:
2717fa0f 602 arg = strdelim(&cp);
603 if (!arg || *arg == '\0')
604 fatal("%s line %d: missing yes/no argument.",
605 filename, linenum);
606 value = 0; /* silence compiler */
607 if (strcmp(arg, "yes") == 0)
608 value = 1;
609 else if (strcmp(arg, "no") == 0)
610 value = 0;
611 else
612 fatal("%s line %d: Bad yes/no argument: %s",
613 filename, linenum, arg);
614 if (*intptr == -1)
615 *intptr = value;
616 break;
617
618 case sIgnoreUserKnownHosts:
619 intptr = &options->ignore_user_known_hosts;
620 goto parse_flag;
621
2717fa0f 622 case sRhostsRSAAuthentication:
623 intptr = &options->rhosts_rsa_authentication;
624 goto parse_flag;
625
626 case sHostbasedAuthentication:
627 intptr = &options->hostbased_authentication;
628 goto parse_flag;
629
630 case sHostbasedUsesNameFromPacketOnly:
631 intptr = &options->hostbased_uses_name_from_packet_only;
632 goto parse_flag;
633
634 case sRSAAuthentication:
635 intptr = &options->rsa_authentication;
636 goto parse_flag;
637
638 case sPubkeyAuthentication:
639 intptr = &options->pubkey_authentication;
640 goto parse_flag;
d0ec7f42 641
2717fa0f 642 case sKerberosAuthentication:
643 intptr = &options->kerberos_authentication;
644 goto parse_flag;
5260325f 645
2717fa0f 646 case sKerberosOrLocalPasswd:
647 intptr = &options->kerberos_or_local_passwd;
648 goto parse_flag;
5260325f 649
2717fa0f 650 case sKerberosTicketCleanup:
651 intptr = &options->kerberos_ticket_cleanup;
652 goto parse_flag;
d0ec7f42 653
a1e30b47 654 case sKerberosGetAFSToken:
655 intptr = &options->kerberos_get_afs_token;
656 goto parse_flag;
657
7364bd04 658 case sGssAuthentication:
659 intptr = &options->gss_authentication;
660 goto parse_flag;
661
662 case sGssCleanupCreds:
663 intptr = &options->gss_cleanup_creds;
664 goto parse_flag;
665
2717fa0f 666 case sPasswordAuthentication:
667 intptr = &options->password_authentication;
668 goto parse_flag;
5260325f 669
2717fa0f 670 case sKbdInteractiveAuthentication:
671 intptr = &options->kbd_interactive_authentication;
672 goto parse_flag;
8002af61 673
2717fa0f 674 case sChallengeResponseAuthentication:
675 intptr = &options->challenge_response_authentication;
676 goto parse_flag;
8002af61 677
2717fa0f 678 case sPrintMotd:
679 intptr = &options->print_motd;
680 goto parse_flag;
5260325f 681
2717fa0f 682 case sPrintLastLog:
683 intptr = &options->print_lastlog;
684 goto parse_flag;
5260325f 685
2717fa0f 686 case sX11Forwarding:
687 intptr = &options->x11_forwarding;
688 goto parse_flag;
5260325f 689
2717fa0f 690 case sX11DisplayOffset:
691 intptr = &options->x11_display_offset;
692 goto parse_int;
8efc0c15 693
e6e573bd 694 case sX11UseLocalhost:
695 intptr = &options->x11_use_localhost;
696 goto parse_flag;
697
2717fa0f 698 case sXAuthLocation:
699 charptr = &options->xauth_location;
700 goto parse_filename;
5260325f 701
2717fa0f 702 case sStrictModes:
703 intptr = &options->strict_modes;
704 goto parse_flag;
5260325f 705
fd573618 706 case sTCPKeepAlive:
707 intptr = &options->tcp_keep_alive;
2717fa0f 708 goto parse_flag;
33de75a3 709
2717fa0f 710 case sEmptyPasswd:
711 intptr = &options->permit_empty_passwd;
712 goto parse_flag;
5260325f 713
f00bab84 714 case sPermitUserEnvironment:
715 intptr = &options->permit_user_env;
716 goto parse_flag;
717
2717fa0f 718 case sUseLogin:
719 intptr = &options->use_login;
720 goto parse_flag;
5260325f 721
636f76ca 722 case sCompression:
723 intptr = &options->compression;
724 goto parse_flag;
725
2717fa0f 726 case sGatewayPorts:
727 intptr = &options->gateway_ports;
3867aa0a 728 arg = strdelim(&cp);
729 if (!arg || *arg == '\0')
730 fatal("%s line %d: missing yes/no/clientspecified "
731 "argument.", filename, linenum);
732 value = 0; /* silence compiler */
733 if (strcmp(arg, "clientspecified") == 0)
734 value = 2;
735 else if (strcmp(arg, "yes") == 0)
736 value = 1;
737 else if (strcmp(arg, "no") == 0)
738 value = 0;
739 else
740 fatal("%s line %d: Bad yes/no/clientspecified "
741 "argument: %s", filename, linenum, arg);
742 if (*intptr == -1)
743 *intptr = value;
744 break;
5260325f 745
c5a7d788 746 case sUseDNS:
747 intptr = &options->use_dns;
2717fa0f 748 goto parse_flag;
5260325f 749
2717fa0f 750 case sLogFacility:
751 intptr = (int *) &options->log_facility;
752 arg = strdelim(&cp);
753 value = log_facility_number(arg);
5eaf8578 754 if (value == SYSLOG_FACILITY_NOT_SET)
2717fa0f 755 fatal("%.200s line %d: unsupported log facility '%s'",
756 filename, linenum, arg ? arg : "<NONE>");
757 if (*intptr == -1)
758 *intptr = (SyslogFacility) value;
759 break;
760
761 case sLogLevel:
762 intptr = (int *) &options->log_level;
763 arg = strdelim(&cp);
764 value = log_level_number(arg);
5eaf8578 765 if (value == SYSLOG_LEVEL_NOT_SET)
2717fa0f 766 fatal("%.200s line %d: unsupported log level '%s'",
767 filename, linenum, arg ? arg : "<NONE>");
768 if (*intptr == -1)
769 *intptr = (LogLevel) value;
770 break;
771
772 case sAllowTcpForwarding:
773 intptr = &options->allow_tcp_forwarding;
774 goto parse_flag;
775
1853d1ef 776 case sUsePrivilegeSeparation:
777 intptr = &use_privsep;
778 goto parse_flag;
779
2717fa0f 780 case sAllowUsers:
781 while ((arg = strdelim(&cp)) && *arg != '\0') {
782 if (options->num_allow_users >= MAX_ALLOW_USERS)
783 fatal("%s line %d: too many allow users.",
784 filename, linenum);
7528d467 785 options->allow_users[options->num_allow_users++] =
786 xstrdup(arg);
2717fa0f 787 }
788 break;
a8be9f80 789
2717fa0f 790 case sDenyUsers:
791 while ((arg = strdelim(&cp)) && *arg != '\0') {
792 if (options->num_deny_users >= MAX_DENY_USERS)
793 fatal( "%s line %d: too many deny users.",
794 filename, linenum);
7528d467 795 options->deny_users[options->num_deny_users++] =
796 xstrdup(arg);
2717fa0f 797 }
798 break;
b2552997 799
2717fa0f 800 case sAllowGroups:
801 while ((arg = strdelim(&cp)) && *arg != '\0') {
802 if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
803 fatal("%s line %d: too many allow groups.",
804 filename, linenum);
7528d467 805 options->allow_groups[options->num_allow_groups++] =
806 xstrdup(arg);
2717fa0f 807 }
808 break;
a8be9f80 809
2717fa0f 810 case sDenyGroups:
811 while ((arg = strdelim(&cp)) && *arg != '\0') {
812 if (options->num_deny_groups >= MAX_DENY_GROUPS)
813 fatal("%s line %d: too many deny groups.",
814 filename, linenum);
815 options->deny_groups[options->num_deny_groups++] = xstrdup(arg);
816 }
817 break;
38c295d6 818
2717fa0f 819 case sCiphers:
820 arg = strdelim(&cp);
821 if (!arg || *arg == '\0')
822 fatal("%s line %d: Missing argument.", filename, linenum);
823 if (!ciphers_valid(arg))
824 fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
825 filename, linenum, arg ? arg : "<NONE>");
826 if (options->ciphers == NULL)
827 options->ciphers = xstrdup(arg);
828 break;
829
830 case sMacs:
831 arg = strdelim(&cp);
832 if (!arg || *arg == '\0')
833 fatal("%s line %d: Missing argument.", filename, linenum);
834 if (!mac_valid(arg))
835 fatal("%s line %d: Bad SSH2 mac spec '%s'.",
836 filename, linenum, arg ? arg : "<NONE>");
837 if (options->macs == NULL)
838 options->macs = xstrdup(arg);
839 break;
840
841 case sProtocol:
842 intptr = &options->protocol;
843 arg = strdelim(&cp);
844 if (!arg || *arg == '\0')
845 fatal("%s line %d: Missing argument.", filename, linenum);
846 value = proto_spec(arg);
847 if (value == SSH_PROTO_UNKNOWN)
848 fatal("%s line %d: Bad protocol spec '%s'.",
184eed6a 849 filename, linenum, arg ? arg : "<NONE>");
2717fa0f 850 if (*intptr == SSH_PROTO_UNKNOWN)
851 *intptr = value;
852 break;
853
854 case sSubsystem:
855 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
856 fatal("%s line %d: too many subsystems defined.",
184eed6a 857 filename, linenum);
2717fa0f 858 }
859 arg = strdelim(&cp);
860 if (!arg || *arg == '\0')
861 fatal("%s line %d: Missing subsystem name.",
184eed6a 862 filename, linenum);
2717fa0f 863 for (i = 0; i < options->num_subsystems; i++)
864 if (strcmp(arg, options->subsystem_name[i]) == 0)
865 fatal("%s line %d: Subsystem '%s' already defined.",
184eed6a 866 filename, linenum, arg);
2717fa0f 867 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
868 arg = strdelim(&cp);
869 if (!arg || *arg == '\0')
870 fatal("%s line %d: Missing subsystem command.",
184eed6a 871 filename, linenum);
2717fa0f 872 options->subsystem_command[options->num_subsystems] = xstrdup(arg);
873 options->num_subsystems++;
874 break;
875
876 case sMaxStartups:
877 arg = strdelim(&cp);
878 if (!arg || *arg == '\0')
879 fatal("%s line %d: Missing MaxStartups spec.",
184eed6a 880 filename, linenum);
2717fa0f 881 if ((n = sscanf(arg, "%d:%d:%d",
882 &options->max_startups_begin,
883 &options->max_startups_rate,
884 &options->max_startups)) == 3) {
885 if (options->max_startups_begin >
886 options->max_startups ||
887 options->max_startups_rate > 100 ||
888 options->max_startups_rate < 1)
c345cf9d 889 fatal("%s line %d: Illegal MaxStartups spec.",
97de229c 890 filename, linenum);
2717fa0f 891 } else if (n != 1)
892 fatal("%s line %d: Illegal MaxStartups spec.",
893 filename, linenum);
894 else
895 options->max_startups = options->max_startups_begin;
896 break;
897
af4bd935 898 case sMaxAuthTries:
899 intptr = &options->max_authtries;
900 goto parse_int;
901
2717fa0f 902 case sBanner:
903 charptr = &options->banner;
904 goto parse_filename;
905 /*
906 * These options can contain %X options expanded at
907 * connect time, so that you can specify paths like:
908 *
909 * AuthorizedKeysFile /etc/ssh_keys/%u
910 */
911 case sAuthorizedKeysFile:
912 case sAuthorizedKeysFile2:
913 charptr = (opcode == sAuthorizedKeysFile ) ?
914 &options->authorized_keys_file :
915 &options->authorized_keys_file2;
916 goto parse_filename;
917
918 case sClientAliveInterval:
919 intptr = &options->client_alive_interval;
920 goto parse_time;
921
922 case sClientAliveCountMax:
923 intptr = &options->client_alive_count_max;
924 goto parse_int;
925
61a2c1da 926 case sAcceptEnv:
927 while ((arg = strdelim(&cp)) && *arg != '\0') {
928 if (strchr(arg, '=') != NULL)
929 fatal("%s line %d: Invalid environment name.",
930 filename, linenum);
931 if (options->num_accept_env >= MAX_ACCEPT_ENV)
932 fatal("%s line %d: too many allow env.",
933 filename, linenum);
934 options->accept_env[options->num_accept_env++] =
935 xstrdup(arg);
936 }
937 break;
938
2717fa0f 939 case sDeprecated:
bbe88b6d 940 logit("%s line %d: Deprecated option %s",
2717fa0f 941 filename, linenum, arg);
942 while (arg)
943 arg = strdelim(&cp);
944 break;
945
a2144546 946 case sUnsupported:
947 logit("%s line %d: Unsupported option %s",
948 filename, linenum, arg);
949 while (arg)
950 arg = strdelim(&cp);
951 break;
952
2717fa0f 953 default:
954 fatal("%s line %d: Missing handler for opcode %s (%d)",
955 filename, linenum, arg, opcode);
956 }
957 if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
958 fatal("%s line %d: garbage at end of line; \"%.200s\".",
959 filename, linenum, arg);
960 return 0;
961}
089fbbd2 962
2717fa0f 963/* Reads the server configuration file. */
5c53a31e 964
2717fa0f 965void
b9a549d7 966load_server_config(const char *filename, Buffer *conf)
2717fa0f 967{
b9a549d7 968 char line[1024], *cp;
7528d467 969 FILE *f;
2717fa0f 970
b9a549d7 971 debug2("%s: filename %s", __func__, filename);
972 if ((f = fopen(filename, "r")) == NULL) {
2717fa0f 973 perror(filename);
974 exit(1);
975 }
b9a549d7 976 buffer_clear(conf);
2717fa0f 977 while (fgets(line, sizeof(line), f)) {
b9a549d7 978 /*
979 * Trim out comments and strip whitespace
f2107e97 980 * NB - preserve newlines, they are needed to reproduce
b9a549d7 981 * line numbers later for error messages
982 */
983 if ((cp = strchr(line, '#')) != NULL)
984 memcpy(cp, "\n", 2);
985 cp = line + strspn(line, " \t\r");
986
987 buffer_append(conf, cp, strlen(cp));
8efc0c15 988 }
b9a549d7 989 buffer_append(conf, "\0", 1);
5260325f 990 fclose(f);
b9a549d7 991 debug2("%s: done config len = %d", __func__, buffer_len(conf));
992}
993
994void
995parse_server_config(ServerOptions *options, const char *filename, Buffer *conf)
996{
997 int linenum, bad_options = 0;
16acb158 998 char *cp, *obuf, *cbuf;
b9a549d7 999
1000 debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
1001
16acb158 1002 obuf = cbuf = xstrdup(buffer_ptr(conf));
861cc543 1003 linenum = 1;
b9a549d7 1004 while((cp = strsep(&cbuf, "\n")) != NULL) {
1005 if (process_server_config_line(options, cp, filename,
1006 linenum++) != 0)
1007 bad_options++;
1008 }
16acb158 1009 xfree(obuf);
b7c70970 1010 if (bad_options > 0)
1011 fatal("%s: terminating, %d bad configuration options",
1012 filename, bad_options);
8efc0c15 1013}
This page took 0.468207 seconds and 5 git commands to generate.