blob: facd88a09c6b070494e68b38c55ff581a136b3e0 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * ssh.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Fri Mar 17 17:09:37 1995 ylo
11 *
12 * Generic header file for ssh.
13 *
14 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Miller037a0dc1999-12-07 15:38:31 +110016/* RCSID("$Id: ssh.h,v 1.19 1999/12/07 04:38:32 damien Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef SSH_H
19#define SSH_H
20
Damien Millerab18c411999-11-11 10:40:23 +110021#include <netinet/in.h> /* For struct sockaddr_in */
22#include <pwd.h> /* For struct pw */
Damien Miller5ce662a1999-11-11 17:57:39 +110023#include <stdarg.h> /* For va_list */
Damien Miller7f6ea021999-10-28 13:25:17 +100024
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include "rsa.h"
26#include "cipher.h"
27
Damien Miller5428f641999-11-25 11:54:57 +110028/*
29 * The default cipher used if IDEA is not supported by the remote host. It is
30 * recommended that this be one of the mandatory ciphers (DES, 3DES), though
31 * that is not required.
32 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033#define SSH_FALLBACK_CIPHER SSH_CIPHER_3DES
34
35/* Cipher used for encrypting authentication files. */
36#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
37
38/* Default port number. */
39#define SSH_DEFAULT_PORT 22
40
41/* Maximum number of TCP/IP ports forwarded per direction. */
42#define SSH_MAX_FORWARDS_PER_DIRECTION 100
43
Damien Miller5428f641999-11-25 11:54:57 +110044/*
45 * Maximum number of RSA authentication identity files that can be specified
46 * in configuration files or on the command line.
47 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#define SSH_MAX_IDENTITY_FILES 100
49
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * Major protocol version. Different version indicates major incompatiblity
52 * that prevents communication.
53 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#define PROTOCOL_MAJOR 1
55
Damien Miller5428f641999-11-25 11:54:57 +110056/*
57 * Minor protocol version. Different version indicates minor incompatibility
58 * that does not prevent interoperation.
59 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#define PROTOCOL_MINOR 5
61
Damien Miller5428f641999-11-25 11:54:57 +110062/*
63 * Name for the service. The port named by this service overrides the
64 * default port if present.
65 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#define SSH_SERVICE_NAME "ssh"
67
68#ifndef ETCDIR
69#define ETCDIR "/etc"
70#endif /* ETCDIR */
71
Damien Miller95def091999-11-25 00:26:21 +110072#ifndef PIDDIR
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#define PIDDIR "/var/run"
Damien Miller95def091999-11-25 00:26:21 +110074#endif /* PIDDIR */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Miller5428f641999-11-25 11:54:57 +110076/*
77 * System-wide file containing host keys of known hosts. This file should be
78 * world-readable.
79 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
81
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
84 * should be world-readable.
85 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
87#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
88#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
89
Damien Miller356a0b01999-11-08 15:30:59 +110090#ifndef SSH_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +110091#define SSH_PROGRAM "/usr/bin/ssh"
Damien Miller356a0b01999-11-08 15:30:59 +110092#endif /* SSH_PROGRAM */
93
94#ifndef LOGIN_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +110095#define LOGIN_PROGRAM "/usr/bin/login"
Damien Miller356a0b01999-11-08 15:30:59 +110096#endif /* LOGIN_PROGRAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Millerc7b38ce1999-11-09 10:28:04 +110098#ifndef ASKPASS_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +110099#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
Damien Millerc7b38ce1999-11-09 10:28:04 +1100100#endif /* ASKPASS_PROGRAM */
101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * The process id of the daemon listening for connections is saved here to
104 * make it easier to kill the correct daemon when necessary.
105 */
Damien Millera37010e1999-10-29 09:18:29 +1000106#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * The directory in user\'s home directory in which the files reside. The
110 * directory should be world-readable (though not all files are).
111 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112#define SSH_USER_DIR ".ssh"
113
Damien Miller5428f641999-11-25 11:54:57 +1100114/*
115 * Per-user file containing host keys of known hosts. This file need not be
116 * readable by anyone except the user him/herself, though this does not
117 * contain anything particularly secret.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119#define SSH_USER_HOSTFILE "~/.ssh/known_hosts"
120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Name of the default file containing client-side authentication key. This
123 * file should only be readable by the user him/herself.
124 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125#define SSH_CLIENT_IDENTITY ".ssh/identity"
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * Configuration file in user\'s home directory. This file need not be
129 * readable by anyone but the user him/herself, but does not contain anything
130 * particularly secret. If the user\'s home directory resides on an NFS
131 * volume where root is mapped to nobody, this may need to be world-readable.
132 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133#define SSH_USER_CONFFILE ".ssh/config"
134
Damien Miller5428f641999-11-25 11:54:57 +1100135/*
136 * File containing a list of those rsa keys that permit logging in as this
137 * user. This file need not be readable by anyone but the user him/herself,
138 * but does not contain anything particularly secret. If the user\'s home
139 * directory resides on an NFS volume where root is mapped to nobody, this
140 * may need to be world-readable. (This file is read by the daemon which is
141 * running as root.)
142 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143#define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
144
Damien Miller5428f641999-11-25 11:54:57 +1100145/*
146 * Per-user and system-wide ssh "rc" files. These files are executed with
147 * /bin/sh before starting the shell or command if they exist. They will be
148 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
149 * use. xauth will be run if neither of these exists.
150 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151#define SSH_USER_RC ".ssh/rc"
152#define SSH_SYSTEM_RC ETCDIR "/sshrc"
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use
156 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#define SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv"
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
161 * Name of the environment variable containing the pathname of the
162 * authentication socket.
163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
165
Damien Miller5428f641999-11-25 11:54:57 +1100166/*
167 * Name of the environment variable containing the pathname of the
168 * authentication socket.
169 */
Damien Miller32265091999-11-12 11:33:04 +1100170#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
Damien Miller5eeedae1999-10-29 10:21:15 +1000171
Damien Miller5428f641999-11-25 11:54:57 +1100172/*
Damien Milleraae6c611999-12-06 11:47:28 +1100173 * Default path to ssh-askpass used by ssh-add,
174 * environment variable for overwriting the default location
175 */
Damien Miller3bc14dd1999-12-07 14:54:53 +1100176#ifndef SSH_ASKPASS_DEFAULT
177# define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
178#endif
Damien Milleraae6c611999-12-06 11:47:28 +1100179#define SSH_ASKPASS_ENV "SSH_ASKPASS"
180
181/*
Damien Miller5428f641999-11-25 11:54:57 +1100182 * Force host key length and server key length to differ by at least this
183 * many bits. This is to make double encryption with rsaref work.
184 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185#define SSH_KEY_BITS_RESERVED 128
186
Damien Miller5428f641999-11-25 11:54:57 +1100187/*
188 * Length of the session key in bytes. (Specified as 256 bits in the
189 * protocol.)
190 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191#define SSH_SESSION_KEY_LENGTH 32
192
193/* Name of Kerberos service for SSH to use. */
194#define KRB4_SERVICE_NAME "rcmd"
195
Damien Miller5428f641999-11-25 11:54:57 +1100196/*
197 * Authentication methods. New types can be added, but old types should not
198 * be removed for compatibility. The maximum allowed value is 31.
199 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200#define SSH_AUTH_RHOSTS 1
201#define SSH_AUTH_RSA 2
202#define SSH_AUTH_PASSWORD 3
203#define SSH_AUTH_RHOSTS_RSA 4
Damien Miller95def091999-11-25 00:26:21 +1100204#define SSH_AUTH_TIS 5
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205#define SSH_AUTH_KERBEROS 6
206#define SSH_PASS_KERBEROS_TGT 7
Damien Miller5428f641999-11-25 11:54:57 +1100207 /* 8 to 15 are reserved */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208#define SSH_PASS_AFS_TOKEN 21
209
210/* Protocol flags. These are bit masks. */
Damien Miller5428f641999-11-25 11:54:57 +1100211#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
212#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213
Damien Miller5428f641999-11-25 11:54:57 +1100214/*
215 * Definition of message types. New values can be added, but old values
216 * should not be removed or without careful consideration of the consequences
217 * for compatibility. The maximum value is 254; value 255 is reserved for
218 * future extension.
219 */
220/* Message name */ /* msg code */ /* arguments */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221#define SSH_MSG_NONE 0 /* no message */
222#define SSH_MSG_DISCONNECT 1 /* cause (string) */
223#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
224#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
225#define SSH_CMSG_USER 4 /* user (string) */
226#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
227#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */
228#define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */
229#define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
230#define SSH_CMSG_AUTH_PASSWORD 9 /* pass (string) */
231#define SSH_CMSG_REQUEST_PTY 10 /* TERM, tty modes */
232#define SSH_CMSG_WINDOW_SIZE 11 /* row,col,xpix,ypix */
233#define SSH_CMSG_EXEC_SHELL 12 /* */
234#define SSH_CMSG_EXEC_CMD 13 /* cmd (string) */
235#define SSH_SMSG_SUCCESS 14 /* */
236#define SSH_SMSG_FAILURE 15 /* */
237#define SSH_CMSG_STDIN_DATA 16 /* data (string) */
238#define SSH_SMSG_STDOUT_DATA 17 /* data (string) */
239#define SSH_SMSG_STDERR_DATA 18 /* data (string) */
240#define SSH_CMSG_EOF 19 /* */
241#define SSH_SMSG_EXITSTATUS 20 /* status (int) */
242#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* channel (int) */
243#define SSH_MSG_CHANNEL_OPEN_FAILURE 22 /* channel (int) */
244#define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
245#define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */
246#define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* channel (int) */
247/* SSH_CMSG_X11_REQUEST_FORWARDING 26 OBSOLETE */
248#define SSH_SMSG_X11_OPEN 27 /* channel (int) */
249#define SSH_CMSG_PORT_FORWARD_REQUEST 28 /* p,host,hp (i,s,i) */
250#define SSH_MSG_PORT_OPEN 29 /* ch,h,p (i,s,i) */
251#define SSH_CMSG_AGENT_REQUEST_FORWARDING 30 /* */
252#define SSH_SMSG_AGENT_OPEN 31 /* port (int) */
253#define SSH_MSG_IGNORE 32 /* string */
254#define SSH_CMSG_EXIT_CONFIRMATION 33 /* */
255#define SSH_CMSG_X11_REQUEST_FORWARDING 34 /* proto,data (s,s) */
256#define SSH_CMSG_AUTH_RHOSTS_RSA 35 /* user,mod (s,mpi) */
257#define SSH_MSG_DEBUG 36 /* string */
258#define SSH_CMSG_REQUEST_COMPRESSION 37 /* level 1-9 (int) */
259#define SSH_CMSG_MAX_PACKET_SIZE 38 /* size 4k-1024k (int) */
Damien Miller95def091999-11-25 00:26:21 +1100260#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
261#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
262#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
264#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
265#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
266#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
267
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268/*------------ definitions for login.c -------------*/
269
Damien Miller5428f641999-11-25 11:54:57 +1100270/*
271 * Returns the time when the user last logged in. Returns 0 if the
272 * information is not available. This must be called before record_login.
273 * The host from which the user logged in is stored in buf.
274 */
Damien Miller95def091999-11-25 00:26:21 +1100275unsigned long
276get_last_login_time(uid_t uid, const char *logname,
277 char *buf, unsigned int bufsize);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller5428f641999-11-25 11:54:57 +1100279/*
280 * Records that the user has logged in. This does many things normally done
281 * by login(1).
282 */
Damien Miller95def091999-11-25 00:26:21 +1100283void
284record_login(int pid, const char *ttyname, const char *user, uid_t uid,
285 const char *host, struct sockaddr_in * addr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Damien Miller5428f641999-11-25 11:54:57 +1100287/*
288 * Records that the user has logged out. This does many thigs normally done
289 * by login(1) or init.
290 */
Damien Miller95def091999-11-25 00:26:21 +1100291void record_logout(int pid, const char *ttyname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
293/*------------ definitions for sshconnect.c ----------*/
294
Damien Miller5428f641999-11-25 11:54:57 +1100295/*
296 * Opens a TCP/IP connection to the remote server on the given host. If port
297 * is 0, the default port will be used. If anonymous is zero, a privileged
298 * port will be allocated to make the connection. This requires super-user
299 * privileges if anonymous is false. Connection_attempts specifies the
300 * maximum number of tries, one per second. This returns true on success,
301 * and zero on failure. If the connection is successful, this calls
302 * packet_set_connection for the connection.
303 */
Damien Miller95def091999-11-25 00:26:21 +1100304int
305ssh_connect(const char *host, struct sockaddr_in * hostaddr,
Damien Milleraae6c611999-12-06 11:47:28 +1100306 u_short port, int connection_attempts,
Damien Miller95def091999-11-25 00:26:21 +1100307 int anonymous, uid_t original_real_uid,
308 const char *proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller5428f641999-11-25 11:54:57 +1100310/*
311 * Starts a dialog with the server, and authenticates the current user on the
312 * server. This does not need any extra privileges. The basic connection to
313 * the server must already have been established before this is called. If
314 * login fails, this function prints an error and never returns. This
315 * initializes the random state, and leaves it initialized (it will also have
316 * references from the packet module).
317 */
Damien Miller5ce662a1999-11-11 17:57:39 +1100318
Damien Miller95def091999-11-25 00:26:21 +1100319void
320ssh_login(int host_key_valid, RSA * host_key, const char *host,
321 struct sockaddr_in * hostaddr, uid_t original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
323/*------------ Definitions for various authentication methods. -------*/
324
Damien Miller5428f641999-11-25 11:54:57 +1100325/*
326 * Tries to authenticate the user using the .rhosts file. Returns true if
327 * authentication succeeds. If ignore_rhosts is non-zero, this will not
328 * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
329 */
Damien Miller95def091999-11-25 00:26:21 +1100330int auth_rhosts(struct passwd * pw, const char *client_user);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Damien Miller5428f641999-11-25 11:54:57 +1100332/*
333 * Tries to authenticate the user using the .rhosts file and the host using
334 * its host key. Returns true if authentication succeeds.
335 */
Damien Miller95def091999-11-25 00:26:21 +1100336int
337auth_rhosts_rsa(struct passwd * pw, const char *client_user,
338 BIGNUM * client_host_key_e, BIGNUM * client_host_key_n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Damien Miller5428f641999-11-25 11:54:57 +1100340/*
341 * Tries to authenticate the user using password. Returns true if
342 * authentication succeeds.
343 */
Damien Miller95def091999-11-25 00:26:21 +1100344int auth_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Damien Miller5428f641999-11-25 11:54:57 +1100346/*
347 * Performs the RSA authentication dialog with the client. This returns 0 if
348 * the client could not be authenticated, and 1 if authentication was
349 * successful. This may exit if there is a serious protocol violation.
350 */
Damien Miller95def091999-11-25 00:26:21 +1100351int auth_rsa(struct passwd * pw, BIGNUM * client_n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
Damien Miller5428f641999-11-25 11:54:57 +1100353/*
354 * Parses an RSA key (number of bits, e, n) from a string. Moves the pointer
355 * over the key. Skips any whitespace at the beginning and at end.
356 */
Damien Miller95def091999-11-25 00:26:21 +1100357int auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
Damien Miller5428f641999-11-25 11:54:57 +1100359/*
360 * Returns the name of the machine at the other end of the socket. The
361 * returned string should be freed by the caller.
362 */
Damien Miller95def091999-11-25 00:26:21 +1100363char *get_remote_hostname(int socket);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364
Damien Miller5428f641999-11-25 11:54:57 +1100365/*
366 * Return the canonical name of the host in the other side of the current
367 * connection (as returned by packet_get_connection). The host name is
368 * cached, so it is efficient to call this several times.
369 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370const char *get_canonical_hostname(void);
371
Damien Miller5428f641999-11-25 11:54:57 +1100372/*
373 * Returns the remote IP address as an ascii string. The value need not be
374 * freed by the caller.
375 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376const char *get_remote_ipaddr(void);
377
378/* Returns the port number of the peer of the socket. */
Damien Miller95def091999-11-25 00:26:21 +1100379int get_peer_port(int sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380
381/* Returns the port number of the remote host. */
Damien Miller95def091999-11-25 00:26:21 +1100382int get_remote_port(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383
Damien Miller5428f641999-11-25 11:54:57 +1100384/*
385 * Tries to match the host name (which must be in all lowercase) against the
386 * comma-separated sequence of subpatterns (each possibly preceded by ! to
387 * indicate negation). Returns true if there is a positive match; zero
388 * otherwise.
389 */
Damien Miller95def091999-11-25 00:26:21 +1100390int match_hostname(const char *host, const char *pattern, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Damien Miller5428f641999-11-25 11:54:57 +1100392/*
393 * Checks whether the given host is already in the list of our known hosts.
394 * Returns HOST_OK if the host is known and has the specified key, HOST_NEW
395 * if the host is not known, and HOST_CHANGED if the host is known but used
396 * to have a different host key. The host must be in all lowercase.
397 */
Damien Miller95def091999-11-25 00:26:21 +1100398typedef enum {
399 HOST_OK, HOST_NEW, HOST_CHANGED
400} HostStatus;
401HostStatus
402check_host_in_hostfile(const char *filename, const char *host,
403 BIGNUM * e, BIGNUM * n, BIGNUM * ke, BIGNUM * kn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000404
Damien Miller5428f641999-11-25 11:54:57 +1100405/*
406 * Appends an entry to the host file. Returns false if the entry could not
407 * be appended.
408 */
Damien Miller95def091999-11-25 00:26:21 +1100409int
410add_host_to_hostfile(const char *filename, const char *host,
411 BIGNUM * e, BIGNUM * n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000412
Damien Miller5428f641999-11-25 11:54:57 +1100413/*
414 * Performs the RSA authentication challenge-response dialog with the client,
415 * and returns true (non-zero) if the client gave the correct answer to our
416 * challenge; returns zero if the client gives a wrong answer.
417 */
Damien Miller95def091999-11-25 00:26:21 +1100418int auth_rsa_challenge_dialog(BIGNUM * e, BIGNUM * n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Miller5428f641999-11-25 11:54:57 +1100420/*
421 * Reads a passphrase from /dev/tty with echo turned off. Returns the
422 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
423 * from_stdin is true, the passphrase will be read from stdin instead.
424 */
Damien Miller95def091999-11-25 00:26:21 +1100425char *read_passphrase(const char *prompt, int from_stdin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426
Damien Miller5428f641999-11-25 11:54:57 +1100427/*
428 * Saves the authentication (private) key in a file, encrypting it with
429 * passphrase. The identification of the file (lowest 64 bits of n) will
430 * precede the key to provide identification of the key without needing a
431 * passphrase.
432 */
Damien Miller95def091999-11-25 00:26:21 +1100433int
434save_private_key(const char *filename, const char *passphrase,
435 RSA * private_key, const char *comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller5428f641999-11-25 11:54:57 +1100437/*
438 * Loads the public part of the key file (public key and comment). Returns 0
439 * if an error occurred; zero if the public key was successfully read. The
440 * comment of the key is returned in comment_return if it is non-NULL; the
441 * caller must free the value with xfree.
442 */
Damien Miller95def091999-11-25 00:26:21 +1100443int
444load_public_key(const char *filename, RSA * pub,
445 char **comment_return);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Miller5428f641999-11-25 11:54:57 +1100447/*
448 * Loads the private key from the file. Returns 0 if an error is encountered
449 * (file does not exist or is not readable, or passphrase is bad). This
450 * initializes the private key. The comment of the key is returned in
451 * comment_return if it is non-NULL; the caller must free the value with
452 * xfree.
453 */
Damien Miller95def091999-11-25 00:26:21 +1100454int
455load_private_key(const char *filename, const char *passphrase,
456 RSA * private_key, char **comment_return);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100458/*------------ Definitions for logging. -----------------------*/
459
460/* Supported syslog facilities and levels. */
Damien Miller95def091999-11-25 00:26:21 +1100461typedef enum {
462 SYSLOG_FACILITY_DAEMON,
463 SYSLOG_FACILITY_USER,
464 SYSLOG_FACILITY_AUTH,
465 SYSLOG_FACILITY_LOCAL0,
466 SYSLOG_FACILITY_LOCAL1,
467 SYSLOG_FACILITY_LOCAL2,
468 SYSLOG_FACILITY_LOCAL3,
469 SYSLOG_FACILITY_LOCAL4,
470 SYSLOG_FACILITY_LOCAL5,
471 SYSLOG_FACILITY_LOCAL6,
472 SYSLOG_FACILITY_LOCAL7
473} SyslogFacility;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100474
Damien Miller95def091999-11-25 00:26:21 +1100475typedef enum {
476 SYSLOG_LEVEL_QUIET,
477 SYSLOG_LEVEL_FATAL,
478 SYSLOG_LEVEL_ERROR,
479 SYSLOG_LEVEL_INFO,
480 SYSLOG_LEVEL_VERBOSE,
481 SYSLOG_LEVEL_DEBUG
482} LogLevel;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100483/* Initializes logging. */
Damien Miller95def091999-11-25 00:26:21 +1100484void log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100485
486/* Logging implementation, depending on server or client */
Damien Miller95def091999-11-25 00:26:21 +1100487void do_log(LogLevel level, const char *fmt, va_list args);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100488
Damien Miller6162d121999-11-21 13:23:52 +1100489/* name to facility/level */
490SyslogFacility log_facility_number(char *name);
491LogLevel log_level_number(char *name);
492
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100493/* Output a message to syslog or stderr */
Damien Miller95def091999-11-25 00:26:21 +1100494void fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
495void error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
496void log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
497void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
498void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100499
500/* same as fatal() but w/o logging */
Damien Miller95def091999-11-25 00:26:21 +1100501void fatal_cleanup(void);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100502
Damien Miller5428f641999-11-25 11:54:57 +1100503/*
504 * Registers a cleanup function to be called by fatal()/fatal_cleanup()
505 * before exiting. It is permissible to call fatal_remove_cleanup for the
506 * function itself from the function.
507 */
Damien Miller95def091999-11-25 00:26:21 +1100508void fatal_add_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100509
510/* Removes a cleanup function to be called at fatal(). */
Damien Miller95def091999-11-25 00:26:21 +1100511void fatal_remove_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100512
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513/*---------------- definitions for channels ------------------*/
514
515/* Sets specific protocol options. */
Damien Miller95def091999-11-25 00:26:21 +1100516void channel_set_options(int hostname_in_open);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Miller5428f641999-11-25 11:54:57 +1100518/*
519 * Allocate a new channel object and set its type and socket. Remote_name
520 * must have been allocated with xmalloc; this will free it when the channel
521 * is freed.
522 */
Damien Miller95def091999-11-25 00:26:21 +1100523int channel_allocate(int type, int sock, char *remote_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524
525/* Free the channel and close its socket. */
Damien Miller95def091999-11-25 00:26:21 +1100526void channel_free(int channel);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
528/* Add any bits relevant to channels in select bitmasks. */
Damien Miller95def091999-11-25 00:26:21 +1100529void channel_prepare_select(fd_set * readset, fd_set * writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
Damien Miller5428f641999-11-25 11:54:57 +1100531/*
532 * After select, perform any appropriate operations for channels which have
533 * events pending.
534 */
Damien Miller95def091999-11-25 00:26:21 +1100535void channel_after_select(fd_set * readset, fd_set * writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
537/* If there is data to send to the connection, send some of it now. */
Damien Miller95def091999-11-25 00:26:21 +1100538void channel_output_poll(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Damien Miller5428f641999-11-25 11:54:57 +1100540/*
541 * This is called when a packet of type CHANNEL_DATA has just been received.
542 * The message type has already been consumed, but channel number and data is
543 * still there.
544 */
Damien Miller95def091999-11-25 00:26:21 +1100545void channel_input_data(int payload_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
547/* Returns true if no channel has too much buffered data. */
Damien Miller95def091999-11-25 00:26:21 +1100548int channel_not_very_much_buffered_data(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549
550/* This is called after receiving CHANNEL_CLOSE. */
Damien Miller95def091999-11-25 00:26:21 +1100551void channel_input_close(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
553/* This is called after receiving CHANNEL_CLOSE_CONFIRMATION. */
Damien Miller95def091999-11-25 00:26:21 +1100554void channel_input_close_confirmation(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
556/* This is called after receiving CHANNEL_OPEN_CONFIRMATION. */
Damien Miller95def091999-11-25 00:26:21 +1100557void channel_input_open_confirmation(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
559/* This is called after receiving CHANNEL_OPEN_FAILURE from the other side. */
Damien Miller95def091999-11-25 00:26:21 +1100560void channel_input_open_failure(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
562/* This closes any sockets that are listening for connections; this removes
563 any unix domain sockets. */
Damien Miller95def091999-11-25 00:26:21 +1100564void channel_stop_listening(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller5428f641999-11-25 11:54:57 +1100566/*
567 * Closes the sockets of all channels. This is used to close extra file
568 * descriptors after a fork.
569 */
Damien Miller95def091999-11-25 00:26:21 +1100570void channel_close_all(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
572/* Returns the maximum file descriptor number used by the channels. */
Damien Miller95def091999-11-25 00:26:21 +1100573int channel_max_fd(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
575/* Returns true if there is still an open channel over the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100576int channel_still_open(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller5428f641999-11-25 11:54:57 +1100578/*
579 * Returns a string containing a list of all open channels. The list is
580 * suitable for displaying to the user. It uses crlf instead of newlines.
581 * The caller should free the string with xfree.
582 */
Damien Miller95def091999-11-25 00:26:21 +1100583char *channel_open_message(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584
Damien Miller5428f641999-11-25 11:54:57 +1100585/*
586 * Initiate forwarding of connections to local port "port" through the secure
587 * channel to host:port from remote side. This never returns if there was an
588 * error.
589 */
Damien Miller95def091999-11-25 00:26:21 +1100590void
Damien Milleraae6c611999-12-06 11:47:28 +1100591channel_request_local_forwarding(u_short port, const char *host,
592 u_short remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller5428f641999-11-25 11:54:57 +1100594/*
595 * Initiate forwarding of connections to port "port" on remote host through
596 * the secure channel to host:port from local side. This never returns if
597 * there was an error. This registers that open requests for that port are
598 * permitted.
599 */
Damien Miller95def091999-11-25 00:26:21 +1100600void
Damien Milleraae6c611999-12-06 11:47:28 +1100601channel_request_remote_forwarding(u_short port, const char *host,
602 u_short remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603
Damien Miller5428f641999-11-25 11:54:57 +1100604/*
605 * Permits opening to any host/port in SSH_MSG_PORT_OPEN. This is usually
606 * called by the server, because the user could connect to any port anyway,
607 * and the server has no way to know but to trust the client anyway.
608 */
Damien Miller95def091999-11-25 00:26:21 +1100609void channel_permit_all_opens(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610
Damien Miller5428f641999-11-25 11:54:57 +1100611/*
612 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
613 * listening for the port, and sends back a success reply (or disconnect
614 * message if there was an error). This never returns if there was an error.
615 */
Damien Miller95def091999-11-25 00:26:21 +1100616void channel_input_port_forward_request(int is_root);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Damien Miller5428f641999-11-25 11:54:57 +1100618/*
619 * This is called after receiving PORT_OPEN message. This attempts to
620 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
621 * or CHANNEL_OPEN_FAILURE.
622 */
Damien Miller95def091999-11-25 00:26:21 +1100623void channel_input_port_open(int payload_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller5428f641999-11-25 11:54:57 +1100625/*
626 * Creates a port for X11 connections, and starts listening for it. Returns
627 * the display name, or NULL if an error was encountered.
628 */
Damien Miller95def091999-11-25 00:26:21 +1100629char *x11_create_display(int screen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller5428f641999-11-25 11:54:57 +1100631/*
632 * Creates an internet domain socket for listening for X11 connections.
633 * Returns a suitable value for the DISPLAY variable, or NULL if an error
634 * occurs.
635 */
Damien Miller95def091999-11-25 00:26:21 +1100636char *x11_create_display_inet(int screen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000637
Damien Miller5428f641999-11-25 11:54:57 +1100638/*
639 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
640 * the remote channel number. We should do whatever we want, and respond
641 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
642 */
Damien Miller95def091999-11-25 00:26:21 +1100643void x11_input_open(int payload_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644
Damien Miller5428f641999-11-25 11:54:57 +1100645/*
646 * Requests forwarding of X11 connections. This should be called on the
647 * client only.
648 */
Damien Miller95def091999-11-25 00:26:21 +1100649void x11_request_forwarding(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650
Damien Miller5428f641999-11-25 11:54:57 +1100651/*
652 * Requests forwarding for X11 connections, with authentication spoofing.
653 * This should be called in the client only.
654 */
Damien Miller95def091999-11-25 00:26:21 +1100655void x11_request_forwarding_with_spoofing(const char *proto, const char *data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657/* Sends a message to the server to request authentication fd forwarding. */
Damien Miller95def091999-11-25 00:26:21 +1100658void auth_request_forwarding(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller5428f641999-11-25 11:54:57 +1100660/*
661 * Returns the name of the forwarded authentication socket. Returns NULL if
662 * there is no forwarded authentication socket. The returned value points to
663 * a static buffer.
664 */
Damien Miller95def091999-11-25 00:26:21 +1100665char *auth_get_socket_name(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller5428f641999-11-25 11:54:57 +1100667/*
668 * This if called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
669 * This starts forwarding authentication requests.
670 */
Damien Miller95def091999-11-25 00:26:21 +1100671void auth_input_request_forwarding(struct passwd * pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672
673/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
Damien Miller95def091999-11-25 00:26:21 +1100674void auth_input_open_request(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675
Damien Miller5428f641999-11-25 11:54:57 +1100676/*
677 * Returns true if the given string matches the pattern (which may contain ?
678 * and * as wildcards), and zero if it does not match.
679 */
Damien Miller95def091999-11-25 00:26:21 +1100680int match_pattern(const char *s, const char *pattern);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
Damien Miller5428f641999-11-25 11:54:57 +1100682/*
683 * Expands tildes in the file name. Returns data allocated by xmalloc.
684 * Warning: this calls getpw*.
685 */
Damien Miller95def091999-11-25 00:26:21 +1100686char *tilde_expand_filename(const char *filename, uid_t my_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000687
Damien Miller5428f641999-11-25 11:54:57 +1100688/*
689 * Performs the interactive session. This handles data transmission between
690 * the client and the program. Note that the notion of stdin, stdout, and
691 * stderr in this function is sort of reversed: this function writes to stdin
692 * (of the child program), and reads from stdout and stderr (of the child
693 * program).
694 */
Damien Miller95def091999-11-25 00:26:21 +1100695void server_loop(int pid, int fdin, int fdout, int fderr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696
697/* Client side main loop for the interactive session. */
Damien Miller95def091999-11-25 00:26:21 +1100698int client_loop(int have_pty, int escape_char);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
700/* Linked list of custom environment strings (see auth-rsa.c). */
701struct envstring {
Damien Miller95def091999-11-25 00:26:21 +1100702 struct envstring *next;
703 char *s;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000704};
Damien Miller037a0dc1999-12-07 15:38:31 +1100705
706/*
707 * Ensure all of data on socket comes through. f==read || f==write
708 */
709int atomicio(int (*f)(), int fd, void *s, size_t n);
710
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711#ifdef KRB4
712#include <krb.h>
Damien Miller5428f641999-11-25 11:54:57 +1100713/*
714 * Performs Kerberos v4 mutual authentication with the client. This returns 0
715 * if the client could not be authenticated, and 1 if authentication was
716 * successful. This may exit if there is a serious protocol violation.
717 */
Damien Miller95def091999-11-25 00:26:21 +1100718int auth_krb4(const char *server_user, KTEXT auth, char **client);
719int krb4_init(uid_t uid);
720void krb4_cleanup_proc(void *ignore);
Damien Milleraae6c611999-12-06 11:47:28 +1100721int auth_krb4_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000722
723#ifdef AFS
724#include <kafs.h>
725
726/* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100727int auth_kerberos_tgt(struct passwd * pw, const char *string);
728int auth_afs_token(struct passwd * pw, const char *token_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000729
Damien Miller95def091999-11-25 00:26:21 +1100730int creds_to_radix(CREDENTIALS * creds, unsigned char *buf);
731int radix_to_creds(const char *buf, CREDENTIALS * creds);
732#endif /* AFS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000733
Damien Miller95def091999-11-25 00:26:21 +1100734#endif /* KRB4 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000735
736#ifdef SKEY
737#include <skey.h>
Damien Miller95def091999-11-25 00:26:21 +1100738char *skey_fake_keyinfo(char *username);
Damien Milleraae6c611999-12-06 11:47:28 +1100739int auth_skey_password(struct passwd * pw, const char *password);
Damien Miller95def091999-11-25 00:26:21 +1100740#endif /* SKEY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741
Damien Miller95def091999-11-25 00:26:21 +1100742#endif /* SSH_H */