Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * |
| 3 | * packet.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: Sat Mar 18 02:02:14 1995 ylo |
| 11 | * |
| 12 | * Interface for the packet protocol functions. |
| 13 | * |
| 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 16 | /* RCSID("$Id: packet.h,v 1.9 2000/01/14 04:45:51 damien Exp $"); */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 17 | |
| 18 | #ifndef PACKET_H |
| 19 | #define PACKET_H |
| 20 | |
Damien Miller | 3bd49ec | 1999-11-15 15:40:55 +1100 | [diff] [blame] | 21 | #include "config.h" |
| 22 | |
Damien Miller | 7f6ea02 | 1999-10-28 13:25:17 +1000 | [diff] [blame] | 23 | #ifdef HAVE_OPENSSL |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 24 | #include <openssl/bn.h> |
Damien Miller | 7f6ea02 | 1999-10-28 13:25:17 +1000 | [diff] [blame] | 25 | #endif |
| 26 | #ifdef HAVE_SSL |
| 27 | #include <ssl/bn.h> |
| 28 | #endif |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 29 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 30 | /* |
| 31 | * Sets the socket used for communication. Disables encryption until |
| 32 | * packet_set_encryption_key is called. It is permissible that fd_in and |
| 33 | * fd_out are the same descriptor; in that case it is assumed to be a socket. |
| 34 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 35 | void packet_set_connection(int fd_in, int fd_out); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 36 | |
| 37 | /* Puts the connection file descriptors into non-blocking mode. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 38 | void packet_set_nonblocking(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 39 | |
| 40 | /* Returns the file descriptor used for input. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 41 | int packet_get_connection_in(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
| 43 | /* Returns the file descriptor used for output. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 44 | int packet_get_connection_out(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 45 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 46 | /* |
| 47 | * Closes the connection (both descriptors) and clears and frees internal |
| 48 | * data structures. |
| 49 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 50 | void packet_close(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 51 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 52 | /* |
| 53 | * Causes any further packets to be encrypted using the given key. The same |
| 54 | * key is used for both sending and reception. However, both directions are |
| 55 | * encrypted independently of each other. Cipher types are defined in ssh.h. |
| 56 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 57 | void |
| 58 | packet_set_encryption_key(const unsigned char *key, unsigned int keylen, |
| 59 | int cipher_type); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 60 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 61 | /* |
| 62 | * Sets remote side protocol flags for the current connection. This can be |
| 63 | * called at any time. |
| 64 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 65 | void packet_set_protocol_flags(unsigned int flags); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 66 | |
| 67 | /* Returns the remote protocol flags set earlier by the above function. */ |
| 68 | unsigned int packet_get_protocol_flags(void); |
| 69 | |
| 70 | /* Enables compression in both directions starting from the next packet. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 71 | void packet_start_compression(int level); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 72 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 73 | /* |
| 74 | * Informs that the current session is interactive. Sets IP flags for |
| 75 | * optimal performance in interactive use. |
| 76 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 77 | void packet_set_interactive(int interactive, int keepalives); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 78 | |
| 79 | /* Returns true if the current connection is interactive. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 80 | int packet_is_interactive(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 81 | |
| 82 | /* Starts constructing a packet to send. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 83 | void packet_start(int type); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 84 | |
| 85 | /* Appends a character to the packet data. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 86 | void packet_put_char(int ch); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 87 | |
| 88 | /* Appends an integer to the packet data. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 89 | void packet_put_int(unsigned int value); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 90 | |
| 91 | /* Appends an arbitrary precision integer to packet data. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 92 | void packet_put_bignum(BIGNUM * value); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 93 | |
| 94 | /* Appends a string to packet data. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 95 | void packet_put_string(const char *buf, unsigned int len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 96 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 97 | /* |
| 98 | * Finalizes and sends the packet. If the encryption key has been set, |
| 99 | * encrypts the packet before sending. |
| 100 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 101 | void packet_send(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 102 | |
| 103 | /* Waits until a packet has been received, and returns its type. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 104 | int packet_read(int *payload_len_ptr); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 105 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 106 | /* |
| 107 | * Waits until a packet has been received, verifies that its type matches |
| 108 | * that given, and gives a fatal error and exits if there is a mismatch. |
| 109 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 110 | void packet_read_expect(int *payload_len_ptr, int type); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 111 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 112 | /* |
| 113 | * Checks if a full packet is available in the data received so far via |
| 114 | * packet_process_incoming. If so, reads the packet; otherwise returns |
| 115 | * SSH_MSG_NONE. This does not wait for data from the connection. |
| 116 | * SSH_MSG_DISCONNECT is handled specially here. Also, SSH_MSG_IGNORE |
| 117 | * messages are skipped by this function and are never returned to higher |
| 118 | * levels. |
| 119 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 120 | int packet_read_poll(int *packet_len_ptr); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 121 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 122 | /* |
| 123 | * Buffers the given amount of input characters. This is intended to be used |
| 124 | * together with packet_read_poll. |
| 125 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 126 | void packet_process_incoming(const char *buf, unsigned int len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 127 | |
| 128 | /* Returns a character (0-255) from the packet data. */ |
| 129 | unsigned int packet_get_char(void); |
| 130 | |
| 131 | /* Returns an integer from the packet data. */ |
| 132 | unsigned int packet_get_int(void); |
| 133 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 134 | /* |
| 135 | * Returns an arbitrary precision integer from the packet data. The integer |
| 136 | * must have been initialized before this call. |
| 137 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 138 | void packet_get_bignum(BIGNUM * value, int *length_ptr); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 139 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 140 | /* |
| 141 | * Returns a string from the packet data. The string is allocated using |
| 142 | * xmalloc; it is the responsibility of the calling program to free it when |
| 143 | * no longer needed. The length_ptr argument may be NULL, or point to an |
| 144 | * integer into which the length of the string is stored. |
| 145 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 146 | char *packet_get_string(unsigned int *length_ptr); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 147 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 148 | /* |
| 149 | * Logs the error in syslog using LOG_INFO, constructs and sends a disconnect |
| 150 | * packet, closes the connection, and exits. This function never returns. |
| 151 | * The error message should not contain a newline. The total length of the |
| 152 | * message must not exceed 1024 bytes. |
| 153 | */ |
Damien Miller | 68e45de | 1999-12-27 23:54:55 +1100 | [diff] [blame] | 154 | void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 155 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 156 | /* |
| 157 | * Sends a diagnostic message to the other side. This message can be sent at |
| 158 | * any time (but not while constructing another message). The message is |
| 159 | * printed immediately, but only if the client is being executed in verbose |
| 160 | * mode. These messages are primarily intended to ease debugging |
| 161 | * authentication problems. The total length of the message must not exceed |
| 162 | * 1024 bytes. This will automatically call packet_write_wait. If the |
| 163 | * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG, |
| 164 | * this will do nothing. |
| 165 | */ |
Damien Miller | 68e45de | 1999-12-27 23:54:55 +1100 | [diff] [blame] | 166 | void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 167 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 168 | /* Checks if there is any buffered output, and tries to write some of the output. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 169 | void packet_write_poll(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 170 | |
| 171 | /* Waits until all pending output data has been written. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 172 | void packet_write_wait(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 173 | |
| 174 | /* Returns true if there is buffered data to write to the connection. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 175 | int packet_have_data_to_write(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 176 | |
| 177 | /* Returns true if there is not too much data to write to the connection. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 178 | int packet_not_very_much_data_to_write(void); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 179 | |
Damien Miller | 6162d12 | 1999-11-21 13:23:52 +1100 | [diff] [blame] | 180 | /* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */ |
| 181 | extern int max_packet_size; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 182 | int packet_set_maxsize(int s); |
Damien Miller | 6162d12 | 1999-11-21 13:23:52 +1100 | [diff] [blame] | 183 | #define packet_get_maxsize() max_packet_size |
| 184 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 185 | /* Stores tty modes from the fd into current packet. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 186 | void tty_make_modes(int fd); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 187 | |
| 188 | /* Parses tty modes for the fd from the current packet. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 189 | void tty_parse_modes(int fd, int *n_bytes_ptr); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 190 | |
| 191 | #define packet_integrity_check(payload_len, expected_len, type) \ |
| 192 | do { \ |
| 193 | int _p = (payload_len), _e = (expected_len); \ |
| 194 | if (_p != _e) { \ |
| 195 | log("Packet integrity error (%d != %d) at %s:%d", \ |
| 196 | _p, _e, __FILE__, __LINE__); \ |
| 197 | packet_disconnect("Packet integrity error. (%d)", (type)); \ |
| 198 | } \ |
| 199 | } while (0) |
| 200 | |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 201 | /* remote host is connected via a socket/ipv4 */ |
| 202 | int packet_connection_is_on_socket(void); |
| 203 | int packet_connection_is_ipv4(void); |
| 204 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 205 | #endif /* PACKET_H */ |