1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Functions for reading the configuration file.
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
/* RCSID("$OpenBSD: readconf.h,v 1.33 2001/06/26 06:32:58 itojun Exp $"); */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifndef READCONF_H
|
|
|
|
#define READCONF_H
|
|
|
|
|
2001-03-09 01:12:22 +01:00
|
|
|
#include "key.h"
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Data structure for representing a forwarding request. */
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
typedef struct {
|
1999-12-06 01:47:28 +01:00
|
|
|
u_short port; /* Port to forward. */
|
|
|
|
char *host; /* Host to connect. */
|
|
|
|
u_short host_port; /* Port to connect on host. */
|
1999-11-24 14:26:21 +01:00
|
|
|
} Forward;
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Data structure for representing option data. */
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
typedef struct {
|
|
|
|
int forward_agent; /* Forward authentication agent. */
|
|
|
|
int forward_x11; /* Forward X11 display. */
|
2000-06-07 11:55:44 +02:00
|
|
|
char *xauth_location; /* Location for xauth program */
|
1999-11-24 14:26:21 +01:00
|
|
|
int gateway_ports; /* Allow remote connects to forwarded ports. */
|
|
|
|
int use_privileged_port; /* Don't use privileged port if false. */
|
|
|
|
int rhosts_authentication; /* Try rhosts authentication. */
|
|
|
|
int rhosts_rsa_authentication; /* Try rhosts with RSA
|
|
|
|
* authentication. */
|
|
|
|
int rsa_authentication; /* Try RSA authentication. */
|
2000-11-13 12:57:25 +01:00
|
|
|
int pubkey_authentication; /* Try ssh2 pubkey authentication. */
|
2001-04-13 01:34:34 +02:00
|
|
|
int hostbased_authentication; /* ssh2's rhosts_rsa */
|
2001-06-05 20:56:16 +02:00
|
|
|
int challenge_response_authentication;
|
2001-01-23 04:12:10 +01:00
|
|
|
/* Try S/Key or TIS, authentication. */
|
1999-10-27 05:42:43 +02:00
|
|
|
#ifdef KRB4
|
1999-11-24 14:26:21 +01:00
|
|
|
int kerberos_authentication; /* Try Kerberos
|
|
|
|
* authentication. */
|
1999-10-27 05:42:43 +02:00
|
|
|
#endif
|
|
|
|
#ifdef AFS
|
1999-11-24 14:26:21 +01:00
|
|
|
int kerberos_tgt_passing; /* Try Kerberos tgt passing. */
|
|
|
|
int afs_token_passing; /* Try AFS token passing. */
|
1999-10-27 05:42:43 +02:00
|
|
|
#endif
|
1999-11-24 14:26:21 +01:00
|
|
|
int password_authentication; /* Try password
|
|
|
|
* authentication. */
|
2000-10-14 07:23:11 +02:00
|
|
|
int kbd_interactive_authentication; /* Try keyboard-interactive auth. */
|
|
|
|
char *kbd_interactive_devices; /* Keyboard-interactive auth devices. */
|
1999-11-24 14:26:21 +01:00
|
|
|
int fallback_to_rsh;/* Use rsh if cannot connect with ssh. */
|
|
|
|
int use_rsh; /* Always use rsh (don\'t try ssh). */
|
|
|
|
int batch_mode; /* Batch mode: do not ask for passwords. */
|
|
|
|
int check_host_ip; /* Also keep track of keys for IP address */
|
|
|
|
int strict_host_key_checking; /* Strict host key checking. */
|
|
|
|
int compression; /* Compress packets in both directions. */
|
|
|
|
int compression_level; /* Compression level 1 (fast) to 9
|
|
|
|
* (best). */
|
|
|
|
int keepalives; /* Set SO_KEEPALIVE. */
|
|
|
|
LogLevel log_level; /* Level for logging. */
|
|
|
|
|
|
|
|
int port; /* Port to connect. */
|
|
|
|
int connection_attempts; /* Max attempts (seconds) before
|
|
|
|
* giving up */
|
|
|
|
int number_of_password_prompts; /* Max number of password
|
|
|
|
* prompts. */
|
|
|
|
int cipher; /* Cipher to use. */
|
2000-05-09 03:02:59 +02:00
|
|
|
char *ciphers; /* SSH2 ciphers in order of preference. */
|
2001-02-15 04:01:59 +01:00
|
|
|
char *macs; /* SSH2 macs in order of preference. */
|
2001-04-17 20:11:36 +02:00
|
|
|
char *hostkeyalgorithms; /* SSH2 server key types in order of preference. */
|
2000-04-12 12:17:38 +02:00
|
|
|
int protocol; /* Protocol in order of preference. */
|
1999-11-24 14:26:21 +01:00
|
|
|
char *hostname; /* Real host to connect. */
|
2000-12-28 17:40:05 +01:00
|
|
|
char *host_key_alias; /* hostname alias for .ssh/known_hosts */
|
1999-11-24 14:26:21 +01:00
|
|
|
char *proxy_command; /* Proxy command for connecting the host. */
|
|
|
|
char *user; /* User to log in as. */
|
|
|
|
int escape_char; /* Escape character; -2 = none */
|
|
|
|
|
|
|
|
char *system_hostfile;/* Path for /etc/ssh_known_hosts. */
|
|
|
|
char *user_hostfile; /* Path for $HOME/.ssh/known_hosts. */
|
2000-04-29 15:57:08 +02:00
|
|
|
char *system_hostfile2;
|
|
|
|
char *user_hostfile2;
|
2001-03-11 02:49:19 +01:00
|
|
|
char *preferred_authentications;
|
2001-04-30 15:06:24 +02:00
|
|
|
char *bind_address; /* local socket address for connection to sshd */
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
int num_identity_files; /* Number of files for RSA/DSA identities. */
|
1999-11-24 14:26:21 +01:00
|
|
|
char *identity_files[SSH_MAX_IDENTITY_FILES];
|
2001-03-09 01:12:22 +01:00
|
|
|
Key *identity_keys[SSH_MAX_IDENTITY_FILES];
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Local TCP/IP forward requests. */
|
|
|
|
int num_local_forwards;
|
|
|
|
Forward local_forwards[SSH_MAX_FORWARDS_PER_DIRECTION];
|
|
|
|
|
|
|
|
/* Remote TCP/IP forward requests. */
|
|
|
|
int num_remote_forwards;
|
|
|
|
Forward remote_forwards[SSH_MAX_FORWARDS_PER_DIRECTION];
|
|
|
|
} Options;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Initializes options to special values that indicate that they have not yet
|
|
|
|
* been set. Read_config_file will only set options with this value. Options
|
|
|
|
* are processed in the following order: command line, user config file,
|
|
|
|
* system config file. Last, fill_default_options is called.
|
|
|
|
*/
|
2001-07-04 06:02:36 +02:00
|
|
|
void initialize_options(Options *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Called after processing other sources of option data, this fills those
|
|
|
|
* options for which no value has been specified with their default values.
|
|
|
|
*/
|
2001-07-04 06:02:36 +02:00
|
|
|
void fill_default_options(Options *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Processes a single option line as used in the configuration files. This
|
|
|
|
* only sets those values that have not already been set. Returns 0 for legal
|
|
|
|
* options
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2001-07-04 06:02:36 +02:00
|
|
|
process_config_line(Options *, const char *, char *, const char *, int, int *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Reads the config file and modifies the options accordingly. Options
|
|
|
|
* should already be initialized before this call. This never returns if
|
|
|
|
* there is an error. If the file does not exist, this returns immediately.
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
void
|
2001-07-04 06:02:36 +02:00
|
|
|
read_config_file(const char *, const char *, Options *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Adds a local TCP/IP port forward to options. Never returns if there is an
|
|
|
|
* error.
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
void
|
2001-07-04 06:02:36 +02:00
|
|
|
add_local_forward(Options *, u_short, const char *, u_short);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Adds a remote TCP/IP port forward to options. Never returns if there is
|
|
|
|
* an error.
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
void
|
2001-07-04 06:02:36 +02:00
|
|
|
add_remote_forward(Options *, u_short, const char *, u_short);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* READCONF_H */
|