blob: 39c0edea2cf9635cdc3a6d47a4e1c64b17abc3fb [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
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 Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Miller33b13562000-04-04 14:38:59 +100016/* RCSID("$Id: packet.h,v 1.11 2000/04/04 04:39:03 damien Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef PACKET_H
19#define PACKET_H
20
Damien Miller3bd49ec1999-11-15 15:40:55 +110021#include "config.h"
22
Damien Miller7f6ea021999-10-28 13:25:17 +100023#ifdef HAVE_OPENSSL
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include <openssl/bn.h>
Damien Miller7f6ea021999-10-28 13:25:17 +100025#endif
26#ifdef HAVE_SSL
27#include <ssl/bn.h>
28#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
Damien Miller5428f641999-11-25 11:54:57 +110030/*
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 Miller95def091999-11-25 00:26:21 +110035void packet_set_connection(int fd_in, int fd_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37/* Puts the connection file descriptors into non-blocking mode. */
Damien Miller95def091999-11-25 00:26:21 +110038void packet_set_nonblocking(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40/* Returns the file descriptor used for input. */
Damien Miller95def091999-11-25 00:26:21 +110041int packet_get_connection_in(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43/* Returns the file descriptor used for output. */
Damien Miller95def091999-11-25 00:26:21 +110044int packet_get_connection_out(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller5428f641999-11-25 11:54:57 +110046/*
47 * Closes the connection (both descriptors) and clears and frees internal
48 * data structures.
49 */
Damien Miller95def091999-11-25 00:26:21 +110050void packet_close(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051
Damien Miller5428f641999-11-25 11:54:57 +110052/*
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 Miller95def091999-11-25 00:26:21 +110057void
58packet_set_encryption_key(const unsigned char *key, unsigned int keylen,
59 int cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller5428f641999-11-25 11:54:57 +110061/*
62 * Sets remote side protocol flags for the current connection. This can be
63 * called at any time.
64 */
Damien Miller95def091999-11-25 00:26:21 +110065void packet_set_protocol_flags(unsigned int flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
67/* Returns the remote protocol flags set earlier by the above function. */
68unsigned int packet_get_protocol_flags(void);
69
70/* Enables compression in both directions starting from the next packet. */
Damien Miller95def091999-11-25 00:26:21 +110071void packet_start_compression(int level);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Informs that the current session is interactive. Sets IP flags for
75 * optimal performance in interactive use.
76 */
Damien Miller95def091999-11-25 00:26:21 +110077void packet_set_interactive(int interactive, int keepalives);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
79/* Returns true if the current connection is interactive. */
Damien Miller95def091999-11-25 00:26:21 +110080int packet_is_interactive(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
82/* Starts constructing a packet to send. */
Damien Miller95def091999-11-25 00:26:21 +110083void packet_start(int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
85/* Appends a character to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110086void packet_put_char(int ch);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
88/* Appends an integer to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110089void packet_put_int(unsigned int value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
91/* Appends an arbitrary precision integer to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110092void packet_put_bignum(BIGNUM * value);
Damien Miller33b13562000-04-04 14:38:59 +100093void packet_put_bignum2(BIGNUM * value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
95/* Appends a string to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110096void packet_put_string(const char *buf, unsigned int len);
Damien Miller33b13562000-04-04 14:38:59 +100097void packet_put_cstring(const char *str);
98void packet_put_raw(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Finalizes and sends the packet. If the encryption key has been set,
102 * encrypts the packet before sending.
103 */
Damien Miller95def091999-11-25 00:26:21 +1100104void packet_send(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
106/* Waits until a packet has been received, and returns its type. */
Damien Miller95def091999-11-25 00:26:21 +1100107int packet_read(int *payload_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * Waits until a packet has been received, verifies that its type matches
111 * that given, and gives a fatal error and exits if there is a mismatch.
112 */
Damien Miller95def091999-11-25 00:26:21 +1100113void packet_read_expect(int *payload_len_ptr, int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Checks if a full packet is available in the data received so far via
117 * packet_process_incoming. If so, reads the packet; otherwise returns
118 * SSH_MSG_NONE. This does not wait for data from the connection.
119 * SSH_MSG_DISCONNECT is handled specially here. Also, SSH_MSG_IGNORE
120 * messages are skipped by this function and are never returned to higher
121 * levels.
122 */
Damien Miller95def091999-11-25 00:26:21 +1100123int packet_read_poll(int *packet_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Buffers the given amount of input characters. This is intended to be used
127 * together with packet_read_poll.
128 */
Damien Miller95def091999-11-25 00:26:21 +1100129void packet_process_incoming(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
131/* Returns a character (0-255) from the packet data. */
132unsigned int packet_get_char(void);
133
134/* Returns an integer from the packet data. */
135unsigned int packet_get_int(void);
136
Damien Miller5428f641999-11-25 11:54:57 +1100137/*
138 * Returns an arbitrary precision integer from the packet data. The integer
139 * must have been initialized before this call.
140 */
Damien Miller95def091999-11-25 00:26:21 +1100141void packet_get_bignum(BIGNUM * value, int *length_ptr);
Damien Miller33b13562000-04-04 14:38:59 +1000142void packet_get_bignum2(BIGNUM * value, int *length_ptr);
143char *packet_get_raw(int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller5428f641999-11-25 11:54:57 +1100145/*
146 * Returns a string from the packet data. The string is allocated using
147 * xmalloc; it is the responsibility of the calling program to free it when
148 * no longer needed. The length_ptr argument may be NULL, or point to an
149 * integer into which the length of the string is stored.
150 */
Damien Miller95def091999-11-25 00:26:21 +1100151char *packet_get_string(unsigned int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Damien Miller5428f641999-11-25 11:54:57 +1100153/*
154 * Logs the error in syslog using LOG_INFO, constructs and sends a disconnect
155 * packet, closes the connection, and exits. This function never returns.
156 * The error message should not contain a newline. The total length of the
157 * message must not exceed 1024 bytes.
158 */
Damien Miller7684ee12000-03-17 23:40:15 +1100159void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
162 * Sends a diagnostic message to the other side. This message can be sent at
163 * any time (but not while constructing another message). The message is
164 * printed immediately, but only if the client is being executed in verbose
165 * mode. These messages are primarily intended to ease debugging
166 * authentication problems. The total length of the message must not exceed
167 * 1024 bytes. This will automatically call packet_write_wait. If the
168 * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG,
169 * this will do nothing.
170 */
Damien Miller7684ee12000-03-17 23:40:15 +1100171void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Miller5428f641999-11-25 11:54:57 +1100173/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Miller95def091999-11-25 00:26:21 +1100174void packet_write_poll(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
176/* Waits until all pending output data has been written. */
Damien Miller95def091999-11-25 00:26:21 +1100177void packet_write_wait(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178
179/* Returns true if there is buffered data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100180int packet_have_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
182/* Returns true if there is not too much data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100183int packet_not_very_much_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Damien Miller6162d121999-11-21 13:23:52 +1100185/* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */
186extern int max_packet_size;
Damien Miller95def091999-11-25 00:26:21 +1100187int packet_set_maxsize(int s);
Damien Miller6162d121999-11-21 13:23:52 +1100188#define packet_get_maxsize() max_packet_size
189
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190/* Stores tty modes from the fd into current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100191void tty_make_modes(int fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
193/* Parses tty modes for the fd from the current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100194void tty_parse_modes(int fd, int *n_bytes_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195
196#define packet_integrity_check(payload_len, expected_len, type) \
197do { \
198 int _p = (payload_len), _e = (expected_len); \
199 if (_p != _e) { \
200 log("Packet integrity error (%d != %d) at %s:%d", \
201 _p, _e, __FILE__, __LINE__); \
202 packet_disconnect("Packet integrity error. (%d)", (type)); \
203 } \
204} while (0)
205
Damien Miller34132e52000-01-14 15:45:46 +1100206/* remote host is connected via a socket/ipv4 */
207int packet_connection_is_on_socket(void);
208int packet_connection_is_ipv4(void);
209
Damien Miller33b13562000-04-04 14:38:59 +1000210/* enable SSH2 packet format */
211void packet_set_ssh2_format(void);
212
Damien Miller95def091999-11-25 00:26:21 +1100213#endif /* PACKET_H */