blob: f21dee4943813b98b44ed38d64295184faa28bdd [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 Millerad833b32000-08-23 10:46:23 +100016/* RCSID("$OpenBSD: ssh.h,v 1.49 2000/08/19 18:48:11 markus 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/*
Damien Miller30c3d422000-05-09 11:02:59 +100033 * XXX
Damien Miller5428f641999-11-25 11:54:57 +110034 * The default cipher used if IDEA is not supported by the remote host. It is
35 * recommended that this be one of the mandatory ciphers (DES, 3DES), though
36 * that is not required.
37 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038#define SSH_FALLBACK_CIPHER SSH_CIPHER_3DES
39
40/* Cipher used for encrypting authentication files. */
41#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
42
43/* Default port number. */
44#define SSH_DEFAULT_PORT 22
45
46/* Maximum number of TCP/IP ports forwarded per direction. */
47#define SSH_MAX_FORWARDS_PER_DIRECTION 100
48
Damien Miller5428f641999-11-25 11:54:57 +110049/*
50 * Maximum number of RSA authentication identity files that can be specified
51 * in configuration files or on the command line.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#define SSH_MAX_IDENTITY_FILES 100
54
Damien Miller5428f641999-11-25 11:54:57 +110055/*
56 * Major protocol version. Different version indicates major incompatiblity
57 * that prevents communication.
Damien Miller78928792000-04-12 20:17:38 +100058 *
Damien Miller5428f641999-11-25 11:54:57 +110059 * Minor protocol version. Different version indicates minor incompatibility
60 * that does not prevent interoperation.
61 */
Damien Miller78928792000-04-12 20:17:38 +100062#define PROTOCOL_MAJOR_1 1
63#define PROTOCOL_MINOR_1 5
64
65/* We support both SSH1 and SSH2 */
66#define PROTOCOL_MAJOR_2 2
67#define PROTOCOL_MINOR_2 0
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller5428f641999-11-25 11:54:57 +110069/*
70 * Name for the service. The port named by this service overrides the
71 * default port if present.
72 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#define SSH_SERVICE_NAME "ssh"
74
Damien Millerd0cff3e2000-04-20 23:12:58 +100075#if defined(USE_PAM) && !defined(SSHD_PAM_SERVICE)
76# define SSHD_PAM_SERVICE "sshd"
77#endif
78
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#ifndef ETCDIR
80#define ETCDIR "/etc"
81#endif /* ETCDIR */
82
Damien Miller95def091999-11-25 00:26:21 +110083#ifndef PIDDIR
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084#define PIDDIR "/var/run"
Damien Miller95def091999-11-25 00:26:21 +110085#endif /* PIDDIR */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * System-wide file containing host keys of known hosts. This file should be
89 * world-readable.
90 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
Damien Millereba71ba2000-04-29 23:57:08 +100092#define SSH_SYSTEM_HOSTFILE2 ETCDIR "/ssh_known_hosts2"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
96 * should be world-readable.
97 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
99#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
100#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
Damien Millere247cc42000-05-07 12:03:14 +1000101#define HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Miller356a0b01999-11-08 15:30:59 +1100103#ifndef SSH_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +1100104#define SSH_PROGRAM "/usr/bin/ssh"
Damien Miller356a0b01999-11-08 15:30:59 +1100105#endif /* SSH_PROGRAM */
106
107#ifndef LOGIN_PROGRAM
Damien Millerad833b32000-08-23 10:46:23 +1000108# ifdef LOGIN_PROGRAM_FALLBACK
109# define LOGIN_PROGRAM LOGIN_PROGRAM_FALLBACK
110# else
111# define LOGIN_PROGRAM "/usr/bin/login"
112# endif
Damien Miller356a0b01999-11-08 15:30:59 +1100113#endif /* LOGIN_PROGRAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Millerc7b38ce1999-11-09 10:28:04 +1100115#ifndef ASKPASS_PROGRAM
Damien Miller95def091999-11-25 00:26:21 +1100116#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
Damien Millerc7b38ce1999-11-09 10:28:04 +1100117#endif /* ASKPASS_PROGRAM */
118
Damien Miller5428f641999-11-25 11:54:57 +1100119/*
120 * The process id of the daemon listening for connections is saved here to
121 * make it easier to kill the correct daemon when necessary.
122 */
Damien Millera37010e1999-10-29 09:18:29 +1000123#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * The directory in user\'s home directory in which the files reside. The
127 * directory should be world-readable (though not all files are).
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129#define SSH_USER_DIR ".ssh"
130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
Damien Miller4018c192000-04-30 09:30:44 +1000132 * Relevant only when using builtin PRNG.
133 */
134#ifndef SSH_PRNG_SEED_FILE
135# define SSH_PRNG_SEED_FILE SSH_USER_DIR"/prng_seed"
136#endif /* SSH_PRNG_SEED_FILE */
Damien Miller0437b332000-05-02 09:56:41 +1000137#ifndef SSH_PRNG_COMMAND_FILE
138# define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds"
139#endif /* SSH_PRNG_COMMAND_FILE */
Damien Miller4018c192000-04-30 09:30:44 +1000140
141/*
Damien Miller5428f641999-11-25 11:54:57 +1100142 * Per-user file containing host keys of known hosts. This file need not be
143 * readable by anyone except the user him/herself, though this does not
144 * contain anything particularly secret.
145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146#define SSH_USER_HOSTFILE "~/.ssh/known_hosts"
Damien Millereba71ba2000-04-29 23:57:08 +1000147#define SSH_USER_HOSTFILE2 "~/.ssh/known_hosts2"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * Name of the default file containing client-side authentication key. This
151 * file should only be readable by the user him/herself.
152 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153#define SSH_CLIENT_IDENTITY ".ssh/identity"
Damien Millere247cc42000-05-07 12:03:14 +1000154#define SSH_CLIENT_ID_DSA ".ssh/id_dsa"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Damien Miller5428f641999-11-25 11:54:57 +1100156/*
157 * Configuration file in user\'s home directory. This file need not be
158 * readable by anyone but the user him/herself, but does not contain anything
159 * particularly secret. If the user\'s home directory resides on an NFS
160 * volume where root is mapped to nobody, this may need to be world-readable.
161 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162#define SSH_USER_CONFFILE ".ssh/config"
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
165 * File containing a list of those rsa keys that permit logging in as this
166 * user. This file need not be readable by anyone but the user him/herself,
167 * but does not contain anything particularly secret. If the user\'s home
168 * directory resides on an NFS volume where root is mapped to nobody, this
169 * may need to be world-readable. (This file is read by the daemon which is
170 * running as root.)
171 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172#define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
Damien Millereba71ba2000-04-29 23:57:08 +1000173#define SSH_USER_PERMITTED_KEYS2 ".ssh/authorized_keys2"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller5428f641999-11-25 11:54:57 +1100175/*
176 * Per-user and system-wide ssh "rc" files. These files are executed with
177 * /bin/sh before starting the shell or command if they exist. They will be
178 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
179 * use. xauth will be run if neither of these exists.
180 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181#define SSH_USER_RC ".ssh/rc"
182#define SSH_SYSTEM_RC ETCDIR "/sshrc"
183
Damien Miller5428f641999-11-25 11:54:57 +1100184/*
185 * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use
186 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
187 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188#define SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv"
189
Damien Miller5428f641999-11-25 11:54:57 +1100190/*
191 * Name of the environment variable containing the pathname of the
192 * authentication socket.
193 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
195
Damien Miller5428f641999-11-25 11:54:57 +1100196/*
197 * Name of the environment variable containing the pathname of the
198 * authentication socket.
199 */
Damien Miller32265091999-11-12 11:33:04 +1100200#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
Damien Miller5eeedae1999-10-29 10:21:15 +1000201
Damien Miller5428f641999-11-25 11:54:57 +1100202/*
Damien Milleraae6c611999-12-06 11:47:28 +1100203 * Default path to ssh-askpass used by ssh-add,
204 * environment variable for overwriting the default location
205 */
Damien Miller3bc14dd1999-12-07 14:54:53 +1100206#ifndef SSH_ASKPASS_DEFAULT
207# define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
208#endif
Damien Milleraae6c611999-12-06 11:47:28 +1100209#define SSH_ASKPASS_ENV "SSH_ASKPASS"
210
211/*
Damien Miller5428f641999-11-25 11:54:57 +1100212 * Force host key length and server key length to differ by at least this
213 * many bits. This is to make double encryption with rsaref work.
214 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215#define SSH_KEY_BITS_RESERVED 128
216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Length of the session key in bytes. (Specified as 256 bits in the
219 * protocol.)
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221#define SSH_SESSION_KEY_LENGTH 32
222
223/* Name of Kerberos service for SSH to use. */
224#define KRB4_SERVICE_NAME "rcmd"
225
Damien Miller5428f641999-11-25 11:54:57 +1100226/*
227 * Authentication methods. New types can be added, but old types should not
228 * be removed for compatibility. The maximum allowed value is 31.
229 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230#define SSH_AUTH_RHOSTS 1
231#define SSH_AUTH_RSA 2
232#define SSH_AUTH_PASSWORD 3
233#define SSH_AUTH_RHOSTS_RSA 4
Damien Miller95def091999-11-25 00:26:21 +1100234#define SSH_AUTH_TIS 5
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235#define SSH_AUTH_KERBEROS 6
236#define SSH_PASS_KERBEROS_TGT 7
Damien Miller5428f641999-11-25 11:54:57 +1100237 /* 8 to 15 are reserved */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238#define SSH_PASS_AFS_TOKEN 21
239
240/* Protocol flags. These are bit masks. */
Damien Miller5428f641999-11-25 11:54:57 +1100241#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
242#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243
Damien Miller5428f641999-11-25 11:54:57 +1100244/*
245 * Definition of message types. New values can be added, but old values
246 * should not be removed or without careful consideration of the consequences
247 * for compatibility. The maximum value is 254; value 255 is reserved for
248 * future extension.
249 */
250/* Message name */ /* msg code */ /* arguments */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251#define SSH_MSG_NONE 0 /* no message */
252#define SSH_MSG_DISCONNECT 1 /* cause (string) */
253#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
254#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
255#define SSH_CMSG_USER 4 /* user (string) */
256#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
257#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */
258#define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */
259#define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
260#define SSH_CMSG_AUTH_PASSWORD 9 /* pass (string) */
261#define SSH_CMSG_REQUEST_PTY 10 /* TERM, tty modes */
262#define SSH_CMSG_WINDOW_SIZE 11 /* row,col,xpix,ypix */
263#define SSH_CMSG_EXEC_SHELL 12 /* */
264#define SSH_CMSG_EXEC_CMD 13 /* cmd (string) */
265#define SSH_SMSG_SUCCESS 14 /* */
266#define SSH_SMSG_FAILURE 15 /* */
267#define SSH_CMSG_STDIN_DATA 16 /* data (string) */
268#define SSH_SMSG_STDOUT_DATA 17 /* data (string) */
269#define SSH_SMSG_STDERR_DATA 18 /* data (string) */
270#define SSH_CMSG_EOF 19 /* */
271#define SSH_SMSG_EXITSTATUS 20 /* status (int) */
272#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* channel (int) */
273#define SSH_MSG_CHANNEL_OPEN_FAILURE 22 /* channel (int) */
274#define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
275#define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */
276#define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* channel (int) */
277/* SSH_CMSG_X11_REQUEST_FORWARDING 26 OBSOLETE */
278#define SSH_SMSG_X11_OPEN 27 /* channel (int) */
279#define SSH_CMSG_PORT_FORWARD_REQUEST 28 /* p,host,hp (i,s,i) */
280#define SSH_MSG_PORT_OPEN 29 /* ch,h,p (i,s,i) */
281#define SSH_CMSG_AGENT_REQUEST_FORWARDING 30 /* */
282#define SSH_SMSG_AGENT_OPEN 31 /* port (int) */
283#define SSH_MSG_IGNORE 32 /* string */
284#define SSH_CMSG_EXIT_CONFIRMATION 33 /* */
285#define SSH_CMSG_X11_REQUEST_FORWARDING 34 /* proto,data (s,s) */
286#define SSH_CMSG_AUTH_RHOSTS_RSA 35 /* user,mod (s,mpi) */
287#define SSH_MSG_DEBUG 36 /* string */
288#define SSH_CMSG_REQUEST_COMPRESSION 37 /* level 1-9 (int) */
289#define SSH_CMSG_MAX_PACKET_SIZE 38 /* size 4k-1024k (int) */
Damien Miller95def091999-11-25 00:26:21 +1100290#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
291#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
292#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
294#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
295#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
296#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
297
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298/*------------ definitions for login.c -------------*/
299
Damien Miller5428f641999-11-25 11:54:57 +1100300/*
301 * Returns the time when the user last logged in. Returns 0 if the
302 * information is not available. This must be called before record_login.
303 * The host from which the user logged in is stored in buf.
304 */
Damien Miller4af51302000-04-16 11:18:38 +1000305unsigned long
Damien Miller95def091999-11-25 00:26:21 +1100306get_last_login_time(uid_t uid, const char *logname,
307 char *buf, unsigned int bufsize);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308
Damien Miller5428f641999-11-25 11:54:57 +1100309/*
310 * Records that the user has logged in. This does many things normally done
311 * by login(1).
312 */
Damien Miller4af51302000-04-16 11:18:38 +1000313void
Damien Miller166fca82000-04-20 07:42:21 +1000314record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid,
Damien Miller34132e52000-01-14 15:45:46 +1100315 const char *host, struct sockaddr *addr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316
Damien Miller5428f641999-11-25 11:54:57 +1100317/*
318 * Records that the user has logged out. This does many thigs normally done
319 * by login(1) or init.
320 */
Damien Miller166fca82000-04-20 07:42:21 +1000321void record_logout(pid_t pid, const char *ttyname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
323/*------------ definitions for sshconnect.c ----------*/
324
Damien Miller5428f641999-11-25 11:54:57 +1100325/*
326 * Opens a TCP/IP connection to the remote server on the given host. If port
327 * is 0, the default port will be used. If anonymous is zero, a privileged
328 * port will be allocated to make the connection. This requires super-user
329 * privileges if anonymous is false. Connection_attempts specifies the
330 * maximum number of tries, one per second. This returns true on success,
331 * and zero on failure. If the connection is successful, this calls
332 * packet_set_connection for the connection.
333 */
Damien Miller4af51302000-04-16 11:18:38 +1000334int
Damien Miller34132e52000-01-14 15:45:46 +1100335ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
Damien Milleraae6c611999-12-06 11:47:28 +1100336 u_short port, int connection_attempts,
Damien Miller95def091999-11-25 00:26:21 +1100337 int anonymous, uid_t original_real_uid,
338 const char *proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Damien Miller5428f641999-11-25 11:54:57 +1100340/*
341 * Starts a dialog with the server, and authenticates the current user on the
342 * server. This does not need any extra privileges. The basic connection to
343 * the server must already have been established before this is called. If
344 * login fails, this function prints an error and never returns. This
345 * initializes the random state, and leaves it initialized (it will also have
346 * references from the packet module).
347 */
Damien Miller5ce662a1999-11-11 17:57:39 +1100348
Damien Miller4af51302000-04-16 11:18:38 +1000349void
Damien Miller95def091999-11-25 00:26:21 +1100350ssh_login(int host_key_valid, RSA * host_key, const char *host,
Damien Miller34132e52000-01-14 15:45:46 +1100351 struct sockaddr * hostaddr, uid_t original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
353/*------------ Definitions for various authentication methods. -------*/
354
Damien Miller5428f641999-11-25 11:54:57 +1100355/*
356 * Tries to authenticate the user using the .rhosts file. Returns true if
357 * authentication succeeds. If ignore_rhosts is non-zero, this will not
358 * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
359 */
Damien Miller95def091999-11-25 00:26:21 +1100360int auth_rhosts(struct passwd * pw, const char *client_user);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller5428f641999-11-25 11:54:57 +1100362/*
363 * Tries to authenticate the user using the .rhosts file and the host using
364 * its host key. Returns true if authentication succeeds.
365 */
Damien Miller4af51302000-04-16 11:18:38 +1000366int
Damien Miller450a7a12000-03-26 13:04:51 +1000367auth_rhosts_rsa(struct passwd * pw, const char *client_user, RSA* client_host_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Damien Miller5428f641999-11-25 11:54:57 +1100369/*
370 * Tries to authenticate the user using password. Returns true if
371 * authentication succeeds.
372 */
Damien Miller95def091999-11-25 00:26:21 +1100373int auth_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000374
Damien Miller5428f641999-11-25 11:54:57 +1100375/*
376 * Performs the RSA authentication dialog with the client. This returns 0 if
377 * the client could not be authenticated, and 1 if authentication was
378 * successful. This may exit if there is a serious protocol violation.
379 */
Damien Miller95def091999-11-25 00:26:21 +1100380int auth_rsa(struct passwd * pw, BIGNUM * client_n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000381
Damien Miller5428f641999-11-25 11:54:57 +1100382/*
383 * Parses an RSA key (number of bits, e, n) from a string. Moves the pointer
384 * over the key. Skips any whitespace at the beginning and at end.
385 */
Damien Miller95def091999-11-25 00:26:21 +1100386int auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387
Damien Miller5428f641999-11-25 11:54:57 +1100388/*
389 * Returns the name of the machine at the other end of the socket. The
390 * returned string should be freed by the caller.
391 */
Damien Miller95def091999-11-25 00:26:21 +1100392char *get_remote_hostname(int socket);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393
Damien Miller5428f641999-11-25 11:54:57 +1100394/*
395 * Return the canonical name of the host in the other side of the current
396 * connection (as returned by packet_get_connection). The host name is
397 * cached, so it is efficient to call this several times.
398 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000399const char *get_canonical_hostname(void);
400
Damien Miller5428f641999-11-25 11:54:57 +1100401/*
402 * Returns the remote IP address as an ascii string. The value need not be
403 * freed by the caller.
404 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405const char *get_remote_ipaddr(void);
406
407/* Returns the port number of the peer of the socket. */
Damien Miller95def091999-11-25 00:26:21 +1100408int get_peer_port(int sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409
Damien Miller34132e52000-01-14 15:45:46 +1100410/* Returns the port number of the remote/local host. */
Damien Miller95def091999-11-25 00:26:21 +1100411int get_remote_port(void);
Damien Miller34132e52000-01-14 15:45:46 +1100412int get_local_port(void);
413
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414
Damien Miller5428f641999-11-25 11:54:57 +1100415/*
Damien Miller5428f641999-11-25 11:54:57 +1100416 * Performs the RSA authentication challenge-response dialog with the client,
417 * and returns true (non-zero) if the client gave the correct answer to our
418 * challenge; returns zero if the client gives a wrong answer.
419 */
Damien Miller450a7a12000-03-26 13:04:51 +1000420int auth_rsa_challenge_dialog(RSA *pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421
Damien Miller5428f641999-11-25 11:54:57 +1100422/*
423 * Reads a passphrase from /dev/tty with echo turned off. Returns the
424 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
425 * from_stdin is true, the passphrase will be read from stdin instead.
426 */
Damien Miller95def091999-11-25 00:26:21 +1100427char *read_passphrase(const char *prompt, int from_stdin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100430/*------------ Definitions for logging. -----------------------*/
431
432/* Supported syslog facilities and levels. */
Damien Miller95def091999-11-25 00:26:21 +1100433typedef enum {
434 SYSLOG_FACILITY_DAEMON,
435 SYSLOG_FACILITY_USER,
436 SYSLOG_FACILITY_AUTH,
437 SYSLOG_FACILITY_LOCAL0,
438 SYSLOG_FACILITY_LOCAL1,
439 SYSLOG_FACILITY_LOCAL2,
440 SYSLOG_FACILITY_LOCAL3,
441 SYSLOG_FACILITY_LOCAL4,
442 SYSLOG_FACILITY_LOCAL5,
443 SYSLOG_FACILITY_LOCAL6,
444 SYSLOG_FACILITY_LOCAL7
445} SyslogFacility;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100446
Damien Miller95def091999-11-25 00:26:21 +1100447typedef enum {
448 SYSLOG_LEVEL_QUIET,
449 SYSLOG_LEVEL_FATAL,
450 SYSLOG_LEVEL_ERROR,
451 SYSLOG_LEVEL_INFO,
452 SYSLOG_LEVEL_VERBOSE,
453 SYSLOG_LEVEL_DEBUG
454} LogLevel;
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100455/* Initializes logging. */
Damien Miller95def091999-11-25 00:26:21 +1100456void log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100457
458/* Logging implementation, depending on server or client */
Damien Miller95def091999-11-25 00:26:21 +1100459void do_log(LogLevel level, const char *fmt, va_list args);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100460
Damien Miller6162d121999-11-21 13:23:52 +1100461/* name to facility/level */
462SyslogFacility log_facility_number(char *name);
463LogLevel log_level_number(char *name);
464
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100465/* Output a message to syslog or stderr */
Damien Miller95def091999-11-25 00:26:21 +1100466void fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
467void error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
468void log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
469void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
470void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100471
472/* same as fatal() but w/o logging */
Damien Miller95def091999-11-25 00:26:21 +1100473void fatal_cleanup(void);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100474
Damien Miller5428f641999-11-25 11:54:57 +1100475/*
476 * Registers a cleanup function to be called by fatal()/fatal_cleanup()
477 * before exiting. It is permissible to call fatal_remove_cleanup for the
478 * function itself from the function.
479 */
Damien Miller95def091999-11-25 00:26:21 +1100480void fatal_add_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100481
482/* Removes a cleanup function to be called at fatal(). */
Damien Miller95def091999-11-25 00:26:21 +1100483void fatal_remove_cleanup(void (*proc) (void *context), void *context);
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100484
Damien Millerefb4afe2000-04-12 18:45:05 +1000485/* ---- misc */
486
Damien Miller5428f641999-11-25 11:54:57 +1100487/*
488 * Expands tildes in the file name. Returns data allocated by xmalloc.
489 * Warning: this calls getpw*.
490 */
Damien Miller95def091999-11-25 00:26:21 +1100491char *tilde_expand_filename(const char *filename, uid_t my_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000493/* remove newline at end of string */
494char *chop(char *s);
495
Damien Millerbe484b52000-07-15 14:14:16 +1000496/* return next token in configuration line */
497char *strdelim(char **s);
498
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000499/* set filedescriptor to non-blocking */
500void set_nonblock(int fd);
501
Damien Miller5428f641999-11-25 11:54:57 +1100502/*
503 * Performs the interactive session. This handles data transmission between
504 * the client and the program. Note that the notion of stdin, stdout, and
505 * stderr in this function is sort of reversed: this function writes to stdin
506 * (of the child program), and reads from stdout and stderr (of the child
507 * program).
508 */
Damien Miller166fca82000-04-20 07:42:21 +1000509void server_loop(pid_t pid, int fdin, int fdout, int fderr);
Damien Millerefb4afe2000-04-12 18:45:05 +1000510void server_loop2(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
512/* Client side main loop for the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000513int client_loop(int have_pty, int escape_char, int id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514
515/* Linked list of custom environment strings (see auth-rsa.c). */
516struct envstring {
Damien Miller95def091999-11-25 00:26:21 +1100517 struct envstring *next;
518 char *s;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519};
Damien Miller037a0dc1999-12-07 15:38:31 +1100520
521/*
522 * Ensure all of data on socket comes through. f==read || f==write
523 */
Damien Miller98c7ad62000-03-09 21:27:49 +1100524ssize_t atomicio(ssize_t (*f)(), int fd, void *s, size_t n);
Damien Miller037a0dc1999-12-07 15:38:31 +1100525
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526#ifdef KRB4
527#include <krb.h>
Damien Miller5428f641999-11-25 11:54:57 +1100528/*
529 * Performs Kerberos v4 mutual authentication with the client. This returns 0
530 * if the client could not be authenticated, and 1 if authentication was
531 * successful. This may exit if there is a serious protocol violation.
532 */
Damien Miller95def091999-11-25 00:26:21 +1100533int auth_krb4(const char *server_user, KTEXT auth, char **client);
534int krb4_init(uid_t uid);
535void krb4_cleanup_proc(void *ignore);
Damien Milleraae6c611999-12-06 11:47:28 +1100536int auth_krb4_password(struct passwd * pw, const char *password);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537
538#ifdef AFS
539#include <kafs.h>
540
541/* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
Damien Miller95def091999-11-25 00:26:21 +1100542int auth_kerberos_tgt(struct passwd * pw, const char *string);
543int auth_afs_token(struct passwd * pw, const char *token_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544
Damien Millere247cc42000-05-07 12:03:14 +1000545int creds_to_radix(CREDENTIALS * creds, unsigned char *buf, size_t buflen);
Damien Miller95def091999-11-25 00:26:21 +1100546int radix_to_creds(const char *buf, CREDENTIALS * creds);
547#endif /* AFS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548
Damien Miller95def091999-11-25 00:26:21 +1100549#endif /* KRB4 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
551#ifdef SKEY
552#include <skey.h>
Damien Miller95def091999-11-25 00:26:21 +1100553char *skey_fake_keyinfo(char *username);
Damien Milleraae6c611999-12-06 11:47:28 +1100554int auth_skey_password(struct passwd * pw, const char *password);
Damien Miller95def091999-11-25 00:26:21 +1100555#endif /* SKEY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller34132e52000-01-14 15:45:46 +1100557/* AF_UNSPEC or AF_INET or AF_INET6 */
558extern int IPv4or6;
559
Damien Millere72b7af1999-12-30 15:08:44 +1100560#ifdef USE_PAM
561#include "auth-pam.h"
562#endif /* USE_PAM */
563
Damien Miller95def091999-11-25 00:26:21 +1100564#endif /* SSH_H */