blob: 93495bbfcd8841b9849a91f04b17778f7abf2e2b [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 Miller4af51302000-04-16 11:18:38 +100016/* RCSID("$Id: packet.h,v 1.14 2000/04/16 01:18:44 damien Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef PACKET_H
19#define PACKET_H
20
Damien Miller7f6ea021999-10-28 13:25:17 +100021#ifdef HAVE_OPENSSL
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022#include <openssl/bn.h>
Damien Miller7f6ea021999-10-28 13:25:17 +100023#endif
24#ifdef HAVE_SSL
25#include <ssl/bn.h>
26#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
Damien Miller5428f641999-11-25 11:54:57 +110028/*
29 * Sets the socket used for communication. Disables encryption until
30 * packet_set_encryption_key is called. It is permissible that fd_in and
31 * fd_out are the same descriptor; in that case it is assumed to be a socket.
32 */
Damien Miller95def091999-11-25 00:26:21 +110033void packet_set_connection(int fd_in, int fd_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
35/* Puts the connection file descriptors into non-blocking mode. */
Damien Miller95def091999-11-25 00:26:21 +110036void packet_set_nonblocking(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38/* Returns the file descriptor used for input. */
Damien Miller95def091999-11-25 00:26:21 +110039int packet_get_connection_in(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41/* Returns the file descriptor used for output. */
Damien Miller95def091999-11-25 00:26:21 +110042int packet_get_connection_out(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Damien Miller5428f641999-11-25 11:54:57 +110044/*
45 * Closes the connection (both descriptors) and clears and frees internal
46 * data structures.
47 */
Damien Miller95def091999-11-25 00:26:21 +110048void packet_close(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * Causes any further packets to be encrypted using the given key. The same
52 * key is used for both sending and reception. However, both directions are
53 * encrypted independently of each other. Cipher types are defined in ssh.h.
54 */
Damien Miller4af51302000-04-16 11:18:38 +100055void
Damien Miller95def091999-11-25 00:26:21 +110056packet_set_encryption_key(const unsigned char *key, unsigned int keylen,
57 int cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Damien Miller5428f641999-11-25 11:54:57 +110059/*
60 * Sets remote side protocol flags for the current connection. This can be
61 * called at any time.
62 */
Damien Miller95def091999-11-25 00:26:21 +110063void packet_set_protocol_flags(unsigned int flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
65/* Returns the remote protocol flags set earlier by the above function. */
66unsigned int packet_get_protocol_flags(void);
67
68/* Enables compression in both directions starting from the next packet. */
Damien Miller95def091999-11-25 00:26:21 +110069void packet_start_compression(int level);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Damien Miller5428f641999-11-25 11:54:57 +110071/*
72 * Informs that the current session is interactive. Sets IP flags for
73 * optimal performance in interactive use.
74 */
Damien Miller95def091999-11-25 00:26:21 +110075void packet_set_interactive(int interactive, int keepalives);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
77/* Returns true if the current connection is interactive. */
Damien Miller95def091999-11-25 00:26:21 +110078int packet_is_interactive(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
80/* Starts constructing a packet to send. */
Damien Miller95def091999-11-25 00:26:21 +110081void packet_start(int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
83/* Appends a character to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110084void packet_put_char(int ch);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
86/* Appends an integer to the packet data. */
Damien Miller95def091999-11-25 00:26:21 +110087void packet_put_int(unsigned int value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
89/* Appends an arbitrary precision integer to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110090void packet_put_bignum(BIGNUM * value);
Damien Miller33b13562000-04-04 14:38:59 +100091void packet_put_bignum2(BIGNUM * value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
93/* Appends a string to packet data. */
Damien Miller95def091999-11-25 00:26:21 +110094void packet_put_string(const char *buf, unsigned int len);
Damien Miller33b13562000-04-04 14:38:59 +100095void packet_put_cstring(const char *str);
96void packet_put_raw(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller5428f641999-11-25 11:54:57 +110098/*
99 * Finalizes and sends the packet. If the encryption key has been set,
100 * encrypts the packet before sending.
101 */
Damien Miller95def091999-11-25 00:26:21 +1100102void packet_send(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
104/* Waits until a packet has been received, and returns its type. */
Damien Miller95def091999-11-25 00:26:21 +1100105int packet_read(int *payload_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Waits until a packet has been received, verifies that its type matches
109 * that given, and gives a fatal error and exits if there is a mismatch.
110 */
Damien Miller95def091999-11-25 00:26:21 +1100111void packet_read_expect(int *payload_len_ptr, int type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
Damien Miller5428f641999-11-25 11:54:57 +1100113/*
114 * Checks if a full packet is available in the data received so far via
115 * packet_process_incoming. If so, reads the packet; otherwise returns
116 * SSH_MSG_NONE. This does not wait for data from the connection.
117 * SSH_MSG_DISCONNECT is handled specially here. Also, SSH_MSG_IGNORE
118 * messages are skipped by this function and are never returned to higher
119 * levels.
120 */
Damien Miller95def091999-11-25 00:26:21 +1100121int packet_read_poll(int *packet_len_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * Buffers the given amount of input characters. This is intended to be used
125 * together with packet_read_poll.
126 */
Damien Miller95def091999-11-25 00:26:21 +1100127void packet_process_incoming(const char *buf, unsigned int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
129/* Returns a character (0-255) from the packet data. */
130unsigned int packet_get_char(void);
131
132/* Returns an integer from the packet data. */
133unsigned int packet_get_int(void);
134
Damien Miller5428f641999-11-25 11:54:57 +1100135/*
136 * Returns an arbitrary precision integer from the packet data. The integer
137 * must have been initialized before this call.
138 */
Damien Miller95def091999-11-25 00:26:21 +1100139void packet_get_bignum(BIGNUM * value, int *length_ptr);
Damien Miller33b13562000-04-04 14:38:59 +1000140void packet_get_bignum2(BIGNUM * value, int *length_ptr);
141char *packet_get_raw(int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * Returns a string from the packet data. The string is allocated using
145 * xmalloc; it is the responsibility of the calling program to free it when
146 * no longer needed. The length_ptr argument may be NULL, or point to an
147 * integer into which the length of the string is stored.
148 */
Damien Miller95def091999-11-25 00:26:21 +1100149char *packet_get_string(unsigned int *length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150
Damien Miller5428f641999-11-25 11:54:57 +1100151/*
152 * Logs the error in syslog using LOG_INFO, constructs and sends a disconnect
153 * packet, closes the connection, and exits. This function never returns.
154 * The error message should not contain a newline. The total length of the
155 * message must not exceed 1024 bytes.
156 */
Damien Miller7684ee12000-03-17 23:40:15 +1100157void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * Sends a diagnostic message to the other side. This message can be sent at
161 * any time (but not while constructing another message). The message is
162 * printed immediately, but only if the client is being executed in verbose
163 * mode. These messages are primarily intended to ease debugging
164 * authentication problems. The total length of the message must not exceed
165 * 1024 bytes. This will automatically call packet_write_wait. If the
166 * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG,
167 * this will do nothing.
168 */
Damien Miller7684ee12000-03-17 23:40:15 +1100169void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
Damien Miller5428f641999-11-25 11:54:57 +1100171/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Miller95def091999-11-25 00:26:21 +1100172void packet_write_poll(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
174/* Waits until all pending output data has been written. */
Damien Miller95def091999-11-25 00:26:21 +1100175void packet_write_wait(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
177/* Returns true if there is buffered data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100178int packet_have_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
180/* Returns true if there is not too much data to write to the connection. */
Damien Miller95def091999-11-25 00:26:21 +1100181int packet_not_very_much_data_to_write(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Miller6162d121999-11-21 13:23:52 +1100183/* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */
184extern int max_packet_size;
Damien Miller95def091999-11-25 00:26:21 +1100185int packet_set_maxsize(int s);
Damien Miller6162d121999-11-21 13:23:52 +1100186#define packet_get_maxsize() max_packet_size
187
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188/* Stores tty modes from the fd into current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100189void tty_make_modes(int fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
191/* Parses tty modes for the fd from the current packet. */
Damien Miller95def091999-11-25 00:26:21 +1100192void tty_parse_modes(int fd, int *n_bytes_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
194#define packet_integrity_check(payload_len, expected_len, type) \
195do { \
196 int _p = (payload_len), _e = (expected_len); \
197 if (_p != _e) { \
198 log("Packet integrity error (%d != %d) at %s:%d", \
199 _p, _e, __FILE__, __LINE__); \
200 packet_disconnect("Packet integrity error. (%d)", (type)); \
201 } \
202} while (0)
203
Damien Miller4af51302000-04-16 11:18:38 +1000204#define packet_done() \
205do { \
206 int _len = packet_remaining(); \
207 if (_len > 0) { \
208 log("Packet integrity error (%d bytes remaining) at %s:%d", \
209 _len ,__FILE__, __LINE__); \
210 packet_disconnect("Packet integrity error."); \
211 } \
212} while (0)
213
Damien Miller34132e52000-01-14 15:45:46 +1100214/* remote host is connected via a socket/ipv4 */
215int packet_connection_is_on_socket(void);
216int packet_connection_is_ipv4(void);
217
Damien Miller33b13562000-04-04 14:38:59 +1000218/* enable SSH2 packet format */
219void packet_set_ssh2_format(void);
220
Damien Miller4af51302000-04-16 11:18:38 +1000221/* returns remaining payload bytes */
222int packet_remaining(void);
223
Damien Miller95def091999-11-25 00:26:21 +1100224#endif /* PACKET_H */