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