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