blob: 57fcf57b918b1f75dcaea9416e436de07062bd5e [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * ssh.h
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Fri Mar 17 17:09:37 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * Generic header file for ssh.
Damien Miller4af51302000-04-16 11:18:38 +100013 *
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Miller4af51302000-04-16 11:18:38 +100016/* RCSID("$Id: ssh.h,v 1.32 2000/04/16 01:18:47 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 Miller34132e52000-01-14 15:45:46 +110024#include <sys/socket.h> /* For struct sockaddr_storage */
25#include "fake-socket.h" /* For struct sockaddr_storage */
Damien Miller365199d1999-12-22 00:12:38 +110026#ifdef HAVE_SYS_SELECT_H
27# include <sys/select.h>
28#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029#include "rsa.h"
30#include "cipher.h"
31
Damien Miller5428f641999-11-25 11:54:57 +110032/*
33 * The default cipher used if IDEA is not supported by the remote host. It is
34 * recommended that this be one of the mandatory ciphers (DES, 3DES), though
35 * that is not required.
36 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#define SSH_FALLBACK_CIPHER SSH_CIPHER_3DES
38
39/* Cipher used for encrypting authentication files. */
40#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
41
42/* Default port number. */
43#define SSH_DEFAULT_PORT 22
44
45/* Maximum number of TCP/IP ports forwarded per direction. */
46#define SSH_MAX_FORWARDS_PER_DIRECTION 100
47
Damien Miller5428f641999-11-25 11:54:57 +110048/*
49 * Maximum number of RSA authentication identity files that can be specified
50 * in configuration files or on the command line.
51 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#define SSH_MAX_IDENTITY_FILES 100
53
Damien Miller5428f641999-11-25 11:54:57 +110054/*
55 * Major protocol version. Different version indicates major incompatiblity
56 * that prevents communication.
Damien Miller78928792000-04-12 20:17:38 +100057 *
Damien Miller5428f641999-11-25 11:54:57 +110058 * Minor protocol version. Different version indicates minor incompatibility
59 * that does not prevent interoperation.
60 */
Damien Miller78928792000-04-12 20:17:38 +100061#define PROTOCOL_MAJOR_1 1
62#define PROTOCOL_MINOR_1 5
63
64/* We support both SSH1 and SSH2 */
65#define PROTOCOL_MAJOR_2 2
66#define PROTOCOL_MINOR_2 0
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller5428f641999-11-25 11:54:57 +110068/*
69 * Name for the service. The port named by this service overrides the
70 * default port if present.
71 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#define SSH_SERVICE_NAME "ssh"
73
74#ifndef ETCDIR
75#define ETCDIR "/etc"
76#endif /* ETCDIR */
77
Damien Miller95def091999-11-25 00:26:21 +110078#ifndef PIDDIR
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#define PIDDIR "/var/run"
Damien Miller95def091999-11-25 00:26:21 +110080#endif /* PIDDIR */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * System-wide file containing host keys of known hosts. This file should be
84 * world-readable.
85 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
87
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
90 * should be world-readable.
91 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
93#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
94#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
Damien Millerefb4afe2000-04-12 18:45:05 +100095#define DSA_KEY_FILE ETCDIR "/ssh_dsa_key"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller356a0b01999-11-08 15:30:59 +110097#ifndef SSH_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +110098#define SSH_PROGRAM "/usr/bin/ssh"
Damien Miller356a0b01999-11-08 15:30:59 +110099#endif /* SSH_PROGRAM */
100
101#ifndef LOGIN_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +1100102#define LOGIN_PROGRAM "/usr/bin/login"
Damien Miller356a0b01999-11-08 15:30:59 +1100103#endif /* LOGIN_PROGRAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
Damien Millerc7b38ce1999-11-09 10:28:04 +1100105#ifndef ASKPASS_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +1100106#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
Damien Millerc7b38ce1999-11-09 10:28:04 +1100107#endif /* ASKPASS_PROGRAM */
108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * The process id of the daemon listening for connections is saved here to
111 * make it easier to kill the correct daemon when necessary.
112 */
Damien Millera37010e1999-10-29 09:18:29 +1000113#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * The directory in user\'s home directory in which the files reside. The
117 * directory should be world-readable (though not all files are).
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119#define SSH_USER_DIR ".ssh"
120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Per-user file containing host keys of known hosts. This file need not be
123 * readable by anyone except the user him/herself, though this does not
124 * contain anything particularly secret.
125 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126#define SSH_USER_HOSTFILE "~/.ssh/known_hosts"
127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * Name of the default file containing client-side authentication key. This
130 * file should only be readable by the user him/herself.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132#define SSH_CLIENT_IDENTITY ".ssh/identity"
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * Configuration file in user\'s home directory. This file need not be
136 * readable by anyone but the user him/herself, but does not contain anything
137 * particularly secret. If the user\'s home directory resides on an NFS
138 * volume where root is mapped to nobody, this may need to be world-readable.
139 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140#define SSH_USER_CONFFILE ".ssh/config"
141
Damien Miller5428f641999-11-25 11:54:57 +1100142/*
143 * File containing a list of those rsa keys that permit logging in as this
144 * user. This file need not be readable by anyone but the user him/herself,
145 * but does not contain anything particularly secret. If the user\'s home
146 * directory resides on an NFS volume where root is mapped to nobody, this
147 * may need to be world-readable. (This file is read by the daemon which is
148 * running as root.)
149 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150#define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
151
Damien Miller5428f641999-11-25 11:54:57 +1100152/*
153 * Per-user and system-wide ssh "rc" files. These files are executed with
154 * /bin/sh before starting the shell or command if they exist. They will be
155 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
156 * use. xauth will be run if neither of these exists.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#define SSH_USER_RC ".ssh/rc"
159#define SSH_SYSTEM_RC ETCDIR "/sshrc"
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
162 * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use
163 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#define SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv"
166
Damien Miller5428f641999-11-25 11:54:57 +1100167/*
168 * Name of the environment variable containing the pathname of the
169 * authentication socket.
170 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
172
Damien Miller5428f641999-11-25 11:54:57 +1100173/*
174 * Name of the environment variable containing the pathname of the
175 * authentication socket.
176 */
Damien Miller32265091999-11-12 11:33:04 +1100177#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
Damien Miller5eeedae1999-10-29 10:21:15 +1000178
Damien Miller5428f641999-11-25 11:54:57 +1100179/*
Damien Milleraae6c611999-12-06 11:47:28 +1100180 * Default path to ssh-askpass used by ssh-add,
181 * environment variable for overwriting the default location
182 */
Damien Miller3bc14dd1999-12-07 14:54:53 +1100183#ifndef SSH_ASKPASS_DEFAULT
184# define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
185#endif
Damien Milleraae6c611999-12-06 11:47:28 +1100186#define SSH_ASKPASS_ENV "SSH_ASKPASS"
187
188/*
Damien Miller5428f641999-11-25 11:54:57 +1100189 * Force host key length and server key length to differ by at least this
190 * many bits. This is to make double encryption with rsaref work.
191 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192#define SSH_KEY_BITS_RESERVED 128
193
Damien Miller5428f641999-11-25 11:54:57 +1100194/*
195 * Length of the session key in bytes. (Specified as 256 bits in the
196 * protocol.)
197 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198#define SSH_SESSION_KEY_LENGTH 32
199
200/* Name of Kerberos service for SSH to use. */
201#define KRB4_SERVICE_NAME "rcmd"
202
Damien Miller5428f641999-11-25 11:54:57 +1100203/*
204 * Authentication methods. New types can be added, but old types should not
205 * be removed for compatibility. The maximum allowed value is 31.
206 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207#define SSH_AUTH_RHOSTS 1
208#define SSH_AUTH_RSA 2
209#define SSH_AUTH_PASSWORD 3
210#define SSH_AUTH_RHOSTS_RSA 4
Damien Miller95def091999-11-25 00:26:21 +1100211#define SSH_AUTH_TIS 5
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212#define SSH_AUTH_KERBEROS 6
213#define SSH_PASS_KERBEROS_TGT 7
Damien Miller5428f641999-11-25 11:54:57 +1100214 /* 8 to 15 are reserved */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215#define SSH_PASS_AFS_TOKEN 21
216
217/* Protocol flags. These are bit masks. */
Damien Miller5428f641999-11-25 11:54:57 +1100218#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
219#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
Damien Miller5428f641999-11-25 11:54:57 +1100221/*
222 * Definition of message types. New values can be added, but old values
223 * should not be removed or without careful consideration of the consequences
224 * for compatibility. The maximum value is 254; value 255 is reserved for
225 * future extension.
226 */
227/* Message name */ /* msg code */ /* arguments */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228#define SSH_MSG_NONE 0 /* no message */
229#define SSH_MSG_DISCONNECT 1 /* cause (string) */
230#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
231#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
232#define SSH_CMSG_USER 4 /* user (string) */
233#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
234#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */
235#define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */
236#define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
237#define SSH_CMSG_AUTH_PASSWORD 9 /* pass (string) */
238#define SSH_CMSG_REQUEST_PTY 10 /* TERM, tty modes */
239#define SSH_CMSG_WINDOW_SIZE 11 /* row,col,xpix,ypix */
240#define SSH_CMSG_EXEC_SHELL 12 /* */
241#define SSH_CMSG_EXEC_CMD 13 /* cmd (string) */
242#define SSH_SMSG_SUCCESS 14 /* */
243#define SSH_SMSG_FAILURE 15 /* */
244#define SSH_CMSG_STDIN_DATA 16 /* data (string) */
245#define SSH_SMSG_STDOUT_DATA 17 /* data (string) */
246#define SSH_SMSG_STDERR_DATA 18 /* data (string) */
247#define SSH_CMSG_EOF 19 /* */
248#define SSH_SMSG_EXITSTATUS 20 /* status (int) */
249#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* channel (int) */
250#define SSH_MSG_CHANNEL_OPEN_FAILURE 22 /* channel (int) */
251#define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
252#define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */
253#define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* channel (int) */
254/* SSH_CMSG_X11_REQUEST_FORWARDING 26 OBSOLETE */
255#define SSH_SMSG_X11_OPEN 27 /* channel (int) */
256#define SSH_CMSG_PORT_FORWARD_REQUEST 28 /* p,host,hp (i,s,i) */
257#define SSH_MSG_PORT_OPEN 29 /* ch,h,p (i,s,i) */
258#define SSH_CMSG_AGENT_REQUEST_FORWARDING 30 /* */
259#define SSH_SMSG_AGENT_OPEN 31 /* port (int) */
260#define SSH_MSG_IGNORE 32 /* string */
261#define SSH_CMSG_EXIT_CONFIRMATION 33 /* */
262#define SSH_CMSG_X11_REQUEST_FORWARDING 34 /* proto,data (s,s) */
263#define SSH_CMSG_AUTH_RHOSTS_RSA 35 /* user,mod (s,mpi) */
264#define SSH_MSG_DEBUG 36 /* string */
265#define SSH_CMSG_REQUEST_COMPRESSION 37 /* level 1-9 (int) */
266#define SSH_CMSG_MAX_PACKET_SIZE 38 /* size 4k-1024k (int) */
Damien Miller95def091999-11-25 00:26:21 +1100267#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
268#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
269#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
271#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
272#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
273#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
274
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275/*------------ definitions for login.c -------------*/
276
Damien Miller5428f641999-11-25 11:54:57 +1100277/*
278 * Returns the time when the user last logged in. Returns 0 if the
279 * information is not available. This must be called before record_login.
280 * The host from which the user logged in is stored in buf.
281 */
Damien Miller4af51302000-04-16 11:18:38 +1000282unsigned long
Damien Miller95def091999-11-25 00:26:21 +1100283get_last_login_time(uid_t uid, const char *logname,
284 char *buf, unsigned int bufsize);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller5428f641999-11-25 11:54:57 +1100286/*
287 * Records that the user has logged in. This does many things normally done
288 * by login(1).
289 */
Damien Miller4af51302000-04-16 11:18:38 +1000290void
Damien Miller95def091999-11-25 00:26:21 +1100291record_login(int pid, const char *ttyname, const char *user, uid_t uid,
Damien Miller34132e52000-01-14 15:45:46 +1100292 const char *host, struct sockaddr *addr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller5428f641999-11-25 11:54:57 +1100294/*
295 * Records that the user has logged out. This does many thigs normally done
296 * by login(1) or init.
297 */
Damien Miller95def091999-11-25 00:26:21 +1100298void record_logout(int pid, const char *ttyname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
300/*------------ definitions for sshconnect.c ----------*/
301
Damien Miller5428f641999-11-25 11:54:57 +1100302/*
303 * Opens a TCP/IP connection to the remote server on the given host. If port
304 * is 0, the default port will be used. If anonymous is zero, a privileged
305 * port will be allocated to make the connection. This requires super-user
306 * privileges if anonymous is false. Connection_attempts specifies the
307 * maximum number of tries, one per second. This returns true on success,
308 * and zero on failure. If the connection is successful, this calls
309 * packet_set_connection for the connection.
310 */
Damien Miller4af51302000-04-16 11:18:38 +1000311int
Damien Miller34132e52000-01-14 15:45:46 +1100312ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
Damien Milleraae6c611999-12-06 11:47:28 +1100313 u_short port, int connection_attempts,
Damien Miller95def091999-11-25 00:26:21 +1100314 int anonymous, uid_t original_real_uid,
315 const char *proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316
Damien Miller5428f641999-11-25 11:54:57 +1100317/*
318 * Starts a dialog with the server, and authenticates the current user on the
319 * server. This does not need any extra privileges. The basic connection to
320 * the server must already have been established before this is called. If
321 * login fails, this function prints an error and never returns. This
322 * initializes the random state, and leaves it initialized (it will also have
323 * references from the packet module).
324 */
Damien Miller5ce662a1999-11-11 17:57:39 +1100325
Damien Miller4af51302000-04-16 11:18:38 +1000326void
Damien Miller95def091999-11-25 00:26:21 +1100327ssh_login(int host_key_valid, RSA * host_key, const char *host,
Damien Miller34132e52000-01-14 15:45:46 +1100328 struct sockaddr * hostaddr, uid_t original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
330/*------------ Definitions for various authentication methods. -------*/
331
Damien Miller5428f641999-11-25 11:54:57 +1100332/*
333 * Tries to authenticate the user using the .rhosts file. Returns true if
334 * authentication succeeds. If ignore_rhosts is non-zero, this will not
335 * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
336 */
Damien Miller95def091999-11-25 00:26:21 +1100337int auth_rhosts(struct passwd * pw, const char *client_user);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338
Damien Miller5428f641999-11-25 11:54:57 +1100339/*
340 * Tries to authenticate the user using the .rhosts file and the host using
341 * its host key. Returns true if authentication succeeds.
342 */
Damien Miller4af51302000-04-16 11:18:38 +1000343int
Damien Miller450a7a12000-03-26 13:04:51 +1000344auth_rhosts_rsa(struct passwd * pw, const char *client_user, RSA* client_host_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Damien Miller5428f641999-11-25 11:54:57 +1100346/*
347 * Tries to authenticate the user using password. Returns true if
348 * authentication succeeds.
349 */
Damien Miller95def091999-11-25 00:26:21 +1100350int auth_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351
Damien Miller5428f641999-11-25 11:54:57 +1100352/*
353 * Performs the RSA authentication dialog with the client. This returns 0 if
354 * the client could not be authenticated, and 1 if authentication was
355 * successful. This may exit if there is a serious protocol violation.
356 */
Damien Miller95def091999-11-25 00:26:21 +1100357int auth_rsa(struct passwd * pw, BIGNUM * client_n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
Damien Miller5428f641999-11-25 11:54:57 +1100359/*
360 * Parses an RSA key (number of bits, e, n) from a string. Moves the pointer
361 * over the key. Skips any whitespace at the beginning and at end.
362 */
Damien Miller95def091999-11-25 00:26:21 +1100363int auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364
Damien Miller5428f641999-11-25 11:54:57 +1100365/*
366 * Returns the name of the machine at the other end of the socket. The
367 * returned string should be freed by the caller.
368 */
Damien Miller95def091999-11-25 00:26:21 +1100369char *get_remote_hostname(int socket);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370
Damien Miller5428f641999-11-25 11:54:57 +1100371/*
372 * Return the canonical name of the host in the other side of the current
373 * connection (as returned by packet_get_connection). The host name is
374 * cached, so it is efficient to call this several times.
375 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376const char *get_canonical_hostname(void);
377
Damien Miller5428f641999-11-25 11:54:57 +1100378/*
379 * Returns the remote IP address as an ascii string. The value need not be
380 * freed by the caller.
381 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382const char *get_remote_ipaddr(void);
383
384/* Returns the port number of the peer of the socket. */
Damien Miller95def091999-11-25 00:26:21 +1100385int get_peer_port(int sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386
Damien Miller34132e52000-01-14 15:45:46 +1100387/* Returns the port number of the remote/local host. */
Damien Miller95def091999-11-25 00:26:21 +1100388int get_remote_port(void);
Damien Miller34132e52000-01-14 15:45:46 +1100389int get_local_port(void);
390
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Damien Miller5428f641999-11-25 11:54:57 +1100392/*
Damien Miller5428f641999-11-25 11:54:57 +1100393 * Performs the RSA authentication challenge-response dialog with the client,
394 * and returns true (non-zero) if the client gave the correct answer to our
395 * challenge; returns zero if the client gives a wrong answer.
396 */
Damien Miller450a7a12000-03-26 13:04:51 +1000397int auth_rsa_challenge_dialog(RSA *pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398
Damien Miller5428f641999-11-25 11:54:57 +1100399/*
400 * Reads a passphrase from /dev/tty with echo turned off. Returns the
401 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
402 * from_stdin is true, the passphrase will be read from stdin instead.
403 */
Damien Miller95def091999-11-25 00:26:21 +1100404char *read_passphrase(const char *prompt, int from_stdin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405
Damien Miller5428f641999-11-25 11:54:57 +1100406/*
407 * Saves the authentication (private) key in a file, encrypting it with
408 * passphrase. The identification of the file (lowest 64 bits of n) will
409 * precede the key to provide identification of the key without needing a
410 * passphrase.
411 */
Damien Miller4af51302000-04-16 11:18:38 +1000412int
Damien Miller95def091999-11-25 00:26:21 +1100413save_private_key(const char *filename, const char *passphrase,
414 RSA * private_key, const char *comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415
Damien Miller5428f641999-11-25 11:54:57 +1100416/*
417 * Loads the public part of the key file (public key and comment). Returns 0
418 * if an error occurred; zero if the public key was successfully read. The
419 * comment of the key is returned in comment_return if it is non-NULL; the
420 * caller must free the value with xfree.
421 */
Damien Miller4af51302000-04-16 11:18:38 +1000422int
Damien Miller95def091999-11-25 00:26:21 +1100423load_public_key(const char *filename, RSA * pub,
424 char **comment_return);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Damien Miller5428f641999-11-25 11:54:57 +1100426/*
427 * Loads the private key from the file. Returns 0 if an error is encountered
428 * (file does not exist or is not readable, or passphrase is bad). This
429 * initializes the private key. The comment of the key is returned in
430 * comment_return if it is non-NULL; the caller must free the value with
431 * xfree.
432 */
Damien Miller4af51302000-04-16 11:18:38 +1000433int
Damien Miller95def091999-11-25 00:26:21 +1100434load_private_key(const char *filename, const char *passphrase,
435 RSA * private_key, char **comment_return);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100437/*------------ Definitions for logging. -----------------------*/
438
439/* Supported syslog facilities and levels. */
Damien Miller95def091999-11-25 00:26:21 +1100440typedef enum {
441 SYSLOG_FACILITY_DAEMON,
442 SYSLOG_FACILITY_USER,
443 SYSLOG_FACILITY_AUTH,
444 SYSLOG_FACILITY_LOCAL0,
445 SYSLOG_FACILITY_LOCAL1,
446 SYSLOG_FACILITY_LOCAL2,
447 SYSLOG_FACILITY_LOCAL3,
448 SYSLOG_FACILITY_LOCAL4,
449 SYSLOG_FACILITY_LOCAL5,
450 SYSLOG_FACILITY_LOCAL6,
451 SYSLOG_FACILITY_LOCAL7
452} SyslogFacility;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100453
Damien Miller95def091999-11-25 00:26:21 +1100454typedef enum {
455 SYSLOG_LEVEL_QUIET,
456 SYSLOG_LEVEL_FATAL,
457 SYSLOG_LEVEL_ERROR,
458 SYSLOG_LEVEL_INFO,
459 SYSLOG_LEVEL_VERBOSE,
460 SYSLOG_LEVEL_DEBUG
461} LogLevel;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100462/* Initializes logging. */
Damien Miller95def091999-11-25 00:26:21 +1100463void log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100464
465/* Logging implementation, depending on server or client */
Damien Miller95def091999-11-25 00:26:21 +1100466void do_log(LogLevel level, const char *fmt, va_list args);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100467
Damien Miller6162d121999-11-21 13:23:52 +1100468/* name to facility/level */
469SyslogFacility log_facility_number(char *name);
470LogLevel log_level_number(char *name);
471
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100472/* Output a message to syslog or stderr */
Damien Miller95def091999-11-25 00:26:21 +1100473void fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
474void error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
475void log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
476void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
477void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100478
479/* same as fatal() but w/o logging */
Damien Miller95def091999-11-25 00:26:21 +1100480void fatal_cleanup(void);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100481
Damien Miller5428f641999-11-25 11:54:57 +1100482/*
483 * Registers a cleanup function to be called by fatal()/fatal_cleanup()
484 * before exiting. It is permissible to call fatal_remove_cleanup for the
485 * function itself from the function.
486 */
Damien Miller95def091999-11-25 00:26:21 +1100487void fatal_add_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100488
489/* Removes a cleanup function to be called at fatal(). */
Damien Miller95def091999-11-25 00:26:21 +1100490void fatal_remove_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100491
Damien Millerefb4afe2000-04-12 18:45:05 +1000492/* ---- misc */
493
Damien Miller5428f641999-11-25 11:54:57 +1100494/*
495 * Expands tildes in the file name. Returns data allocated by xmalloc.
496 * Warning: this calls getpw*.
497 */
Damien Miller95def091999-11-25 00:26:21 +1100498char *tilde_expand_filename(const char *filename, uid_t my_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499
Damien Miller5428f641999-11-25 11:54:57 +1100500/*
501 * Performs the interactive session. This handles data transmission between
502 * the client and the program. Note that the notion of stdin, stdout, and
503 * stderr in this function is sort of reversed: this function writes to stdin
504 * (of the child program), and reads from stdout and stderr (of the child
505 * program).
506 */
Damien Miller95def091999-11-25 00:26:21 +1100507void server_loop(int pid, int fdin, int fdout, int fderr);
Damien Millerefb4afe2000-04-12 18:45:05 +1000508void server_loop2(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
510/* Client side main loop for the interactive session. */
Damien Miller95def091999-11-25 00:26:21 +1100511int client_loop(int have_pty, int escape_char);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512
513/* Linked list of custom environment strings (see auth-rsa.c). */
514struct envstring {
Damien Miller95def091999-11-25 00:26:21 +1100515 struct envstring *next;
516 char *s;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517};
Damien Miller037a0dc1999-12-07 15:38:31 +1100518
519/*
520 * Ensure all of data on socket comes through. f==read || f==write
521 */
Damien Miller98c7ad62000-03-09 21:27:49 +1100522ssize_t atomicio(ssize_t (*f)(), int fd, void *s, size_t n);
Damien Miller037a0dc1999-12-07 15:38:31 +1100523
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524#ifdef KRB4
525#include <krb.h>
Damien Miller5428f641999-11-25 11:54:57 +1100526/*
527 * Performs Kerberos v4 mutual authentication with the client. This returns 0
528 * if the client could not be authenticated, and 1 if authentication was
529 * successful. This may exit if there is a serious protocol violation.
530 */
Damien Miller95def091999-11-25 00:26:21 +1100531int auth_krb4(const char *server_user, KTEXT auth, char **client);
532int krb4_init(uid_t uid);
533void krb4_cleanup_proc(void *ignore);
Damien Milleraae6c611999-12-06 11:47:28 +1100534int auth_krb4_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535
536#ifdef AFS
537#include <kafs.h>
538
539/* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100540int auth_kerberos_tgt(struct passwd * pw, const char *string);
541int auth_afs_token(struct passwd * pw, const char *token_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller95def091999-11-25 00:26:21 +1100543int creds_to_radix(CREDENTIALS * creds, unsigned char *buf);
544int radix_to_creds(const char *buf, CREDENTIALS * creds);
545#endif /* AFS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547#endif /* KRB4 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548
549#ifdef SKEY
550#include <skey.h>
Damien Miller95def091999-11-25 00:26:21 +1100551char *skey_fake_keyinfo(char *username);
Damien Milleraae6c611999-12-06 11:47:28 +1100552int auth_skey_password(struct passwd * pw, const char *password);
Damien Miller95def091999-11-25 00:26:21 +1100553#endif /* SKEY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Damien Miller34132e52000-01-14 15:45:46 +1100555/* AF_UNSPEC or AF_INET or AF_INET6 */
556extern int IPv4or6;
557
Damien Millere72b7af1999-12-30 15:08:44 +1100558#ifdef USE_PAM
559#include "auth-pam.h"
560#endif /* USE_PAM */
561
Damien Miller95def091999-11-25 00:26:21 +1100562#endif /* SSH_H */