blob: b5fc196efec471fb649e2c664579d0d7961399ab [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 * packet.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: Sat Mar 18 02:02:14 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * Interface for the packet protocol functions.
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 Miller5f056372000-04-16 12:31:48 +100016/* RCSID("$Id: packet.h,v 1.15 2000/04/16 02:31:51 damien Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef PACKET_H
19#define PACKET_H
20
21#include <openssl/bn.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022
Damien Miller5428f641999-11-25 11:54:57 +110023/*
24 * Sets the socket used for communication. Disables encryption until
25 * packet_set_encryption_key is called. It is permissible that fd_in and
26 * fd_out are the same descriptor; in that case it is assumed to be a socket.
27 */
Damien Miller95def091999-11-25 00:26:21 +110028void packet_set_connection(int fd_in, int fd_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
30/* Puts the connection file descriptors into non-blocking mode. */
Damien Miller95def091999-11-25 00:26:21 +110031void packet_set_nonblocking(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100032
33/* Returns the file descriptor used for input. */
Damien Miller95def091999-11-25 00:26:21 +110034int packet_get_connection_in(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035
36/* Returns the file descriptor used for output. */
Damien Miller95def091999-11-25 00:26:21 +110037int packet_get_connection_out(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
Damien Miller5428f641999-11-25 11:54:57 +110039/*
40 * Closes the connection (both descriptors) and clears and frees internal
41 * data structures.
42 */
Damien Miller95def091999-11-25 00:26:21 +110043void packet_close(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Damien Miller5428f641999-11-25 11:54:57 +110045/*
46 * Causes any further packets to be encrypted using the given key. The same
47 * key is used for both sending and reception. However, both directions are
48 * encrypted independently of each other. Cipher types are defined in ssh.h.
49 */
Damien Miller4af51302000-04-16 11:18:38 +100050void
Damien Miller95def091999-11-25 00:26:21 +110051packet_set_encryption_key(const unsigned char *key, unsigned int keylen,
52 int cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller5428f641999-11-25 11:54:57 +110054/*
55 * Sets remote side protocol flags for the current connection. This can be
56 * called at any time.
57 */
Damien Miller95def091999-11-25 00:26:21 +110058void packet_set_protocol_flags(unsigned int flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
60/* Returns the remote protocol flags set earlier by the above function. */
61unsigned int packet_get_protocol_flags(void);
62
63/* Enables compression in both directions starting from the next packet. */
Damien Miller95def091999-11-25 00:26:21 +110064void packet_start_compression(int level);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Informs that the current session is interactive. Sets IP flags for
68 * optimal performance in interactive use.
69 */
Damien Miller95def091999-11-25 00:26:21 +110070void packet_set_interactive(int interactive, int keepalives);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
72/* Returns true if the current connection is interactive. */
Damien Miller95def091999-11-25 00:26:21 +110073int packet_is_interactive(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75/* Starts constructing a packet to send. */
Damien Miller95def091999-11-25 00:26:21 +110076void packet_start(int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
78/* Appends a character to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110079void packet_put_char(int ch);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
81/* Appends an integer to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110082void packet_put_int(unsigned int value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
84/* Appends an arbitrary precision integer to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110085void packet_put_bignum(BIGNUM * value);
Damien Miller33b13562000-04-04 14:38:59 +100086void packet_put_bignum2(BIGNUM * value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
88/* Appends a string to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110089void packet_put_string(const char *buf, unsigned int len);
Damien Miller33b13562000-04-04 14:38:59 +100090void packet_put_cstring(const char *str);
91void packet_put_raw(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Finalizes and sends the packet. If the encryption key has been set,
95 * encrypts the packet before sending.
96 */
Damien Miller95def091999-11-25 00:26:21 +110097void packet_send(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
99/* Waits until a packet has been received, and returns its type. */
Damien Miller95def091999-11-25 00:26:21 +1100100int packet_read(int *payload_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Waits until a packet has been received, verifies that its type matches
104 * that given, and gives a fatal error and exits if there is a mismatch.
105 */
Damien Miller95def091999-11-25 00:26:21 +1100106void packet_read_expect(int *payload_len_ptr, int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Checks if a full packet is available in the data received so far via
110 * packet_process_incoming. If so, reads the packet; otherwise returns
111 * SSH_MSG_NONE. This does not wait for data from the connection.
112 * SSH_MSG_DISCONNECT is handled specially here. Also, SSH_MSG_IGNORE
113 * messages are skipped by this function and are never returned to higher
114 * levels.
115 */
Damien Miller95def091999-11-25 00:26:21 +1100116int packet_read_poll(int *packet_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller5428f641999-11-25 11:54:57 +1100118/*
119 * Buffers the given amount of input characters. This is intended to be used
120 * together with packet_read_poll.
121 */
Damien Miller95def091999-11-25 00:26:21 +1100122void packet_process_incoming(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123
124/* Returns a character (0-255) from the packet data. */
125unsigned int packet_get_char(void);
126
127/* Returns an integer from the packet data. */
128unsigned int packet_get_int(void);
129
Damien Miller5428f641999-11-25 11:54:57 +1100130/*
131 * Returns an arbitrary precision integer from the packet data. The integer
132 * must have been initialized before this call.
133 */
Damien Miller95def091999-11-25 00:26:21 +1100134void packet_get_bignum(BIGNUM * value, int *length_ptr);
Damien Miller33b13562000-04-04 14:38:59 +1000135void packet_get_bignum2(BIGNUM * value, int *length_ptr);
136char *packet_get_raw(int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
139 * Returns a string from the packet data. The string is allocated using
140 * xmalloc; it is the responsibility of the calling program to free it when
141 * no longer needed. The length_ptr argument may be NULL, or point to an
142 * integer into which the length of the string is stored.
143 */
Damien Miller95def091999-11-25 00:26:21 +1100144char *packet_get_string(unsigned int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145
Damien Miller5428f641999-11-25 11:54:57 +1100146/*
147 * Logs the error in syslog using LOG_INFO, constructs and sends a disconnect
148 * packet, closes the connection, and exits. This function never returns.
149 * The error message should not contain a newline. The total length of the
150 * message must not exceed 1024 bytes.
151 */
Damien Miller7684ee12000-03-17 23:40:15 +1100152void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * Sends a diagnostic message to the other side. This message can be sent at
156 * any time (but not while constructing another message). The message is
157 * printed immediately, but only if the client is being executed in verbose
158 * mode. These messages are primarily intended to ease debugging
159 * authentication problems. The total length of the message must not exceed
160 * 1024 bytes. This will automatically call packet_write_wait. If the
161 * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG,
162 * this will do nothing.
163 */
Damien Miller7684ee12000-03-17 23:40:15 +1100164void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Damien Miller5428f641999-11-25 11:54:57 +1100166/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Miller95def091999-11-25 00:26:21 +1100167void packet_write_poll(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
169/* Waits until all pending output data has been written. */
Damien Miller95def091999-11-25 00:26:21 +1100170void packet_write_wait(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
172/* Returns true if there is buffered data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100173int packet_have_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
175/* Returns true if there is not too much data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100176int packet_not_very_much_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
Damien Miller6162d121999-11-21 13:23:52 +1100178/* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */
179extern int max_packet_size;
Damien Miller95def091999-11-25 00:26:21 +1100180int packet_set_maxsize(int s);
Damien Miller6162d121999-11-21 13:23:52 +1100181#define packet_get_maxsize() max_packet_size
182
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183/* Stores tty modes from the fd into current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100184void tty_make_modes(int fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
186/* Parses tty modes for the fd from the current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100187void tty_parse_modes(int fd, int *n_bytes_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188
189#define packet_integrity_check(payload_len, expected_len, type) \
190do { \
191 int _p = (payload_len), _e = (expected_len); \
192 if (_p != _e) { \
193 log("Packet integrity error (%d != %d) at %s:%d", \
194 _p, _e, __FILE__, __LINE__); \
195 packet_disconnect("Packet integrity error. (%d)", (type)); \
196 } \
197} while (0)
198
Damien Miller4af51302000-04-16 11:18:38 +1000199#define packet_done() \
200do { \
201 int _len = packet_remaining(); \
202 if (_len > 0) { \
203 log("Packet integrity error (%d bytes remaining) at %s:%d", \
204 _len ,__FILE__, __LINE__); \
205 packet_disconnect("Packet integrity error."); \
206 } \
207} while (0)
208
Damien Miller34132e52000-01-14 15:45:46 +1100209/* remote host is connected via a socket/ipv4 */
210int packet_connection_is_on_socket(void);
211int packet_connection_is_ipv4(void);
212
Damien Miller33b13562000-04-04 14:38:59 +1000213/* enable SSH2 packet format */
214void packet_set_ssh2_format(void);
215
Damien Miller4af51302000-04-16 11:18:38 +1000216/* returns remaining payload bytes */
217int packet_remaining(void);
218
Damien Miller95def091999-11-25 00:26:21 +1100219#endif /* PACKET_H */