]> andersk Git - openssh.git/blob - ssh.h
- (djm) OpenBSD CVS updates:
[openssh.git] / ssh.h
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  *
6  * Generic header file for ssh.
7  *
8  * As far as I am concerned, the code I have written for this software
9  * can be used freely for any purpose.  Any derived versions of this
10  * software must be clearly marked as such, and if the derived work is
11  * incompatible with the protocol description in the RFC file, it must be
12  * called by a name other than "ssh" or "Secure Shell".
13  */
14
15 /* RCSID("$OpenBSD: ssh.h,v 1.55 2000/11/25 17:19:33 markus Exp $"); */
16
17 #ifndef SSH_H
18 #define SSH_H
19
20 #include <netinet/in.h> /* For struct sockaddr_in */
21 #include <pwd.h> /* For struct pw */
22 #include <stdarg.h> /* For va_list */
23 #include <sys/socket.h> /* For struct sockaddr_storage */
24 #include "fake-socket.h" /* For struct sockaddr_storage */
25 #ifdef HAVE_SYS_SELECT_H
26 # include <sys/select.h>
27 #endif
28 #include "rsa.h"
29 #include "cipher.h"
30
31 /* Cipher used for encrypting authentication files. */
32 #define SSH_AUTHFILE_CIPHER     SSH_CIPHER_3DES
33
34 /* Default port number. */
35 #define SSH_DEFAULT_PORT        22
36
37 /* Maximum number of TCP/IP ports forwarded per direction. */
38 #define SSH_MAX_FORWARDS_PER_DIRECTION  100
39
40 /*
41  * Maximum number of RSA authentication identity files that can be specified
42  * in configuration files or on the command line.
43  */
44 #define SSH_MAX_IDENTITY_FILES          100
45
46 /*
47  * Major protocol version.  Different version indicates major incompatiblity
48  * that prevents communication.
49  *
50  * Minor protocol version.  Different version indicates minor incompatibility
51  * that does not prevent interoperation.
52  */
53 #define PROTOCOL_MAJOR_1        1
54 #define PROTOCOL_MINOR_1        5
55
56 /* We support both SSH1 and SSH2 */
57 #define PROTOCOL_MAJOR_2        2
58 #define PROTOCOL_MINOR_2        0
59
60 /*
61  * Name for the service.  The port named by this service overrides the
62  * default port if present.
63  */
64 #define SSH_SERVICE_NAME        "ssh"
65
66 #if defined(USE_PAM) && !defined(SSHD_PAM_SERVICE)
67 # define SSHD_PAM_SERVICE       "sshd"
68 #endif
69
70 #ifndef ETCDIR
71 #define ETCDIR                  "/etc"
72 #endif /* ETCDIR */
73
74 #ifndef PIDDIR
75 #define PIDDIR                  "/var/run"
76 #endif /* PIDDIR */
77
78 /*
79  * System-wide file containing host keys of known hosts.  This file should be
80  * world-readable.
81  */
82 #define SSH_SYSTEM_HOSTFILE     ETCDIR "/ssh_known_hosts"
83 #define SSH_SYSTEM_HOSTFILE2    ETCDIR "/ssh_known_hosts2"
84
85 /*
86  * Of these, ssh_host_key must be readable only by root, whereas ssh_config
87  * should be world-readable.
88  */
89 #define HOST_KEY_FILE           ETCDIR "/ssh_host_key"
90 #define SERVER_CONFIG_FILE      ETCDIR "/sshd_config"
91 #define HOST_CONFIG_FILE        ETCDIR "/ssh_config"
92 #define HOST_DSA_KEY_FILE       ETCDIR "/ssh_host_dsa_key"
93 #define DH_PRIMES               ETCDIR "/primes"
94
95 #ifndef SSH_PROGRAM
96 #define SSH_PROGRAM                     "/usr/bin/ssh"
97 #endif /* SSH_PROGRAM */
98
99 #ifndef LOGIN_PROGRAM
100 # ifdef LOGIN_PROGRAM_FALLBACK
101 #  define LOGIN_PROGRAM         LOGIN_PROGRAM_FALLBACK
102 # else
103 #  define LOGIN_PROGRAM         "/usr/bin/login"
104 # endif
105 #endif /* LOGIN_PROGRAM */
106
107 #ifndef ASKPASS_PROGRAM
108 #define ASKPASS_PROGRAM         "/usr/lib/ssh/ssh-askpass"
109 #endif /* ASKPASS_PROGRAM */
110
111 /*
112  * The process id of the daemon listening for connections is saved here to
113  * make it easier to kill the correct daemon when necessary.
114  */
115 #define SSH_DAEMON_PID_FILE     PIDDIR "/sshd.pid"
116
117 /*
118  * The directory in user\'s home directory in which the files reside. The
119  * directory should be world-readable (though not all files are).
120  */
121 #define SSH_USER_DIR            ".ssh"
122
123 /*
124  * Relevant only when using builtin PRNG.
125  */
126 #ifndef SSH_PRNG_SEED_FILE
127 # define SSH_PRNG_SEED_FILE      SSH_USER_DIR"/prng_seed"
128 #endif /* SSH_PRNG_SEED_FILE */
129 #ifndef SSH_PRNG_COMMAND_FILE
130 # define SSH_PRNG_COMMAND_FILE   ETCDIR "/ssh_prng_cmds"
131 #endif /* SSH_PRNG_COMMAND_FILE */
132
133 /*
134  * Per-user file containing host keys of known hosts.  This file need not be
135  * readable by anyone except the user him/herself, though this does not
136  * contain anything particularly secret.
137  */
138 #define SSH_USER_HOSTFILE       "~/.ssh/known_hosts"
139 #define SSH_USER_HOSTFILE2      "~/.ssh/known_hosts2"
140
141 /*
142  * Name of the default file containing client-side authentication key. This
143  * file should only be readable by the user him/herself.
144  */
145 #define SSH_CLIENT_IDENTITY     ".ssh/identity"
146 #define SSH_CLIENT_ID_DSA       ".ssh/id_dsa"
147 #define SSH_CLIENT_ID_RSA       ".ssh/id_rsa"
148
149 /*
150  * Configuration file in user\'s home directory.  This file need not be
151  * readable by anyone but the user him/herself, but does not contain anything
152  * particularly secret.  If the user\'s home directory resides on an NFS
153  * volume where root is mapped to nobody, this may need to be world-readable.
154  */
155 #define SSH_USER_CONFFILE       ".ssh/config"
156
157 /*
158  * File containing a list of those rsa keys that permit logging in as this
159  * user.  This file need not be readable by anyone but the user him/herself,
160  * but does not contain anything particularly secret.  If the user\'s home
161  * directory resides on an NFS volume where root is mapped to nobody, this
162  * may need to be world-readable.  (This file is read by the daemon which is
163  * running as root.)
164  */
165 #define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
166 #define SSH_USER_PERMITTED_KEYS2        ".ssh/authorized_keys2"
167
168 /*
169  * Per-user and system-wide ssh "rc" files.  These files are executed with
170  * /bin/sh before starting the shell or command if they exist.  They will be
171  * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
172  * use.  xauth will be run if neither of these exists.
173  */
174 #define SSH_USER_RC             ".ssh/rc"
175 #define SSH_SYSTEM_RC           ETCDIR "/sshrc"
176
177 /*
178  * Ssh-only version of /etc/hosts.equiv.  Additionally, the daemon may use
179  * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
180  */
181 #define SSH_HOSTS_EQUIV         ETCDIR "/shosts.equiv"
182
183 /*
184  * Name of the environment variable containing the pathname of the
185  * authentication socket.
186  */
187 #define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
188
189 /*
190  * Name of the environment variable containing the pathname of the
191  * authentication socket.
192  */
193 #define SSH_AGENTPID_ENV_NAME   "SSH_AGENT_PID"
194
195 /*
196  * Default path to ssh-askpass used by ssh-add,
197  * environment variable for overwriting the default location
198  */
199 #ifndef SSH_ASKPASS_DEFAULT
200 # define SSH_ASKPASS_DEFAULT    "/usr/X11R6/bin/ssh-askpass"
201 #endif
202 #define SSH_ASKPASS_ENV         "SSH_ASKPASS"
203
204 /*
205  * Force host key length and server key length to differ by at least this
206  * many bits.  This is to make double encryption with rsaref work.
207  */
208 #define SSH_KEY_BITS_RESERVED           128
209
210 /*
211  * Length of the session key in bytes.  (Specified as 256 bits in the
212  * protocol.)
213  */
214 #define SSH_SESSION_KEY_LENGTH          32
215
216 /* Name of Kerberos service for SSH to use. */
217 #define KRB4_SERVICE_NAME               "rcmd"
218
219 /*
220  * Authentication methods.  New types can be added, but old types should not
221  * be removed for compatibility.  The maximum allowed value is 31.
222  */
223 #define SSH_AUTH_RHOSTS         1
224 #define SSH_AUTH_RSA            2
225 #define SSH_AUTH_PASSWORD       3
226 #define SSH_AUTH_RHOSTS_RSA     4
227 #define SSH_AUTH_TIS            5
228 #define SSH_AUTH_KERBEROS       6
229 #define SSH_PASS_KERBEROS_TGT   7
230                                 /* 8 to 15 are reserved */
231 #define SSH_PASS_AFS_TOKEN      21
232
233 /* Protocol flags.  These are bit masks. */
234 #define SSH_PROTOFLAG_SCREEN_NUMBER     1       /* X11 forwarding includes screen */
235 #define SSH_PROTOFLAG_HOST_IN_FWD_OPEN  2       /* forwarding opens contain host */
236
237 /*
238  * Definition of message types.  New values can be added, but old values
239  * should not be removed or without careful consideration of the consequences
240  * for compatibility.  The maximum value is 254; value 255 is reserved for
241  * future extension.
242  */
243 /* Message name */                      /* msg code */  /* arguments */
244 #define SSH_MSG_NONE                            0       /* no message */
245 #define SSH_MSG_DISCONNECT                      1       /* cause (string) */
246 #define SSH_SMSG_PUBLIC_KEY                     2       /* ck,msk,srvk,hostk */
247 #define SSH_CMSG_SESSION_KEY                    3       /* key (BIGNUM) */
248 #define SSH_CMSG_USER                           4       /* user (string) */
249 #define SSH_CMSG_AUTH_RHOSTS                    5       /* user (string) */
250 #define SSH_CMSG_AUTH_RSA                       6       /* modulus (BIGNUM) */
251 #define SSH_SMSG_AUTH_RSA_CHALLENGE             7       /* int (BIGNUM) */
252 #define SSH_CMSG_AUTH_RSA_RESPONSE              8       /* int (BIGNUM) */
253 #define SSH_CMSG_AUTH_PASSWORD                  9       /* pass (string) */
254 #define SSH_CMSG_REQUEST_PTY                    10      /* TERM, tty modes */
255 #define SSH_CMSG_WINDOW_SIZE                    11      /* row,col,xpix,ypix */
256 #define SSH_CMSG_EXEC_SHELL                     12      /* */
257 #define SSH_CMSG_EXEC_CMD                       13      /* cmd (string) */
258 #define SSH_SMSG_SUCCESS                        14      /* */
259 #define SSH_SMSG_FAILURE                        15      /* */
260 #define SSH_CMSG_STDIN_DATA                     16      /* data (string) */
261 #define SSH_SMSG_STDOUT_DATA                    17      /* data (string) */
262 #define SSH_SMSG_STDERR_DATA                    18      /* data (string) */
263 #define SSH_CMSG_EOF                            19      /* */
264 #define SSH_SMSG_EXITSTATUS                     20      /* status (int) */
265 #define SSH_MSG_CHANNEL_OPEN_CONFIRMATION       21      /* channel (int) */
266 #define SSH_MSG_CHANNEL_OPEN_FAILURE            22      /* channel (int) */
267 #define SSH_MSG_CHANNEL_DATA                    23      /* ch,data (int,str) */
268 #define SSH_MSG_CHANNEL_CLOSE                   24      /* channel (int) */
269 #define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION      25      /* channel (int) */
270 /*      SSH_CMSG_X11_REQUEST_FORWARDING         26         OBSOLETE */
271 #define SSH_SMSG_X11_OPEN                       27      /* channel (int) */
272 #define SSH_CMSG_PORT_FORWARD_REQUEST           28      /* p,host,hp (i,s,i) */
273 #define SSH_MSG_PORT_OPEN                       29      /* ch,h,p (i,s,i) */
274 #define SSH_CMSG_AGENT_REQUEST_FORWARDING       30      /* */
275 #define SSH_SMSG_AGENT_OPEN                     31      /* port (int) */
276 #define SSH_MSG_IGNORE                          32      /* string */
277 #define SSH_CMSG_EXIT_CONFIRMATION              33      /* */
278 #define SSH_CMSG_X11_REQUEST_FORWARDING         34      /* proto,data (s,s) */
279 #define SSH_CMSG_AUTH_RHOSTS_RSA                35      /* user,mod (s,mpi) */
280 #define SSH_MSG_DEBUG                           36      /* string */
281 #define SSH_CMSG_REQUEST_COMPRESSION            37      /* level 1-9 (int) */
282 #define SSH_CMSG_MAX_PACKET_SIZE                38      /* size 4k-1024k (int) */
283 #define SSH_CMSG_AUTH_TIS                       39      /* we use this for s/key */
284 #define SSH_SMSG_AUTH_TIS_CHALLENGE             40      /* challenge (string) */
285 #define SSH_CMSG_AUTH_TIS_RESPONSE              41      /* response (string) */
286 #define SSH_CMSG_AUTH_KERBEROS                  42      /* (KTEXT) */
287 #define SSH_SMSG_AUTH_KERBEROS_RESPONSE         43      /* (KTEXT) */
288 #define SSH_CMSG_HAVE_KERBEROS_TGT              44      /* credentials (s) */
289 #define SSH_CMSG_HAVE_AFS_TOKEN                 65      /* token (s) */
290
291 /*------------ definitions for login.c -------------*/
292
293 /*
294  * Returns the time when the user last logged in.  Returns 0 if the
295  * information is not available.  This must be called before record_login.
296  * The host from which the user logged in is stored in buf.
297  */
298 unsigned long
299 get_last_login_time(uid_t uid, const char *logname,
300     char *buf, unsigned int bufsize);
301
302 /*
303  * Records that the user has logged in.  This does many things normally done
304  * by login(1).
305  */
306 void
307 record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid,
308     const char *host, struct sockaddr *addr);
309
310 /*
311  * Records that the user has logged out.  This does many thigs normally done
312  * by login(1) or init.
313  */
314 void    record_logout(pid_t pid, const char *ttyname);
315
316 /*------------ definitions for sshconnect.c ----------*/
317
318 /*
319  * Opens a TCP/IP connection to the remote server on the given host.  If port
320  * is 0, the default port will be used.  If anonymous is zero, a privileged
321  * port will be allocated to make the connection. This requires super-user
322  * privileges if anonymous is false. Connection_attempts specifies the
323  * maximum number of tries, one per second.  This returns true on success,
324  * and zero on failure.  If the connection is successful, this calls
325  * packet_set_connection for the connection.
326  */
327 int
328 ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
329     u_short port, int connection_attempts,
330     int anonymous, uid_t original_real_uid,
331     const char *proxy_command);
332
333 /*
334  * Starts a dialog with the server, and authenticates the current user on the
335  * server.  This does not need any extra privileges.  The basic connection to
336  * the server must already have been established before this is called. If
337  * login fails, this function prints an error and never returns. This
338  * initializes the random state, and leaves it initialized (it will also have
339  * references from the packet module).
340  */
341
342 void
343 ssh_login(int host_key_valid, RSA * host_key, const char *host,
344     struct sockaddr * hostaddr, uid_t original_real_uid);
345
346 /*------------ Definitions for various authentication methods. -------*/
347
348 /*
349  * Tries to authenticate the user using the .rhosts file.  Returns true if
350  * authentication succeeds.  If ignore_rhosts is non-zero, this will not
351  * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
352  */
353 int     auth_rhosts(struct passwd * pw, const char *client_user);
354
355 /*
356  * Tries to authenticate the user using the .rhosts file and the host using
357  * its host key.  Returns true if authentication succeeds.
358  */
359 int
360 auth_rhosts_rsa(struct passwd * pw, const char *client_user, RSA* client_host_key);
361
362 /*
363  * Tries to authenticate the user using password.  Returns true if
364  * authentication succeeds.
365  */
366 int     auth_password(struct passwd * pw, const char *password);
367
368 /*
369  * Performs the RSA authentication dialog with the client.  This returns 0 if
370  * the client could not be authenticated, and 1 if authentication was
371  * successful.  This may exit if there is a serious protocol violation.
372  */
373 int     auth_rsa(struct passwd * pw, BIGNUM * client_n);
374
375 /*
376  * Parses an RSA key (number of bits, e, n) from a string.  Moves the pointer
377  * over the key.  Skips any whitespace at the beginning and at end.
378  */
379 int     auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
380
381 /*
382  * Returns the name of the machine at the other end of the socket.  The
383  * returned string should be freed by the caller.
384  */
385 char   *get_remote_hostname(int socket);
386
387 /*
388  * Return the canonical name of the host in the other side of the current
389  * connection (as returned by packet_get_connection).  The host name is
390  * cached, so it is efficient to call this several times.
391  */
392 const char *get_canonical_hostname(void);
393
394 /*
395  * Returns the remote IP address as an ascii string.  The value need not be
396  * freed by the caller.
397  */
398 const char *get_remote_ipaddr(void);
399
400 /* Returns the port number of the peer of the socket. */
401 int     get_peer_port(int sock);
402
403 /* Returns the port number of the remote/local host. */
404 int     get_remote_port(void);
405 int     get_local_port(void);
406
407
408 /*
409  * Performs the RSA authentication challenge-response dialog with the client,
410  * and returns true (non-zero) if the client gave the correct answer to our
411  * challenge; returns zero if the client gives a wrong answer.
412  */
413 int     auth_rsa_challenge_dialog(RSA *pk);
414
415 /*
416  * Reads a passphrase from /dev/tty with echo turned off.  Returns the
417  * passphrase (allocated with xmalloc).  Exits if EOF is encountered. If
418  * from_stdin is true, the passphrase will be read from stdin instead.
419  */
420 char   *read_passphrase(char *prompt, int from_stdin);
421
422
423 /*------------ Definitions for logging. -----------------------*/
424
425 /* Supported syslog facilities and levels. */
426 typedef enum {
427         SYSLOG_FACILITY_DAEMON,
428         SYSLOG_FACILITY_USER,
429         SYSLOG_FACILITY_AUTH,
430         SYSLOG_FACILITY_LOCAL0,
431         SYSLOG_FACILITY_LOCAL1,
432         SYSLOG_FACILITY_LOCAL2,
433         SYSLOG_FACILITY_LOCAL3,
434         SYSLOG_FACILITY_LOCAL4,
435         SYSLOG_FACILITY_LOCAL5,
436         SYSLOG_FACILITY_LOCAL6,
437         SYSLOG_FACILITY_LOCAL7
438 }       SyslogFacility;
439
440 typedef enum {
441         SYSLOG_LEVEL_QUIET,
442         SYSLOG_LEVEL_FATAL,
443         SYSLOG_LEVEL_ERROR,
444         SYSLOG_LEVEL_INFO,
445         SYSLOG_LEVEL_VERBOSE,
446         SYSLOG_LEVEL_DEBUG1,
447         SYSLOG_LEVEL_DEBUG2,
448         SYSLOG_LEVEL_DEBUG3
449 }       LogLevel;
450 /* Initializes logging. */
451 void    log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
452
453 /* Logging implementation, depending on server or client */
454 void    do_log(LogLevel level, const char *fmt, va_list args);
455
456 /* name to facility/level */
457 SyslogFacility log_facility_number(char *name);
458 LogLevel log_level_number(char *name);
459
460 /* Output a message to syslog or stderr */
461 void    fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
462 void    error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
463 void    log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
464 void    verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
465 void    debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
466 void    debug2(const char *fmt,...) __attribute__((format(printf, 1, 2)));
467 void    debug3(const char *fmt,...) __attribute__((format(printf, 1, 2)));
468
469 /* same as fatal() but w/o logging */
470 void    fatal_cleanup(void);
471
472 /*
473  * Registers a cleanup function to be called by fatal()/fatal_cleanup()
474  * before exiting. It is permissible to call fatal_remove_cleanup for the
475  * function itself from the function.
476  */
477 void    fatal_add_cleanup(void (*proc) (void *context), void *context);
478
479 /* Removes a cleanup function to be called at fatal(). */
480 void    fatal_remove_cleanup(void (*proc) (void *context), void *context);
481
482 /* ---- misc */
483
484 /*
485  * Expands tildes in the file name.  Returns data allocated by xmalloc.
486  * Warning: this calls getpw*.
487  */
488 char   *tilde_expand_filename(const char *filename, uid_t my_uid);
489
490 /* remove newline at end of string */
491 char    *chop(char *s);
492
493 /* return next token in configuration line */
494 char    *strdelim(char **s);
495
496 /* set filedescriptor to non-blocking */
497 void    set_nonblock(int fd);
498
499 /*
500  * Performs the interactive session.  This handles data transmission between
501  * the client and the program.  Note that the notion of stdin, stdout, and
502  * stderr in this function is sort of reversed: this function writes to stdin
503  * (of the child program), and reads from stdout and stderr (of the child
504  * program).
505  */
506 void    server_loop(pid_t pid, int fdin, int fdout, int fderr);
507 void    server_loop2(void);
508
509 /* Client side main loop for the interactive session. */
510 int     client_loop(int have_pty, int escape_char, int id);
511
512 /* Linked list of custom environment strings (see auth-rsa.c). */
513 struct envstring {
514         struct envstring *next;
515         char   *s;
516 };
517
518 /*
519  * Ensure all of data on socket comes through. f==read || f==write
520  */
521 ssize_t atomicio(ssize_t (*f)(), int fd, void *s, size_t n);
522
523 #ifdef KRB4
524 #include <krb.h>
525 /*
526  * Performs Kerberos v4 mutual authentication with the client. This returns 0
527  * if the client could not be authenticated, and 1 if authentication was
528  * successful.  This may exit if there is a serious protocol violation.
529  */
530 int     auth_krb4(const char *server_user, KTEXT auth, char **client);
531 int     krb4_init(uid_t uid);
532 void    krb4_cleanup_proc(void *ignore);
533 int     auth_krb4_password(struct passwd * pw, const char *password);
534
535 #ifdef AFS
536 #include <kafs.h>
537
538 /* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
539 int     auth_kerberos_tgt(struct passwd * pw, const char *string);
540 int     auth_afs_token(struct passwd * pw, const char *token_string);
541
542 int     creds_to_radix(CREDENTIALS * creds, unsigned char *buf, size_t buflen);
543 int     radix_to_creds(const char *buf, CREDENTIALS * creds);
544 #endif                          /* AFS */
545
546 #endif                          /* KRB4 */
547
548 #ifdef SKEY
549 #include <skey.h>
550 char   *skey_fake_keyinfo(char *username);
551 int     auth_skey_password(struct passwd * pw, const char *password);
552 #endif                          /* SKEY */
553
554 /* AF_UNSPEC or AF_INET or AF_INET6 */
555 extern int IPv4or6;
556
557 #ifdef USE_PAM
558 #include "auth-pam.h"
559 #endif /* USE_PAM */
560
561 #endif                          /* SSH_H */
This page took 0.141117 seconds and 5 git commands to generate.