]> andersk Git - openssh.git/blame - ssh.h
- Merged OpenBSD CVS changes:
[openssh.git] / ssh.h
CommitLineData
8efc0c15 1/*
5260325f 2 *
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 */
8efc0c15 15
16/* RCSID("$Id$"); */
17
18#ifndef SSH_H
19#define SSH_H
20
4cca272e 21#include <netinet/in.h> /* For struct sockaddr_in */
22#include <pwd.h> /* For struct pw */
6a17f9c2 23#include <stdarg.h> /* For va_list */
5881cd60 24
8efc0c15 25#include "rsa.h"
26#include "cipher.h"
27
aa3378df 28/*
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 */
8efc0c15 33#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
aa3378df 44/*
45 * Maximum number of RSA authentication identity files that can be specified
46 * in configuration files or on the command line.
47 */
8efc0c15 48#define SSH_MAX_IDENTITY_FILES 100
49
aa3378df 50/*
51 * Major protocol version. Different version indicates major incompatiblity
52 * that prevents communication.
53 */
8efc0c15 54#define PROTOCOL_MAJOR 1
55
aa3378df 56/*
57 * Minor protocol version. Different version indicates minor incompatibility
58 * that does not prevent interoperation.
59 */
8efc0c15 60#define PROTOCOL_MINOR 5
61
aa3378df 62/*
63 * Name for the service. The port named by this service overrides the
64 * default port if present.
65 */
8efc0c15 66#define SSH_SERVICE_NAME "ssh"
67
68#ifndef ETCDIR
69#define ETCDIR "/etc"
70#endif /* ETCDIR */
71
5260325f 72#ifndef PIDDIR
8efc0c15 73#define PIDDIR "/var/run"
5260325f 74#endif /* PIDDIR */
8efc0c15 75
aa3378df 76/*
77 * System-wide file containing host keys of known hosts. This file should be
78 * world-readable.
79 */
8efc0c15 80#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
81
aa3378df 82/*
83 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
84 * should be world-readable.
85 */
8efc0c15 86#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
e1a9c08d 90#ifndef SSH_PROGRAM
5260325f 91#define SSH_PROGRAM "/usr/bin/ssh"
e1a9c08d 92#endif /* SSH_PROGRAM */
93
94#ifndef LOGIN_PROGRAM
5260325f 95#define LOGIN_PROGRAM "/usr/bin/login"
e1a9c08d 96#endif /* LOGIN_PROGRAM */
8efc0c15 97
d4f11b59 98#ifndef ASKPASS_PROGRAM
5260325f 99#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
d4f11b59 100#endif /* ASKPASS_PROGRAM */
101
aa3378df 102/*
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 */
f1bcacf9 106#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
8efc0c15 107
aa3378df 108/*
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 */
8efc0c15 112#define SSH_USER_DIR ".ssh"
113
aa3378df 114/*
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 */
8efc0c15 119#define SSH_USER_HOSTFILE "~/.ssh/known_hosts"
120
aa3378df 121/*
122 * Name of the default file containing client-side authentication key. This
123 * file should only be readable by the user him/herself.
124 */
8efc0c15 125#define SSH_CLIENT_IDENTITY ".ssh/identity"
126
aa3378df 127/*
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 */
8efc0c15 133#define SSH_USER_CONFFILE ".ssh/config"
134
aa3378df 135/*
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 */
8efc0c15 143#define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
144
aa3378df 145/*
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 */
8efc0c15 151#define SSH_USER_RC ".ssh/rc"
152#define SSH_SYSTEM_RC ETCDIR "/sshrc"
153
aa3378df 154/*
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 */
8efc0c15 158#define SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv"
159
aa3378df 160/*
161 * Name of the environment variable containing the pathname of the
162 * authentication socket.
163 */
8efc0c15 164#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
165
aa3378df 166/*
167 * Name of the environment variable containing the pathname of the
168 * authentication socket.
169 */
b4748e2f 170#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
50da1126 171
57112b5a 172/*
173 * Default path to ssh-askpass used by ssh-add,
174 * environment variable for overwriting the default location
175 */
176#define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
177#define SSH_ASKPASS_ENV "SSH_ASKPASS"
178
aa3378df 179/*
180 * Force host key length and server key length to differ by at least this
181 * many bits. This is to make double encryption with rsaref work.
182 */
8efc0c15 183#define SSH_KEY_BITS_RESERVED 128
184
aa3378df 185/*
186 * Length of the session key in bytes. (Specified as 256 bits in the
187 * protocol.)
188 */
8efc0c15 189#define SSH_SESSION_KEY_LENGTH 32
190
191/* Name of Kerberos service for SSH to use. */
192#define KRB4_SERVICE_NAME "rcmd"
193
aa3378df 194/*
195 * Authentication methods. New types can be added, but old types should not
196 * be removed for compatibility. The maximum allowed value is 31.
197 */
8efc0c15 198#define SSH_AUTH_RHOSTS 1
199#define SSH_AUTH_RSA 2
200#define SSH_AUTH_PASSWORD 3
201#define SSH_AUTH_RHOSTS_RSA 4
5260325f 202#define SSH_AUTH_TIS 5
8efc0c15 203#define SSH_AUTH_KERBEROS 6
204#define SSH_PASS_KERBEROS_TGT 7
aa3378df 205 /* 8 to 15 are reserved */
8efc0c15 206#define SSH_PASS_AFS_TOKEN 21
207
208/* Protocol flags. These are bit masks. */
aa3378df 209#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
210#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
211
212/*
213 * Definition of message types. New values can be added, but old values
214 * should not be removed or without careful consideration of the consequences
215 * for compatibility. The maximum value is 254; value 255 is reserved for
216 * future extension.
217 */
218/* Message name */ /* msg code */ /* arguments */
8efc0c15 219#define SSH_MSG_NONE 0 /* no message */
220#define SSH_MSG_DISCONNECT 1 /* cause (string) */
221#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
222#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
223#define SSH_CMSG_USER 4 /* user (string) */
224#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
225#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */
226#define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */
227#define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
228#define SSH_CMSG_AUTH_PASSWORD 9 /* pass (string) */
229#define SSH_CMSG_REQUEST_PTY 10 /* TERM, tty modes */
230#define SSH_CMSG_WINDOW_SIZE 11 /* row,col,xpix,ypix */
231#define SSH_CMSG_EXEC_SHELL 12 /* */
232#define SSH_CMSG_EXEC_CMD 13 /* cmd (string) */
233#define SSH_SMSG_SUCCESS 14 /* */
234#define SSH_SMSG_FAILURE 15 /* */
235#define SSH_CMSG_STDIN_DATA 16 /* data (string) */
236#define SSH_SMSG_STDOUT_DATA 17 /* data (string) */
237#define SSH_SMSG_STDERR_DATA 18 /* data (string) */
238#define SSH_CMSG_EOF 19 /* */
239#define SSH_SMSG_EXITSTATUS 20 /* status (int) */
240#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* channel (int) */
241#define SSH_MSG_CHANNEL_OPEN_FAILURE 22 /* channel (int) */
242#define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
243#define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */
244#define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* channel (int) */
245/* SSH_CMSG_X11_REQUEST_FORWARDING 26 OBSOLETE */
246#define SSH_SMSG_X11_OPEN 27 /* channel (int) */
247#define SSH_CMSG_PORT_FORWARD_REQUEST 28 /* p,host,hp (i,s,i) */
248#define SSH_MSG_PORT_OPEN 29 /* ch,h,p (i,s,i) */
249#define SSH_CMSG_AGENT_REQUEST_FORWARDING 30 /* */
250#define SSH_SMSG_AGENT_OPEN 31 /* port (int) */
251#define SSH_MSG_IGNORE 32 /* string */
252#define SSH_CMSG_EXIT_CONFIRMATION 33 /* */
253#define SSH_CMSG_X11_REQUEST_FORWARDING 34 /* proto,data (s,s) */
254#define SSH_CMSG_AUTH_RHOSTS_RSA 35 /* user,mod (s,mpi) */
255#define SSH_MSG_DEBUG 36 /* string */
256#define SSH_CMSG_REQUEST_COMPRESSION 37 /* level 1-9 (int) */
257#define SSH_CMSG_MAX_PACKET_SIZE 38 /* size 4k-1024k (int) */
5260325f 258#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
259#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
260#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
8efc0c15 261#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
262#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
263#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
264#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
265
8efc0c15 266/*------------ definitions for login.c -------------*/
267
aa3378df 268/*
269 * Returns the time when the user last logged in. Returns 0 if the
270 * information is not available. This must be called before record_login.
271 * The host from which the user logged in is stored in buf.
272 */
5260325f 273unsigned long
274get_last_login_time(uid_t uid, const char *logname,
275 char *buf, unsigned int bufsize);
8efc0c15 276
aa3378df 277/*
278 * Records that the user has logged in. This does many things normally done
279 * by login(1).
280 */
5260325f 281void
282record_login(int pid, const char *ttyname, const char *user, uid_t uid,
283 const char *host, struct sockaddr_in * addr);
8efc0c15 284
aa3378df 285/*
286 * Records that the user has logged out. This does many thigs normally done
287 * by login(1) or init.
288 */
5260325f 289void record_logout(int pid, const char *ttyname);
8efc0c15 290
291/*------------ definitions for sshconnect.c ----------*/
292
aa3378df 293/*
294 * Opens a TCP/IP connection to the remote server on the given host. If port
295 * is 0, the default port will be used. If anonymous is zero, a privileged
296 * port will be allocated to make the connection. This requires super-user
297 * privileges if anonymous is false. Connection_attempts specifies the
298 * maximum number of tries, one per second. This returns true on success,
299 * and zero on failure. If the connection is successful, this calls
300 * packet_set_connection for the connection.
301 */
5260325f 302int
303ssh_connect(const char *host, struct sockaddr_in * hostaddr,
57112b5a 304 u_short port, int connection_attempts,
5260325f 305 int anonymous, uid_t original_real_uid,
306 const char *proxy_command);
8efc0c15 307
aa3378df 308/*
309 * Starts a dialog with the server, and authenticates the current user on the
310 * server. This does not need any extra privileges. The basic connection to
311 * the server must already have been established before this is called. If
312 * login fails, this function prints an error and never returns. This
313 * initializes the random state, and leaves it initialized (it will also have
314 * references from the packet module).
315 */
6a17f9c2 316
5260325f 317void
318ssh_login(int host_key_valid, RSA * host_key, const char *host,
319 struct sockaddr_in * hostaddr, uid_t original_real_uid);
8efc0c15 320
321/*------------ Definitions for various authentication methods. -------*/
322
aa3378df 323/*
324 * Tries to authenticate the user using the .rhosts file. Returns true if
325 * authentication succeeds. If ignore_rhosts is non-zero, this will not
326 * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
327 */
5260325f 328int auth_rhosts(struct passwd * pw, const char *client_user);
8efc0c15 329
aa3378df 330/*
331 * Tries to authenticate the user using the .rhosts file and the host using
332 * its host key. Returns true if authentication succeeds.
333 */
5260325f 334int
335auth_rhosts_rsa(struct passwd * pw, const char *client_user,
336 BIGNUM * client_host_key_e, BIGNUM * client_host_key_n);
8efc0c15 337
aa3378df 338/*
339 * Tries to authenticate the user using password. Returns true if
340 * authentication succeeds.
341 */
5260325f 342int auth_password(struct passwd * pw, const char *password);
8efc0c15 343
aa3378df 344/*
345 * Performs the RSA authentication dialog with the client. This returns 0 if
346 * the client could not be authenticated, and 1 if authentication was
347 * successful. This may exit if there is a serious protocol violation.
348 */
5260325f 349int auth_rsa(struct passwd * pw, BIGNUM * client_n);
8efc0c15 350
aa3378df 351/*
352 * Parses an RSA key (number of bits, e, n) from a string. Moves the pointer
353 * over the key. Skips any whitespace at the beginning and at end.
354 */
5260325f 355int auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
8efc0c15 356
aa3378df 357/*
358 * Returns the name of the machine at the other end of the socket. The
359 * returned string should be freed by the caller.
360 */
5260325f 361char *get_remote_hostname(int socket);
8efc0c15 362
aa3378df 363/*
364 * Return the canonical name of the host in the other side of the current
365 * connection (as returned by packet_get_connection). The host name is
366 * cached, so it is efficient to call this several times.
367 */
8efc0c15 368const char *get_canonical_hostname(void);
369
aa3378df 370/*
371 * Returns the remote IP address as an ascii string. The value need not be
372 * freed by the caller.
373 */
8efc0c15 374const char *get_remote_ipaddr(void);
375
376/* Returns the port number of the peer of the socket. */
5260325f 377int get_peer_port(int sock);
8efc0c15 378
379/* Returns the port number of the remote host. */
5260325f 380int get_remote_port(void);
8efc0c15 381
aa3378df 382/*
383 * Tries to match the host name (which must be in all lowercase) against the
384 * comma-separated sequence of subpatterns (each possibly preceded by ! to
385 * indicate negation). Returns true if there is a positive match; zero
386 * otherwise.
387 */
5260325f 388int match_hostname(const char *host, const char *pattern, unsigned int len);
8efc0c15 389
aa3378df 390/*
391 * Checks whether the given host is already in the list of our known hosts.
392 * Returns HOST_OK if the host is known and has the specified key, HOST_NEW
393 * if the host is not known, and HOST_CHANGED if the host is known but used
394 * to have a different host key. The host must be in all lowercase.
395 */
5260325f 396typedef enum {
397 HOST_OK, HOST_NEW, HOST_CHANGED
398} HostStatus;
399HostStatus
400check_host_in_hostfile(const char *filename, const char *host,
401 BIGNUM * e, BIGNUM * n, BIGNUM * ke, BIGNUM * kn);
8efc0c15 402
aa3378df 403/*
404 * Appends an entry to the host file. Returns false if the entry could not
405 * be appended.
406 */
5260325f 407int
408add_host_to_hostfile(const char *filename, const char *host,
409 BIGNUM * e, BIGNUM * n);
8efc0c15 410
aa3378df 411/*
412 * Performs the RSA authentication challenge-response dialog with the client,
413 * and returns true (non-zero) if the client gave the correct answer to our
414 * challenge; returns zero if the client gives a wrong answer.
415 */
5260325f 416int auth_rsa_challenge_dialog(BIGNUM * e, BIGNUM * n);
8efc0c15 417
aa3378df 418/*
419 * Reads a passphrase from /dev/tty with echo turned off. Returns the
420 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
421 * from_stdin is true, the passphrase will be read from stdin instead.
422 */
5260325f 423char *read_passphrase(const char *prompt, int from_stdin);
8efc0c15 424
aa3378df 425/*
426 * Saves the authentication (private) key in a file, encrypting it with
427 * passphrase. The identification of the file (lowest 64 bits of n) will
428 * precede the key to provide identification of the key without needing a
429 * passphrase.
430 */
5260325f 431int
432save_private_key(const char *filename, const char *passphrase,
433 RSA * private_key, const char *comment);
8efc0c15 434
aa3378df 435/*
436 * Loads the public part of the key file (public key and comment). Returns 0
437 * if an error occurred; zero if the public key was successfully read. The
438 * comment of the key is returned in comment_return if it is non-NULL; the
439 * caller must free the value with xfree.
440 */
5260325f 441int
442load_public_key(const char *filename, RSA * pub,
443 char **comment_return);
8efc0c15 444
aa3378df 445/*
446 * Loads the private key from the file. Returns 0 if an error is encountered
447 * (file does not exist or is not readable, or passphrase is bad). This
448 * initializes the private key. The comment of the key is returned in
449 * comment_return if it is non-NULL; the caller must free the value with
450 * xfree.
451 */
5260325f 452int
453load_private_key(const char *filename, const char *passphrase,
454 RSA * private_key, char **comment_return);
8efc0c15 455
6fa724bc 456/*------------ Definitions for logging. -----------------------*/
457
458/* Supported syslog facilities and levels. */
5260325f 459typedef enum {
460 SYSLOG_FACILITY_DAEMON,
461 SYSLOG_FACILITY_USER,
462 SYSLOG_FACILITY_AUTH,
463 SYSLOG_FACILITY_LOCAL0,
464 SYSLOG_FACILITY_LOCAL1,
465 SYSLOG_FACILITY_LOCAL2,
466 SYSLOG_FACILITY_LOCAL3,
467 SYSLOG_FACILITY_LOCAL4,
468 SYSLOG_FACILITY_LOCAL5,
469 SYSLOG_FACILITY_LOCAL6,
470 SYSLOG_FACILITY_LOCAL7
471} SyslogFacility;
472
473typedef enum {
474 SYSLOG_LEVEL_QUIET,
475 SYSLOG_LEVEL_FATAL,
476 SYSLOG_LEVEL_ERROR,
477 SYSLOG_LEVEL_INFO,
478 SYSLOG_LEVEL_VERBOSE,
479 SYSLOG_LEVEL_DEBUG
480} LogLevel;
6fa724bc 481/* Initializes logging. */
5260325f 482void log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
6fa724bc 483
484/* Logging implementation, depending on server or client */
5260325f 485void do_log(LogLevel level, const char *fmt, va_list args);
6fa724bc 486
9d6b7add 487/* name to facility/level */
488SyslogFacility log_facility_number(char *name);
489LogLevel log_level_number(char *name);
490
6fa724bc 491/* Output a message to syslog or stderr */
5260325f 492void fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
493void error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
494void log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
495void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
496void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
6fa724bc 497
498/* same as fatal() but w/o logging */
5260325f 499void fatal_cleanup(void);
6fa724bc 500
aa3378df 501/*
502 * Registers a cleanup function to be called by fatal()/fatal_cleanup()
503 * before exiting. It is permissible to call fatal_remove_cleanup for the
504 * function itself from the function.
505 */
5260325f 506void fatal_add_cleanup(void (*proc) (void *context), void *context);
6fa724bc 507
508/* Removes a cleanup function to be called at fatal(). */
5260325f 509void fatal_remove_cleanup(void (*proc) (void *context), void *context);
6fa724bc 510
8efc0c15 511/*---------------- definitions for channels ------------------*/
512
513/* Sets specific protocol options. */
5260325f 514void channel_set_options(int hostname_in_open);
8efc0c15 515
aa3378df 516/*
517 * Allocate a new channel object and set its type and socket. Remote_name
518 * must have been allocated with xmalloc; this will free it when the channel
519 * is freed.
520 */
5260325f 521int channel_allocate(int type, int sock, char *remote_name);
8efc0c15 522
523/* Free the channel and close its socket. */
5260325f 524void channel_free(int channel);
8efc0c15 525
526/* Add any bits relevant to channels in select bitmasks. */
5260325f 527void channel_prepare_select(fd_set * readset, fd_set * writeset);
8efc0c15 528
aa3378df 529/*
530 * After select, perform any appropriate operations for channels which have
531 * events pending.
532 */
5260325f 533void channel_after_select(fd_set * readset, fd_set * writeset);
8efc0c15 534
535/* If there is data to send to the connection, send some of it now. */
5260325f 536void channel_output_poll(void);
8efc0c15 537
aa3378df 538/*
539 * This is called when a packet of type CHANNEL_DATA has just been received.
540 * The message type has already been consumed, but channel number and data is
541 * still there.
542 */
5260325f 543void channel_input_data(int payload_len);
8efc0c15 544
545/* Returns true if no channel has too much buffered data. */
5260325f 546int channel_not_very_much_buffered_data(void);
8efc0c15 547
548/* This is called after receiving CHANNEL_CLOSE. */
5260325f 549void channel_input_close(void);
8efc0c15 550
551/* This is called after receiving CHANNEL_CLOSE_CONFIRMATION. */
5260325f 552void channel_input_close_confirmation(void);
8efc0c15 553
554/* This is called after receiving CHANNEL_OPEN_CONFIRMATION. */
5260325f 555void channel_input_open_confirmation(void);
8efc0c15 556
557/* This is called after receiving CHANNEL_OPEN_FAILURE from the other side. */
5260325f 558void channel_input_open_failure(void);
8efc0c15 559
560/* This closes any sockets that are listening for connections; this removes
561 any unix domain sockets. */
5260325f 562void channel_stop_listening(void);
8efc0c15 563
aa3378df 564/*
565 * Closes the sockets of all channels. This is used to close extra file
566 * descriptors after a fork.
567 */
5260325f 568void channel_close_all(void);
8efc0c15 569
570/* Returns the maximum file descriptor number used by the channels. */
5260325f 571int channel_max_fd(void);
8efc0c15 572
573/* Returns true if there is still an open channel over the connection. */
5260325f 574int channel_still_open(void);
8efc0c15 575
aa3378df 576/*
577 * Returns a string containing a list of all open channels. The list is
578 * suitable for displaying to the user. It uses crlf instead of newlines.
579 * The caller should free the string with xfree.
580 */
5260325f 581char *channel_open_message(void);
8efc0c15 582
aa3378df 583/*
584 * Initiate forwarding of connections to local port "port" through the secure
585 * channel to host:port from remote side. This never returns if there was an
586 * error.
587 */
5260325f 588void
57112b5a 589channel_request_local_forwarding(u_short port, const char *host,
590 u_short remote_port);
8efc0c15 591
aa3378df 592/*
593 * Initiate forwarding of connections to port "port" on remote host through
594 * the secure channel to host:port from local side. This never returns if
595 * there was an error. This registers that open requests for that port are
596 * permitted.
597 */
5260325f 598void
57112b5a 599channel_request_remote_forwarding(u_short port, const char *host,
600 u_short remote_port);
8efc0c15 601
aa3378df 602/*
603 * Permits opening to any host/port in SSH_MSG_PORT_OPEN. This is usually
604 * called by the server, because the user could connect to any port anyway,
605 * and the server has no way to know but to trust the client anyway.
606 */
5260325f 607void channel_permit_all_opens(void);
8efc0c15 608
aa3378df 609/*
610 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
611 * listening for the port, and sends back a success reply (or disconnect
612 * message if there was an error). This never returns if there was an error.
613 */
5260325f 614void channel_input_port_forward_request(int is_root);
8efc0c15 615
aa3378df 616/*
617 * This is called after receiving PORT_OPEN message. This attempts to
618 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
619 * or CHANNEL_OPEN_FAILURE.
620 */
5260325f 621void channel_input_port_open(int payload_len);
8efc0c15 622
aa3378df 623/*
624 * Creates a port for X11 connections, and starts listening for it. Returns
625 * the display name, or NULL if an error was encountered.
626 */
5260325f 627char *x11_create_display(int screen);
8efc0c15 628
aa3378df 629/*
630 * Creates an internet domain socket for listening for X11 connections.
631 * Returns a suitable value for the DISPLAY variable, or NULL if an error
632 * occurs.
633 */
5260325f 634char *x11_create_display_inet(int screen);
8efc0c15 635
aa3378df 636/*
637 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
638 * the remote channel number. We should do whatever we want, and respond
639 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
640 */
5260325f 641void x11_input_open(int payload_len);
8efc0c15 642
aa3378df 643/*
644 * Requests forwarding of X11 connections. This should be called on the
645 * client only.
646 */
5260325f 647void x11_request_forwarding(void);
8efc0c15 648
aa3378df 649/*
650 * Requests forwarding for X11 connections, with authentication spoofing.
651 * This should be called in the client only.
652 */
5260325f 653void x11_request_forwarding_with_spoofing(const char *proto, const char *data);
8efc0c15 654
8efc0c15 655/* Sends a message to the server to request authentication fd forwarding. */
5260325f 656void auth_request_forwarding(void);
8efc0c15 657
aa3378df 658/*
659 * Returns the name of the forwarded authentication socket. Returns NULL if
660 * there is no forwarded authentication socket. The returned value points to
661 * a static buffer.
662 */
5260325f 663char *auth_get_socket_name(void);
8efc0c15 664
aa3378df 665/*
666 * This if called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
667 * This starts forwarding authentication requests.
668 */
5260325f 669void auth_input_request_forwarding(struct passwd * pw);
8efc0c15 670
671/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
5260325f 672void auth_input_open_request(void);
8efc0c15 673
aa3378df 674/*
675 * Returns true if the given string matches the pattern (which may contain ?
676 * and * as wildcards), and zero if it does not match.
677 */
5260325f 678int match_pattern(const char *s, const char *pattern);
8efc0c15 679
aa3378df 680/*
681 * Expands tildes in the file name. Returns data allocated by xmalloc.
682 * Warning: this calls getpw*.
683 */
5260325f 684char *tilde_expand_filename(const char *filename, uid_t my_uid);
8efc0c15 685
aa3378df 686/*
687 * Performs the interactive session. This handles data transmission between
688 * the client and the program. Note that the notion of stdin, stdout, and
689 * stderr in this function is sort of reversed: this function writes to stdin
690 * (of the child program), and reads from stdout and stderr (of the child
691 * program).
692 */
5260325f 693void server_loop(int pid, int fdin, int fdout, int fderr);
8efc0c15 694
695/* Client side main loop for the interactive session. */
5260325f 696int client_loop(int have_pty, int escape_char);
8efc0c15 697
698/* Linked list of custom environment strings (see auth-rsa.c). */
699struct envstring {
5260325f 700 struct envstring *next;
701 char *s;
8efc0c15 702};
8efc0c15 703#ifdef KRB4
704#include <krb.h>
705
aa3378df 706/*
707 * Performs Kerberos v4 mutual authentication with the client. This returns 0
708 * if the client could not be authenticated, and 1 if authentication was
709 * successful. This may exit if there is a serious protocol violation.
710 */
5260325f 711int auth_krb4(const char *server_user, KTEXT auth, char **client);
712int krb4_init(uid_t uid);
713void krb4_cleanup_proc(void *ignore);
57112b5a 714int auth_krb4_password(struct passwd * pw, const char *password);
8efc0c15 715
716#ifdef AFS
717#include <kafs.h>
718
719/* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
5260325f 720int auth_kerberos_tgt(struct passwd * pw, const char *string);
721int auth_afs_token(struct passwd * pw, const char *token_string);
8efc0c15 722
5260325f 723int creds_to_radix(CREDENTIALS * creds, unsigned char *buf);
724int radix_to_creds(const char *buf, CREDENTIALS * creds);
725#endif /* AFS */
8efc0c15 726
5260325f 727#endif /* KRB4 */
8efc0c15 728
729#ifdef SKEY
730#include <skey.h>
5260325f 731char *skey_fake_keyinfo(char *username);
57112b5a 732int auth_skey_password(struct passwd * pw, const char *password);
5260325f 733#endif /* SKEY */
8efc0c15 734
5260325f 735#endif /* SSH_H */
This page took 0.199282 seconds and 5 git commands to generate.