]> andersk Git - gssapi-openssh.git/blame - openssh/readconf.c
Tweak the environment variables set by the configure script for the
[gssapi-openssh.git] / openssh / readconf.c
CommitLineData
fa0f0f45 1/* $OpenBSD: readconf.c,v 1.162 2007/03/20 03:56:12 tedu Exp $ */
3c0ef626 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * Functions for reading the configuration files.
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15#include "includes.h"
3c0ef626 16
30460aeb 17#include <sys/types.h>
18#include <sys/stat.h>
19#include <sys/socket.h>
20
21#include <netinet/in.h>
22
23#include <ctype.h>
24#include <errno.h>
25#include <netdb.h>
26#include <signal.h>
27#include <stdarg.h>
28#include <stdio.h>
29#include <string.h>
30#include <unistd.h>
31
3c0ef626 32#include "xmalloc.h"
30460aeb 33#include "ssh.h"
3c0ef626 34#include "compat.h"
35#include "cipher.h"
36#include "pathnames.h"
37#include "log.h"
30460aeb 38#include "key.h"
3c0ef626 39#include "readconf.h"
40#include "match.h"
41#include "misc.h"
30460aeb 42#include "buffer.h"
3c0ef626 43#include "kex.h"
44#include "mac.h"
45
46/* Format of the configuration file:
47
48 # Configuration data is parsed as follows:
49 # 1. command line options
50 # 2. user-specific file
51 # 3. system-wide file
52 # Any configuration value is only changed the first time it is set.
53 # Thus, host-specific definitions should be at the beginning of the
54 # configuration file, and defaults at the end.
55
56 # Host-specific declarations. These may override anything above. A single
57 # host may match multiple declarations; these are processed in the order
58 # that they are given in.
59
60 Host *.ngs.fi ngs.fi
44a053a3 61 User foo
3c0ef626 62
63 Host fake.com
64 HostName another.host.name.real.org
65 User blaah
66 Port 34289
67 ForwardX11 no
68 ForwardAgent no
69
70 Host books.com
71 RemoteForward 9999 shadows.cs.hut.fi:9999
72 Cipher 3des
73
74 Host fascist.blob.com
75 Port 23123
76 User tylonen
3c0ef626 77 PasswordAuthentication no
78
79 Host puukko.hut.fi
80 User t35124p
81 ProxyCommand ssh-proxy %h %p
82
83 Host *.fr
44a053a3 84 PublicKeyAuthentication no
3c0ef626 85
86 Host *.su
87 Cipher none
88 PasswordAuthentication no
89
08822d99 90 Host vpn.fake.com
91 Tunnel yes
92 TunnelDevice 3
93
3c0ef626 94 # Defaults for various options
95 Host *
96 ForwardAgent no
97 ForwardX11 no
3c0ef626 98 PasswordAuthentication yes
99 RSAAuthentication yes
100 RhostsRSAAuthentication yes
3c0ef626 101 StrictHostKeyChecking yes
540d72c3 102 TcpKeepAlive no
3c0ef626 103 IdentityFile ~/.ssh/identity
104 Port 22
105 EscapeChar ~
106
107*/
108
109/* Keyword tokens. */
110
111typedef enum {
112 oBadOption,
540d72c3 113 oForwardAgent, oForwardX11, oForwardX11Trusted, oGatewayPorts,
30460aeb 114 oExitOnForwardFailure,
44a053a3 115 oPasswordAuthentication, oRSAAuthentication,
3c0ef626 116 oChallengeResponseAuthentication, oXAuthLocation,
3c0ef626 117 oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
118 oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
119 oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
120 oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
540d72c3 121 oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts,
3c0ef626 122 oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs,
123 oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication,
124 oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias,
125 oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication,
126 oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
44a053a3 127 oClearAllForwardings, oNoHostAuthenticationForLocalhost,
7cac2b65 128 oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout,
f472818d 129 oAddressFamily, oGssAuthentication, oGssDelegateCreds,
130 oGssKeyEx,
fe4ad273 131 oGssTrustDns,
12a403af 132 oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly,
dfddba3d 133 oSendEnv, oControlPath, oControlMaster, oHashKnownHosts,
08822d99 134 oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand,
a7213e65 135 oNoneEnabled, oTcpRcvBufPoll, oTcpRcvBuf, oNoneSwitch, oHPNDisabled,
136 oHPNBufferSize,
7cac2b65 137 oDeprecated, oUnsupported
3c0ef626 138} OpCodes;
139
140/* Textual representations of the tokens. */
141
142static struct {
143 const char *name;
144 OpCodes opcode;
145} keywords[] = {
146 { "forwardagent", oForwardAgent },
147 { "forwardx11", oForwardX11 },
540d72c3 148 { "forwardx11trusted", oForwardX11Trusted },
30460aeb 149 { "exitonforwardfailure", oExitOnForwardFailure },
3c0ef626 150 { "xauthlocation", oXAuthLocation },
151 { "gatewayports", oGatewayPorts },
152 { "useprivilegedport", oUsePrivilegedPort },
7cac2b65 153 { "rhostsauthentication", oDeprecated },
3c0ef626 154 { "passwordauthentication", oPasswordAuthentication },
155 { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
156 { "kbdinteractivedevices", oKbdInteractiveDevices },
157 { "rsaauthentication", oRSAAuthentication },
158 { "pubkeyauthentication", oPubkeyAuthentication },
159 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
160 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
161 { "hostbasedauthentication", oHostbasedAuthentication },
162 { "challengeresponseauthentication", oChallengeResponseAuthentication },
163 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
164 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */
7cac2b65 165 { "kerberosauthentication", oUnsupported },
166 { "kerberostgtpassing", oUnsupported },
167 { "afstokenpassing", oUnsupported },
168#if defined(GSSAPI)
5598e598 169 { "gssapiauthentication", oGssAuthentication },
7a056ed1 170 { "gssapikeyexchange", oGssKeyEx },
5598e598 171 { "gssapidelegatecredentials", oGssDelegateCreds },
fe4ad273 172 { "gssapitrustdns", oGssTrustDns },
7cac2b65 173#else
174 { "gssapiauthentication", oUnsupported },
175 { "gssapikeyexchange", oUnsupported },
176 { "gssapidelegatecredentials", oUnsupported },
fe4ad273 177 { "gssapitrustdns", oUnsupported },
3c0ef626 178#endif
44a053a3 179 { "fallbacktorsh", oDeprecated },
180 { "usersh", oDeprecated },
3c0ef626 181 { "identityfile", oIdentityFile },
182 { "identityfile2", oIdentityFile }, /* alias */
12a403af 183 { "identitiesonly", oIdentitiesOnly },
3c0ef626 184 { "hostname", oHostName },
185 { "hostkeyalias", oHostKeyAlias },
186 { "proxycommand", oProxyCommand },
187 { "port", oPort },
188 { "cipher", oCipher },
189 { "ciphers", oCiphers },
190 { "macs", oMacs },
191 { "protocol", oProtocol },
192 { "remoteforward", oRemoteForward },
193 { "localforward", oLocalForward },
194 { "user", oUser },
195 { "host", oHost },
196 { "escapechar", oEscapeChar },
197 { "globalknownhostsfile", oGlobalKnownHostsFile },
198 { "userknownhostsfile", oUserKnownHostsFile }, /* obsolete */
199 { "globalknownhostsfile2", oGlobalKnownHostsFile2 },
200 { "userknownhostsfile2", oUserKnownHostsFile2 }, /* obsolete */
201 { "connectionattempts", oConnectionAttempts },
202 { "batchmode", oBatchMode },
203 { "checkhostip", oCheckHostIP },
204 { "stricthostkeychecking", oStrictHostKeyChecking },
205 { "compression", oCompression },
206 { "compressionlevel", oCompressionLevel },
540d72c3 207 { "tcpkeepalive", oTCPKeepAlive },
208 { "keepalive", oTCPKeepAlive }, /* obsolete */
3c0ef626 209 { "numberofpasswordprompts", oNumberOfPasswordPrompts },
210 { "loglevel", oLogLevel },
211 { "dynamicforward", oDynamicForward },
212 { "preferredauthentications", oPreferredAuthentications },
213 { "hostkeyalgorithms", oHostKeyAlgorithms },
214 { "bindaddress", oBindAddress },
7cac2b65 215#ifdef SMARTCARD
3c0ef626 216 { "smartcarddevice", oSmartcardDevice },
7cac2b65 217#else
218 { "smartcarddevice", oUnsupported },
219#endif
e9702f7d 220 { "clearallforwardings", oClearAllForwardings },
bfe49944 221 { "enablesshkeysign", oEnableSSHKeysign },
7cac2b65 222 { "verifyhostkeydns", oVerifyHostKeyDNS },
e9702f7d 223 { "nohostauthenticationforlocalhost", oNoHostAuthenticationForLocalhost },
7cac2b65 224 { "rekeylimit", oRekeyLimit },
225 { "connecttimeout", oConnectTimeout },
226 { "addressfamily", oAddressFamily },
540d72c3 227 { "serveraliveinterval", oServerAliveInterval },
228 { "serveralivecountmax", oServerAliveCountMax },
7e82606e 229 { "sendenv", oSendEnv },
230 { "controlpath", oControlPath },
231 { "controlmaster", oControlMaster },
dfddba3d 232 { "hashknownhosts", oHashKnownHosts },
08822d99 233 { "tunnel", oTunnel },
234 { "tunneldevice", oTunnelDevice },
235 { "localcommand", oLocalCommand },
236 { "permitlocalcommand", oPermitLocalCommand },
a7213e65 237 { "noneenabled", oNoneEnabled },
238 { "tcprcvbufpoll", oTcpRcvBufPoll },
239 { "tcprcvbuf", oTcpRcvBuf },
240 { "noneswitch", oNoneSwitch },
241 { "hpndisabled", oHPNDisabled },
242 { "hpnbuffersize", oHPNBufferSize },
e9702f7d 243 { NULL, oBadOption }
3c0ef626 244};
245
246/*
247 * Adds a local TCP/IP port forward to options. Never returns if there is an
248 * error.
249 */
250
251void
dfddba3d 252add_local_forward(Options *options, const Forward *newfwd)
3c0ef626 253{
254 Forward *fwd;
d03f4262 255#ifndef NO_IPPORT_RESERVED_CONCEPT
3c0ef626 256 extern uid_t original_real_uid;
dfddba3d 257 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0)
3c0ef626 258 fatal("Privileged ports can only be forwarded by root.");
259#endif
260 if (options->num_local_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
261 fatal("Too many local forwards (max %d).", SSH_MAX_FORWARDS_PER_DIRECTION);
262 fwd = &options->local_forwards[options->num_local_forwards++];
dfddba3d 263
264 fwd->listen_host = (newfwd->listen_host == NULL) ?
265 NULL : xstrdup(newfwd->listen_host);
266 fwd->listen_port = newfwd->listen_port;
267 fwd->connect_host = xstrdup(newfwd->connect_host);
268 fwd->connect_port = newfwd->connect_port;
3c0ef626 269}
270
271/*
272 * Adds a remote TCP/IP port forward to options. Never returns if there is
273 * an error.
274 */
275
276void
dfddba3d 277add_remote_forward(Options *options, const Forward *newfwd)
3c0ef626 278{
279 Forward *fwd;
280 if (options->num_remote_forwards >= SSH_MAX_FORWARDS_PER_DIRECTION)
281 fatal("Too many remote forwards (max %d).",
e9702f7d 282 SSH_MAX_FORWARDS_PER_DIRECTION);
3c0ef626 283 fwd = &options->remote_forwards[options->num_remote_forwards++];
dfddba3d 284
285 fwd->listen_host = (newfwd->listen_host == NULL) ?
286 NULL : xstrdup(newfwd->listen_host);
287 fwd->listen_port = newfwd->listen_port;
288 fwd->connect_host = xstrdup(newfwd->connect_host);
289 fwd->connect_port = newfwd->connect_port;
3c0ef626 290}
291
292static void
293clear_forwardings(Options *options)
294{
295 int i;
296
dfddba3d 297 for (i = 0; i < options->num_local_forwards; i++) {
8b32eddc 298 if (options->local_forwards[i].listen_host != NULL)
299 xfree(options->local_forwards[i].listen_host);
dfddba3d 300 xfree(options->local_forwards[i].connect_host);
301 }
3c0ef626 302 options->num_local_forwards = 0;
dfddba3d 303 for (i = 0; i < options->num_remote_forwards; i++) {
8b32eddc 304 if (options->remote_forwards[i].listen_host != NULL)
305 xfree(options->remote_forwards[i].listen_host);
dfddba3d 306 xfree(options->remote_forwards[i].connect_host);
307 }
3c0ef626 308 options->num_remote_forwards = 0;
08822d99 309 options->tun_open = SSH_TUNMODE_NO;
3c0ef626 310}
311
312/*
313 * Returns the number of the token pointed to by cp or oBadOption.
314 */
315
316static OpCodes
317parse_token(const char *cp, const char *filename, int linenum)
318{
319 u_int i;
320
321 for (i = 0; keywords[i].name; i++)
322 if (strcasecmp(cp, keywords[i].name) == 0)
323 return keywords[i].opcode;
324
325 error("%s: line %d: Bad configuration option: %s",
326 filename, linenum, cp);
327 return oBadOption;
328}
329
330/*
331 * Processes a single option line as used in the configuration files. This
332 * only sets those values that have not already been set.
333 */
bfe49944 334#define WHITESPACE " \t\r\n"
3c0ef626 335
336int
337process_config_line(Options *options, const char *host,
338 char *line, const char *filename, int linenum,
339 int *activep)
340{
dfddba3d 341 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2, fwdarg[256];
30460aeb 342 int opcode, *intptr, value, value2, scale;
343 long long orig, val64;
bfe49944 344 size_t len;
dfddba3d 345 Forward fwd;
3c0ef626 346
7cac2b65 347 /* Strip trailing whitespace */
8b32eddc 348 for (len = strlen(line) - 1; len > 0; len--) {
7cac2b65 349 if (strchr(WHITESPACE, line[len]) == NULL)
350 break;
351 line[len] = '\0';
352 }
353
3c0ef626 354 s = line;
355 /* Get the keyword. (Each line is supposed to begin with a keyword). */
30460aeb 356 if ((keyword = strdelim(&s)) == NULL)
357 return 0;
3c0ef626 358 /* Ignore leading whitespace. */
359 if (*keyword == '\0')
360 keyword = strdelim(&s);
361 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword == '#')
362 return 0;
363
364 opcode = parse_token(keyword, filename, linenum);
365
366 switch (opcode) {
367 case oBadOption:
368 /* don't panic, but count bad options */
369 return -1;
370 /* NOTREACHED */
7cac2b65 371 case oConnectTimeout:
372 intptr = &options->connection_timeout;
540d72c3 373parse_time:
7cac2b65 374 arg = strdelim(&s);
375 if (!arg || *arg == '\0')
376 fatal("%s line %d: missing time value.",
377 filename, linenum);
378 if ((value = convtime(arg)) == -1)
379 fatal("%s line %d: invalid time value.",
380 filename, linenum);
0b90ac93 381 if (*activep && *intptr == -1)
7cac2b65 382 *intptr = value;
383 break;
384
3c0ef626 385 case oForwardAgent:
386 intptr = &options->forward_agent;
387parse_flag:
388 arg = strdelim(&s);
389 if (!arg || *arg == '\0')
390 fatal("%.200s line %d: Missing yes/no argument.", filename, linenum);
391 value = 0; /* To avoid compiler warning... */
392 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
393 value = 1;
394 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
395 value = 0;
396 else
397 fatal("%.200s line %d: Bad yes/no argument.", filename, linenum);
398 if (*activep && *intptr == -1)
399 *intptr = value;
400 break;
401
402 case oForwardX11:
403 intptr = &options->forward_x11;
404 goto parse_flag;
405
540d72c3 406 case oForwardX11Trusted:
407 intptr = &options->forward_x11_trusted;
408 goto parse_flag;
409
3c0ef626 410 case oGatewayPorts:
411 intptr = &options->gateway_ports;
412 goto parse_flag;
413
30460aeb 414 case oExitOnForwardFailure:
415 intptr = &options->exit_on_forward_failure;
416 goto parse_flag;
417
3c0ef626 418 case oUsePrivilegedPort:
419 intptr = &options->use_privileged_port;
420 goto parse_flag;
421
3c0ef626 422 case oPasswordAuthentication:
423 intptr = &options->password_authentication;
424 goto parse_flag;
425
426 case oKbdInteractiveAuthentication:
427 intptr = &options->kbd_interactive_authentication;
428 goto parse_flag;
429
430 case oKbdInteractiveDevices:
431 charptr = &options->kbd_interactive_devices;
432 goto parse_string;
433
434 case oPubkeyAuthentication:
435 intptr = &options->pubkey_authentication;
436 goto parse_flag;
437
438 case oRSAAuthentication:
439 intptr = &options->rsa_authentication;
440 goto parse_flag;
441
442 case oRhostsRSAAuthentication:
443 intptr = &options->rhosts_rsa_authentication;
444 goto parse_flag;
445
446 case oHostbasedAuthentication:
447 intptr = &options->hostbased_authentication;
448 goto parse_flag;
449
450 case oChallengeResponseAuthentication:
451 intptr = &options->challenge_response_authentication;
452 goto parse_flag;
7cac2b65 453
5598e598 454 case oGssAuthentication:
455 intptr = &options->gss_authentication;
456 goto parse_flag;
7cac2b65 457
7a056ed1 458 case oGssKeyEx:
459 intptr = &options->gss_keyex;
460 goto parse_flag;
461
5598e598 462 case oGssDelegateCreds:
463 intptr = &options->gss_deleg_creds;
464 goto parse_flag;
5598e598 465
fe4ad273 466 case oGssTrustDns:
467 intptr = &options->gss_trust_dns;
468 goto parse_flag;
469
3c0ef626 470 case oBatchMode:
471 intptr = &options->batch_mode;
472 goto parse_flag;
473
474 case oCheckHostIP:
475 intptr = &options->check_host_ip;
476 goto parse_flag;
477
a7213e65 478 case oNoneEnabled:
479 intptr = &options->none_enabled;
480 goto parse_flag;
231cecf9 481
482 /* we check to see if the command comes from the */
483 /* command line or not. If it does then enable it */
484 /* otherwise fail. NONE should never be a default configuration */
a7213e65 485 case oNoneSwitch:
231cecf9 486 if(strcmp(filename,"command-line")==0)
487 {
488 intptr = &options->none_switch;
489 goto parse_flag;
490 } else {
491 error("NoneSwitch is found in %.200s.\nYou may only use this configuration option from the command line", filename);
492 error("Continuing...");
493 debug("NoneSwitch directive found in %.200s.", filename);
494 return 0;
495 }
a7213e65 496
497 case oHPNDisabled:
498 intptr = &options->hpn_disabled;
499 goto parse_flag;
500
501 case oHPNBufferSize:
502 intptr = &options->hpn_buffer_size;
503 goto parse_int;
504
505 case oTcpRcvBufPoll:
506 intptr = &options->tcp_rcv_buf_poll;
507 goto parse_flag;
508
7cac2b65 509 case oVerifyHostKeyDNS:
510 intptr = &options->verify_host_key_dns;
540d72c3 511 goto parse_yesnoask;
7cac2b65 512
3c0ef626 513 case oStrictHostKeyChecking:
514 intptr = &options->strict_host_key_checking;
540d72c3 515parse_yesnoask:
3c0ef626 516 arg = strdelim(&s);
517 if (!arg || *arg == '\0')
518 fatal("%.200s line %d: Missing yes/no/ask argument.",
e9702f7d 519 filename, linenum);
3c0ef626 520 value = 0; /* To avoid compiler warning... */
521 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
522 value = 1;
523 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
524 value = 0;
525 else if (strcmp(arg, "ask") == 0)
526 value = 2;
527 else
528 fatal("%.200s line %d: Bad yes/no/ask argument.", filename, linenum);
529 if (*activep && *intptr == -1)
530 *intptr = value;
531 break;
532
533 case oCompression:
534 intptr = &options->compression;
535 goto parse_flag;
536
540d72c3 537 case oTCPKeepAlive:
538 intptr = &options->tcp_keep_alive;
3c0ef626 539 goto parse_flag;
540
541 case oNoHostAuthenticationForLocalhost:
542 intptr = &options->no_host_authentication_for_localhost;
543 goto parse_flag;
544
545 case oNumberOfPasswordPrompts:
546 intptr = &options->number_of_password_prompts;
547 goto parse_int;
548
549 case oCompressionLevel:
550 intptr = &options->compression_level;
551 goto parse_int;
552
7cac2b65 553 case oRekeyLimit:
554 intptr = &options->rekey_limit;
555 arg = strdelim(&s);
556 if (!arg || *arg == '\0')
557 fatal("%.200s line %d: Missing argument.", filename, linenum);
558 if (arg[0] < '0' || arg[0] > '9')
559 fatal("%.200s line %d: Bad number.", filename, linenum);
30460aeb 560 orig = val64 = strtoll(arg, &endofnumber, 10);
7cac2b65 561 if (arg == endofnumber)
562 fatal("%.200s line %d: Bad number.", filename, linenum);
563 switch (toupper(*endofnumber)) {
30460aeb 564 case '\0':
565 scale = 1;
566 break;
7cac2b65 567 case 'K':
30460aeb 568 scale = 1<<10;
7cac2b65 569 break;
570 case 'M':
30460aeb 571 scale = 1<<20;
7cac2b65 572 break;
573 case 'G':
30460aeb 574 scale = 1<<30;
7cac2b65 575 break;
30460aeb 576 default:
577 fatal("%.200s line %d: Invalid RekeyLimit suffix",
578 filename, linenum);
7cac2b65 579 }
30460aeb 580 val64 *= scale;
581 /* detect integer wrap and too-large limits */
582 if ((val64 / scale) != orig || val64 > INT_MAX)
583 fatal("%.200s line %d: RekeyLimit too large",
584 filename, linenum);
585 if (val64 < 16)
586 fatal("%.200s line %d: RekeyLimit too small",
587 filename, linenum);
7cac2b65 588 if (*activep && *intptr == -1)
30460aeb 589 *intptr = (int)val64;
7cac2b65 590 break;
591
3c0ef626 592 case oIdentityFile:
593 arg = strdelim(&s);
594 if (!arg || *arg == '\0')
595 fatal("%.200s line %d: Missing argument.", filename, linenum);
596 if (*activep) {
597 intptr = &options->num_identity_files;
598 if (*intptr >= SSH_MAX_IDENTITY_FILES)
599 fatal("%.200s line %d: Too many identity files specified (max %d).",
e9702f7d 600 filename, linenum, SSH_MAX_IDENTITY_FILES);
0b90ac93 601 charptr = &options->identity_files[*intptr];
3c0ef626 602 *charptr = xstrdup(arg);
603 *intptr = *intptr + 1;
604 }
605 break;
606
607 case oXAuthLocation:
608 charptr=&options->xauth_location;
609 goto parse_string;
610
611 case oUser:
612 charptr = &options->user;
613parse_string:
614 arg = strdelim(&s);
615 if (!arg || *arg == '\0')
616 fatal("%.200s line %d: Missing argument.", filename, linenum);
617 if (*activep && *charptr == NULL)
618 *charptr = xstrdup(arg);
619 break;
620
621 case oGlobalKnownHostsFile:
622 charptr = &options->system_hostfile;
623 goto parse_string;
624
625 case oUserKnownHostsFile:
626 charptr = &options->user_hostfile;
627 goto parse_string;
628
629 case oGlobalKnownHostsFile2:
630 charptr = &options->system_hostfile2;
631 goto parse_string;
632
633 case oUserKnownHostsFile2:
634 charptr = &options->user_hostfile2;
635 goto parse_string;
636
637 case oHostName:
638 charptr = &options->hostname;
639 goto parse_string;
640
641 case oHostKeyAlias:
642 charptr = &options->host_key_alias;
643 goto parse_string;
644
645 case oPreferredAuthentications:
646 charptr = &options->preferred_authentications;
647 goto parse_string;
648
649 case oBindAddress:
650 charptr = &options->bind_address;
651 goto parse_string;
652
653 case oSmartcardDevice:
654 charptr = &options->smartcard_device;
655 goto parse_string;
656
657 case oProxyCommand:
08822d99 658 charptr = &options->proxy_command;
659parse_command:
7cac2b65 660 if (s == NULL)
661 fatal("%.200s line %d: Missing argument.", filename, linenum);
bfe49944 662 len = strspn(s, WHITESPACE "=");
3c0ef626 663 if (*activep && *charptr == NULL)
bfe49944 664 *charptr = xstrdup(s + len);
3c0ef626 665 return 0;
666
667 case oPort:
668 intptr = &options->port;
669parse_int:
670 arg = strdelim(&s);
671 if (!arg || *arg == '\0')
672 fatal("%.200s line %d: Missing argument.", filename, linenum);
673 if (arg[0] < '0' || arg[0] > '9')
674 fatal("%.200s line %d: Bad number.", filename, linenum);
675
676 /* Octal, decimal, or hex format? */
677 value = strtol(arg, &endofnumber, 0);
678 if (arg == endofnumber)
679 fatal("%.200s line %d: Bad number.", filename, linenum);
680 if (*activep && *intptr == -1)
681 *intptr = value;
682 break;
683
684 case oConnectionAttempts:
685 intptr = &options->connection_attempts;
686 goto parse_int;
687
a7213e65 688 case oTcpRcvBuf:
689 intptr = &options->tcp_rcv_buf;
690 goto parse_int;
691
3c0ef626 692 case oCipher:
693 intptr = &options->cipher;
694 arg = strdelim(&s);
695 if (!arg || *arg == '\0')
696 fatal("%.200s line %d: Missing argument.", filename, linenum);
697 value = cipher_number(arg);
698 if (value == -1)
699 fatal("%.200s line %d: Bad cipher '%s'.",
e9702f7d 700 filename, linenum, arg ? arg : "<NONE>");
3c0ef626 701 if (*activep && *intptr == -1)
702 *intptr = value;
703 break;
704
705 case oCiphers:
706 arg = strdelim(&s);
707 if (!arg || *arg == '\0')
708 fatal("%.200s line %d: Missing argument.", filename, linenum);
709 if (!ciphers_valid(arg))
710 fatal("%.200s line %d: Bad SSH2 cipher spec '%s'.",
e9702f7d 711 filename, linenum, arg ? arg : "<NONE>");
3c0ef626 712 if (*activep && options->ciphers == NULL)
713 options->ciphers = xstrdup(arg);
714 break;
715
716 case oMacs:
717 arg = strdelim(&s);
718 if (!arg || *arg == '\0')
719 fatal("%.200s line %d: Missing argument.", filename, linenum);
720 if (!mac_valid(arg))
721 fatal("%.200s line %d: Bad SSH2 Mac spec '%s'.",
e9702f7d 722 filename, linenum, arg ? arg : "<NONE>");
3c0ef626 723 if (*activep && options->macs == NULL)
724 options->macs = xstrdup(arg);
725 break;
726
727 case oHostKeyAlgorithms:
728 arg = strdelim(&s);
729 if (!arg || *arg == '\0')
730 fatal("%.200s line %d: Missing argument.", filename, linenum);
731 if (!key_names_valid2(arg))
732 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
e9702f7d 733 filename, linenum, arg ? arg : "<NONE>");
3c0ef626 734 if (*activep && options->hostkeyalgorithms == NULL)
735 options->hostkeyalgorithms = xstrdup(arg);
736 break;
737
738 case oProtocol:
739 intptr = &options->protocol;
740 arg = strdelim(&s);
741 if (!arg || *arg == '\0')
742 fatal("%.200s line %d: Missing argument.", filename, linenum);
743 value = proto_spec(arg);
744 if (value == SSH_PROTO_UNKNOWN)
745 fatal("%.200s line %d: Bad protocol spec '%s'.",
e9702f7d 746 filename, linenum, arg ? arg : "<NONE>");
3c0ef626 747 if (*activep && *intptr == SSH_PROTO_UNKNOWN)
748 *intptr = value;
749 break;
750
751 case oLogLevel:
752 intptr = (int *) &options->log_level;
753 arg = strdelim(&s);
754 value = log_level_number(arg);
e9702f7d 755 if (value == SYSLOG_LEVEL_NOT_SET)
3c0ef626 756 fatal("%.200s line %d: unsupported log level '%s'",
e9702f7d 757 filename, linenum, arg ? arg : "<NONE>");
758 if (*activep && (LogLevel) *intptr == SYSLOG_LEVEL_NOT_SET)
3c0ef626 759 *intptr = (LogLevel) value;
760 break;
761
762 case oLocalForward:
763 case oRemoteForward:
764 arg = strdelim(&s);
dfddba3d 765 if (arg == NULL || *arg == '\0')
3c0ef626 766 fatal("%.200s line %d: Missing port argument.",
767 filename, linenum);
dfddba3d 768 arg2 = strdelim(&s);
769 if (arg2 == NULL || *arg2 == '\0')
770 fatal("%.200s line %d: Missing target argument.",
3c0ef626 771 filename, linenum);
dfddba3d 772
773 /* construct a string for parse_forward */
774 snprintf(fwdarg, sizeof(fwdarg), "%s:%s", arg, arg2);
775
776 if (parse_forward(&fwd, fwdarg) == 0)
3c0ef626 777 fatal("%.200s line %d: Bad forwarding specification.",
778 filename, linenum);
dfddba3d 779
3c0ef626 780 if (*activep) {
781 if (opcode == oLocalForward)
dfddba3d 782 add_local_forward(options, &fwd);
3c0ef626 783 else if (opcode == oRemoteForward)
dfddba3d 784 add_remote_forward(options, &fwd);
3c0ef626 785 }
786 break;
787
788 case oDynamicForward:
789 arg = strdelim(&s);
790 if (!arg || *arg == '\0')
791 fatal("%.200s line %d: Missing port argument.",
792 filename, linenum);
dfddba3d 793 memset(&fwd, '\0', sizeof(fwd));
794 fwd.connect_host = "socks";
795 fwd.listen_host = hpdelim(&arg);
796 if (fwd.listen_host == NULL ||
797 strlen(fwd.listen_host) >= NI_MAXHOST)
798 fatal("%.200s line %d: Bad forwarding specification.",
799 filename, linenum);
800 if (arg) {
801 fwd.listen_port = a2port(arg);
802 fwd.listen_host = cleanhostname(fwd.listen_host);
803 } else {
804 fwd.listen_port = a2port(fwd.listen_host);
2ce0bfe4 805 fwd.listen_host = NULL;
dfddba3d 806 }
807 if (fwd.listen_port == 0)
3c0ef626 808 fatal("%.200s line %d: Badly formatted port number.",
809 filename, linenum);
810 if (*activep)
dfddba3d 811 add_local_forward(options, &fwd);
3c0ef626 812 break;
813
814 case oClearAllForwardings:
815 intptr = &options->clear_forwardings;
816 goto parse_flag;
817
818 case oHost:
819 *activep = 0;
820 while ((arg = strdelim(&s)) != NULL && *arg != '\0')
821 if (match_pattern(host, arg)) {
822 debug("Applying options for %.100s", arg);
823 *activep = 1;
824 break;
825 }
826 /* Avoid garbage check below, as strdelim is done. */
827 return 0;
828
829 case oEscapeChar:
830 intptr = &options->escape_char;
831 arg = strdelim(&s);
832 if (!arg || *arg == '\0')
833 fatal("%.200s line %d: Missing argument.", filename, linenum);
834 if (arg[0] == '^' && arg[2] == 0 &&
835 (u_char) arg[1] >= 64 && (u_char) arg[1] < 128)
836 value = (u_char) arg[1] & 31;
837 else if (strlen(arg) == 1)
838 value = (u_char) arg[0];
839 else if (strcmp(arg, "none") == 0)
840 value = SSH_ESCAPECHAR_NONE;
841 else {
842 fatal("%.200s line %d: Bad escape character.",
e9702f7d 843 filename, linenum);
3c0ef626 844 /* NOTREACHED */
845 value = 0; /* Avoid compiler warning. */
846 }
847 if (*activep && *intptr == -1)
848 *intptr = value;
849 break;
850
7cac2b65 851 case oAddressFamily:
852 arg = strdelim(&s);
2ce0bfe4 853 if (!arg || *arg == '\0')
854 fatal("%s line %d: missing address family.",
855 filename, linenum);
7cac2b65 856 intptr = &options->address_family;
857 if (strcasecmp(arg, "inet") == 0)
858 value = AF_INET;
859 else if (strcasecmp(arg, "inet6") == 0)
860 value = AF_INET6;
861 else if (strcasecmp(arg, "any") == 0)
862 value = AF_UNSPEC;
863 else
864 fatal("Unsupported AddressFamily \"%s\"", arg);
865 if (*activep && *intptr == -1)
866 *intptr = value;
867 break;
868
bfe49944 869 case oEnableSSHKeysign:
870 intptr = &options->enable_ssh_keysign;
871 goto parse_flag;
872
12a403af 873 case oIdentitiesOnly:
874 intptr = &options->identities_only;
875 goto parse_flag;
876
540d72c3 877 case oServerAliveInterval:
878 intptr = &options->server_alive_interval;
879 goto parse_time;
880
881 case oServerAliveCountMax:
882 intptr = &options->server_alive_count_max;
883 goto parse_int;
884
7e82606e 885 case oSendEnv:
886 while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
887 if (strchr(arg, '=') != NULL)
888 fatal("%s line %d: Invalid environment name.",
889 filename, linenum);
dfddba3d 890 if (!*activep)
891 continue;
7e82606e 892 if (options->num_send_env >= MAX_SEND_ENV)
893 fatal("%s line %d: too many send env.",
894 filename, linenum);
895 options->send_env[options->num_send_env++] =
896 xstrdup(arg);
897 }
898 break;
899
900 case oControlPath:
901 charptr = &options->control_path;
902 goto parse_string;
903
904 case oControlMaster:
905 intptr = &options->control_master;
2ce0bfe4 906 arg = strdelim(&s);
907 if (!arg || *arg == '\0')
908 fatal("%.200s line %d: Missing ControlMaster argument.",
909 filename, linenum);
910 value = 0; /* To avoid compiler warning... */
911 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)
912 value = SSHCTL_MASTER_YES;
913 else if (strcmp(arg, "no") == 0 || strcmp(arg, "false") == 0)
914 value = SSHCTL_MASTER_NO;
915 else if (strcmp(arg, "auto") == 0)
916 value = SSHCTL_MASTER_AUTO;
917 else if (strcmp(arg, "ask") == 0)
918 value = SSHCTL_MASTER_ASK;
919 else if (strcmp(arg, "autoask") == 0)
920 value = SSHCTL_MASTER_AUTO_ASK;
921 else
922 fatal("%.200s line %d: Bad ControlMaster argument.",
923 filename, linenum);
924 if (*activep && *intptr == -1)
925 *intptr = value;
926 break;
7e82606e 927
dfddba3d 928 case oHashKnownHosts:
929 intptr = &options->hash_known_hosts;
930 goto parse_flag;
931
08822d99 932 case oTunnel:
933 intptr = &options->tun_open;
934 arg = strdelim(&s);
935 if (!arg || *arg == '\0')
936 fatal("%s line %d: Missing yes/point-to-point/"
937 "ethernet/no argument.", filename, linenum);
938 value = 0; /* silence compiler */
939 if (strcasecmp(arg, "ethernet") == 0)
940 value = SSH_TUNMODE_ETHERNET;
941 else if (strcasecmp(arg, "point-to-point") == 0)
942 value = SSH_TUNMODE_POINTOPOINT;
943 else if (strcasecmp(arg, "yes") == 0)
944 value = SSH_TUNMODE_DEFAULT;
945 else if (strcasecmp(arg, "no") == 0)
946 value = SSH_TUNMODE_NO;
947 else
948 fatal("%s line %d: Bad yes/point-to-point/ethernet/"
949 "no argument: %s", filename, linenum, arg);
950 if (*activep)
951 *intptr = value;
952 break;
953
954 case oTunnelDevice:
955 arg = strdelim(&s);
956 if (!arg || *arg == '\0')
957 fatal("%.200s line %d: Missing argument.", filename, linenum);
958 value = a2tun(arg, &value2);
959 if (value == SSH_TUNID_ERR)
960 fatal("%.200s line %d: Bad tun device.", filename, linenum);
961 if (*activep) {
962 options->tun_local = value;
963 options->tun_remote = value2;
964 }
965 break;
966
967 case oLocalCommand:
968 charptr = &options->local_command;
969 goto parse_command;
970
971 case oPermitLocalCommand:
972 intptr = &options->permit_local_command;
973 goto parse_flag;
974
44a053a3 975 case oDeprecated:
976 debug("%s line %d: Deprecated option \"%s\"",
977 filename, linenum, keyword);
978 return 0;
979
7cac2b65 980 case oUnsupported:
981 error("%s line %d: Unsupported option \"%s\"",
982 filename, linenum, keyword);
983 return 0;
984
3c0ef626 985 default:
986 fatal("process_config_line: Unimplemented opcode %d", opcode);
987 }
988
989 /* Check that there is no garbage at end of line. */
990 if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
991 fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
2ce0bfe4 992 filename, linenum, arg);
3c0ef626 993 }
994 return 0;
995}
996
997
998/*
999 * Reads the config file and modifies the options accordingly. Options
1000 * should already be initialized before this call. This never returns if
1001 * there is an error. If the file does not exist, this returns 0.
1002 */
1003
1004int
7e82606e 1005read_config_file(const char *filename, const char *host, Options *options,
1006 int checkperm)
3c0ef626 1007{
1008 FILE *f;
1009 char line[1024];
1010 int active, linenum;
1011 int bad_options = 0;
1012
1013 /* Open the file. */
7e82606e 1014 if ((f = fopen(filename, "r")) == NULL)
3c0ef626 1015 return 0;
1016
7e82606e 1017 if (checkperm) {
1018 struct stat sb;
1019
1020 if (fstat(fileno(f), &sb) == -1)
1021 fatal("fstat %s: %s", filename, strerror(errno));
1022 if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
1023 (sb.st_mode & 022) != 0))
1024 fatal("Bad owner or permissions on %s", filename);
1025 }
1026
3c0ef626 1027 debug("Reading configuration data %.200s", filename);
1028
1029 /*
1030 * Mark that we are now processing the options. This flag is turned
1031 * on/off by Host specifications.
1032 */
1033 active = 1;
1034 linenum = 0;
1035 while (fgets(line, sizeof(line), f)) {
1036 /* Update line number counter. */
1037 linenum++;
1038 if (process_config_line(options, host, line, filename, linenum, &active) != 0)
1039 bad_options++;
1040 }
1041 fclose(f);
1042 if (bad_options > 0)
1043 fatal("%s: terminating, %d bad configuration options",
e9702f7d 1044 filename, bad_options);
3c0ef626 1045 return 1;
1046}
1047
1048/*
1049 * Initializes options to special values that indicate that they have not yet
1050 * been set. Read_config_file will only set options with this value. Options
1051 * are processed in the following order: command line, user config file,
1052 * system config file. Last, fill_default_options is called.
1053 */
1054
1055void
1056initialize_options(Options * options)
1057{
1058 memset(options, 'X', sizeof(*options));
1059 options->forward_agent = -1;
1060 options->forward_x11 = -1;
540d72c3 1061 options->forward_x11_trusted = -1;
30460aeb 1062 options->exit_on_forward_failure = -1;
3c0ef626 1063 options->xauth_location = NULL;
1064 options->gateway_ports = -1;
1065 options->use_privileged_port = -1;
3c0ef626 1066 options->rsa_authentication = -1;
1067 options->pubkey_authentication = -1;
1068 options->challenge_response_authentication = -1;
7cac2b65 1069 options->gss_authentication = -1;
7a056ed1 1070 options->gss_keyex = -1;
7cac2b65 1071 options->gss_deleg_creds = -1;
fe4ad273 1072 options->gss_trust_dns = -1;
3c0ef626 1073 options->password_authentication = -1;
1074 options->kbd_interactive_authentication = -1;
1075 options->kbd_interactive_devices = NULL;
1076 options->rhosts_rsa_authentication = -1;
1077 options->hostbased_authentication = -1;
3c0ef626 1078 options->batch_mode = -1;
1079 options->check_host_ip = -1;
1080 options->strict_host_key_checking = -1;
1081 options->compression = -1;
540d72c3 1082 options->tcp_keep_alive = -1;
3c0ef626 1083 options->compression_level = -1;
1084 options->port = -1;
7cac2b65 1085 options->address_family = -1;
3c0ef626 1086 options->connection_attempts = -1;
7cac2b65 1087 options->connection_timeout = -1;
3c0ef626 1088 options->number_of_password_prompts = -1;
1089 options->cipher = -1;
1090 options->ciphers = NULL;
1091 options->macs = NULL;
1092 options->hostkeyalgorithms = NULL;
1093 options->protocol = SSH_PROTO_UNKNOWN;
1094 options->num_identity_files = 0;
1095 options->hostname = NULL;
1096 options->host_key_alias = NULL;
1097 options->proxy_command = NULL;
1098 options->user = NULL;
1099 options->escape_char = -1;
1100 options->system_hostfile = NULL;
1101 options->user_hostfile = NULL;
1102 options->system_hostfile2 = NULL;
1103 options->user_hostfile2 = NULL;
1104 options->num_local_forwards = 0;
1105 options->num_remote_forwards = 0;
1106 options->clear_forwardings = -1;
e9702f7d 1107 options->log_level = SYSLOG_LEVEL_NOT_SET;
3c0ef626 1108 options->preferred_authentications = NULL;
1109 options->bind_address = NULL;
1110 options->smartcard_device = NULL;
bfe49944 1111 options->enable_ssh_keysign = - 1;
3c0ef626 1112 options->no_host_authentication_for_localhost = - 1;
12a403af 1113 options->identities_only = - 1;
7cac2b65 1114 options->rekey_limit = - 1;
1115 options->verify_host_key_dns = -1;
540d72c3 1116 options->server_alive_interval = -1;
1117 options->server_alive_count_max = -1;
7e82606e 1118 options->num_send_env = 0;
1119 options->control_path = NULL;
1120 options->control_master = -1;
dfddba3d 1121 options->hash_known_hosts = -1;
08822d99 1122 options->tun_open = -1;
1123 options->tun_local = -1;
1124 options->tun_remote = -1;
1125 options->local_command = NULL;
1126 options->permit_local_command = -1;
a7213e65 1127 options->none_switch = -1;
1128 options->none_enabled = -1;
1129 options->hpn_disabled = -1;
1130 options->hpn_buffer_size = -1;
1131 options->tcp_rcv_buf_poll = -1;
1132 options->tcp_rcv_buf = -1;
3c0ef626 1133}
1134
1135/*
1136 * Called after processing other sources of option data, this fills those
1137 * options for which no value has been specified with their default values.
1138 */
1139
1140void
1141fill_default_options(Options * options)
1142{
1143 int len;
1144
1145 if (options->forward_agent == -1)
1146 options->forward_agent = 0;
1147 if (options->forward_x11 == -1)
1148 options->forward_x11 = 0;
540d72c3 1149 if (options->forward_x11_trusted == -1)
1150 options->forward_x11_trusted = 0;
30460aeb 1151 if (options->exit_on_forward_failure == -1)
1152 options->exit_on_forward_failure = 0;
3c0ef626 1153 if (options->xauth_location == NULL)
1154 options->xauth_location = _PATH_XAUTH;
3c0ef626 1155 if (options->gateway_ports == -1)
1156 options->gateway_ports = 0;
1157 if (options->use_privileged_port == -1)
1158 options->use_privileged_port = 0;
3c0ef626 1159 if (options->rsa_authentication == -1)
1160 options->rsa_authentication = 1;
1161 if (options->pubkey_authentication == -1)
1162 options->pubkey_authentication = 1;
1163 if (options->challenge_response_authentication == -1)
1164 options->challenge_response_authentication = 1;
5598e598 1165 if (options->gss_authentication == -1)
1166 options->gss_authentication = 1;
7a056ed1 1167 if (options->gss_keyex == -1)
1168 options->gss_keyex = 1;
5598e598 1169 if (options->gss_deleg_creds == -1)
1170 options->gss_deleg_creds = 1;
fe4ad273 1171 if (options->gss_trust_dns == -1)
1172 options->gss_trust_dns = 1;
3c0ef626 1173 if (options->password_authentication == -1)
1174 options->password_authentication = 1;
1175 if (options->kbd_interactive_authentication == -1)
1176 options->kbd_interactive_authentication = 1;
1177 if (options->rhosts_rsa_authentication == -1)
44a053a3 1178 options->rhosts_rsa_authentication = 0;
3c0ef626 1179 if (options->hostbased_authentication == -1)
1180 options->hostbased_authentication = 0;
3c0ef626 1181 if (options->batch_mode == -1)
1182 options->batch_mode = 0;
1183 if (options->check_host_ip == -1)
1184 options->check_host_ip = 1;
1185 if (options->strict_host_key_checking == -1)
1186 options->strict_host_key_checking = 2; /* 2 is default */
1187 if (options->compression == -1)
1188 options->compression = 0;
540d72c3 1189 if (options->tcp_keep_alive == -1)
1190 options->tcp_keep_alive = 1;
3c0ef626 1191 if (options->compression_level == -1)
1192 options->compression_level = 6;
1193 if (options->port == -1)
1194 options->port = 0; /* Filled in ssh_connect. */
7cac2b65 1195 if (options->address_family == -1)
1196 options->address_family = AF_UNSPEC;
3c0ef626 1197 if (options->connection_attempts == -1)
1198 options->connection_attempts = 1;
1199 if (options->number_of_password_prompts == -1)
1200 options->number_of_password_prompts = 3;
1201 /* Selected in ssh_login(). */
1202 if (options->cipher == -1)
1203 options->cipher = SSH_CIPHER_NOT_SET;
1204 /* options->ciphers, default set in myproposals.h */
1205 /* options->macs, default set in myproposals.h */
1206 /* options->hostkeyalgorithms, default set in myproposals.h */
1207 if (options->protocol == SSH_PROTO_UNKNOWN)
1208 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
1209 if (options->num_identity_files == 0) {
1210 if (options->protocol & SSH_PROTO_1) {
1211 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
1212 options->identity_files[options->num_identity_files] =
1213 xmalloc(len);
1214 snprintf(options->identity_files[options->num_identity_files++],
1215 len, "~/%.100s", _PATH_SSH_CLIENT_IDENTITY);
1216 }
1217 if (options->protocol & SSH_PROTO_2) {
1218 len = 2 + strlen(_PATH_SSH_CLIENT_ID_RSA) + 1;
1219 options->identity_files[options->num_identity_files] =
1220 xmalloc(len);
1221 snprintf(options->identity_files[options->num_identity_files++],
1222 len, "~/%.100s", _PATH_SSH_CLIENT_ID_RSA);
1223
1224 len = 2 + strlen(_PATH_SSH_CLIENT_ID_DSA) + 1;
1225 options->identity_files[options->num_identity_files] =
1226 xmalloc(len);
1227 snprintf(options->identity_files[options->num_identity_files++],
1228 len, "~/%.100s", _PATH_SSH_CLIENT_ID_DSA);
1229 }
1230 }
1231 if (options->escape_char == -1)
1232 options->escape_char = '~';
1233 if (options->system_hostfile == NULL)
1234 options->system_hostfile = _PATH_SSH_SYSTEM_HOSTFILE;
1235 if (options->user_hostfile == NULL)
1236 options->user_hostfile = _PATH_SSH_USER_HOSTFILE;
1237 if (options->system_hostfile2 == NULL)
1238 options->system_hostfile2 = _PATH_SSH_SYSTEM_HOSTFILE2;
1239 if (options->user_hostfile2 == NULL)
1240 options->user_hostfile2 = _PATH_SSH_USER_HOSTFILE2;
e9702f7d 1241 if (options->log_level == SYSLOG_LEVEL_NOT_SET)
3c0ef626 1242 options->log_level = SYSLOG_LEVEL_INFO;
1243 if (options->clear_forwardings == 1)
1244 clear_forwardings(options);
1245 if (options->no_host_authentication_for_localhost == - 1)
1246 options->no_host_authentication_for_localhost = 0;
12a403af 1247 if (options->identities_only == -1)
1248 options->identities_only = 0;
bfe49944 1249 if (options->enable_ssh_keysign == -1)
1250 options->enable_ssh_keysign = 0;
7cac2b65 1251 if (options->rekey_limit == -1)
1252 options->rekey_limit = 0;
1253 if (options->verify_host_key_dns == -1)
1254 options->verify_host_key_dns = 0;
540d72c3 1255 if (options->server_alive_interval == -1)
1256 options->server_alive_interval = 0;
1257 if (options->server_alive_count_max == -1)
1258 options->server_alive_count_max = 3;
473db5ab 1259 if (options->none_switch == -1)
1260 options->none_switch = 0;
a7213e65 1261 if (options->hpn_disabled == -1)
1262 options->hpn_disabled = 0;
f713db99 1263 if (options->hpn_buffer_size > -1)
1264 {
6df46d40 1265 /* if a user tries to set the size to 0 set it to 1KB */
a7213e65 1266 if (options->hpn_buffer_size == 0)
6df46d40 1267 options->hpn_buffer_size = 1024;
231cecf9 1268 /*limit the buffer to 64MB*/
6df46d40 1269 if (options->hpn_buffer_size > 65536)
f713db99 1270 {
6df46d40 1271 options->hpn_buffer_size = 65536*1024;
231cecf9 1272 debug("User requested buffer larger than 64MB. Request reverted to 64MB");
f713db99 1273 }
f713db99 1274 debug("hpn_buffer_size set to %d", options->hpn_buffer_size);
1275 }
a7213e65 1276 if (options->tcp_rcv_buf == 0)
1277 options->tcp_rcv_buf = 1;
1278 if (options->tcp_rcv_buf > -1)
1279 options->tcp_rcv_buf *=1024;
6df46d40 1280 if (options->tcp_rcv_buf_poll == -1)
1281 options->tcp_rcv_buf_poll = 1;
7e82606e 1282 if (options->control_master == -1)
1283 options->control_master = 0;
dfddba3d 1284 if (options->hash_known_hosts == -1)
1285 options->hash_known_hosts = 0;
08822d99 1286 if (options->tun_open == -1)
1287 options->tun_open = SSH_TUNMODE_NO;
1288 if (options->tun_local == -1)
1289 options->tun_local = SSH_TUNID_ANY;
1290 if (options->tun_remote == -1)
1291 options->tun_remote = SSH_TUNID_ANY;
1292 if (options->permit_local_command == -1)
1293 options->permit_local_command = 0;
1294 /* options->local_command should not be set by default */
3c0ef626 1295 /* options->proxy_command should not be set by default */
1296 /* options->user will be set in the main program if appropriate */
1297 /* options->hostname will be set in the main program if appropriate */
1298 /* options->host_key_alias should not be set by default */
1299 /* options->preferred_authentications will be set in ssh */
1300}
dfddba3d 1301
1302/*
1303 * parse_forward
1304 * parses a string containing a port forwarding specification of the form:
1305 * [listenhost:]listenport:connecthost:connectport
1306 * returns number of arguments parsed or zero on error
1307 */
1308int
1309parse_forward(Forward *fwd, const char *fwdspec)
1310{
1311 int i;
1312 char *p, *cp, *fwdarg[4];
1313
1314 memset(fwd, '\0', sizeof(*fwd));
1315
1316 cp = p = xstrdup(fwdspec);
1317
1318 /* skip leading spaces */
fa0f0f45 1319 while (isspace(*cp))
dfddba3d 1320 cp++;
1321
1322 for (i = 0; i < 4; ++i)
1323 if ((fwdarg[i] = hpdelim(&cp)) == NULL)
1324 break;
1325
1326 /* Check for trailing garbage in 4-arg case*/
1327 if (cp != NULL)
1328 i = 0; /* failure */
1329
1330 switch (i) {
1331 case 3:
1332 fwd->listen_host = NULL;
1333 fwd->listen_port = a2port(fwdarg[0]);
1334 fwd->connect_host = xstrdup(cleanhostname(fwdarg[1]));
1335 fwd->connect_port = a2port(fwdarg[2]);
1336 break;
1337
1338 case 4:
1339 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1340 fwd->listen_port = a2port(fwdarg[1]);
1341 fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1342 fwd->connect_port = a2port(fwdarg[3]);
1343 break;
1344 default:
1345 i = 0; /* failure */
1346 }
1347
1348 xfree(p);
1349
1350 if (fwd->listen_port == 0 && fwd->connect_port == 0)
1351 goto fail_free;
1352
1353 if (fwd->connect_host != NULL &&
1354 strlen(fwd->connect_host) >= NI_MAXHOST)
1355 goto fail_free;
1356
1357 return (i);
1358
1359 fail_free:
1360 if (fwd->connect_host != NULL)
1361 xfree(fwd->connect_host);
1362 if (fwd->listen_host != NULL)
1363 xfree(fwd->listen_host);
1364 return (0);
1365}
This page took 2.800594 seconds and 5 git commands to generate.