[BACK]Return to packet.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/packet.h, Revision 1.15

1.1       deraadt     1: /*
1.15    ! markus      2:  *
1.5       deraadt     3:  * packet.h
1.15    ! markus      4:  *
1.5       deraadt     5:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
1.15    ! markus      6:  *
1.5       deraadt     7:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      8:  *                    All rights reserved
1.15    ! markus      9:  *
1.5       deraadt    10:  * Created: Sat Mar 18 02:02:14 1995 ylo
1.15    ! markus     11:  *
1.5       deraadt    12:  * Interface for the packet protocol functions.
1.15    ! markus     13:  *
1.5       deraadt    14:  */
1.1       deraadt    15:
1.15    ! markus     16: /* RCSID("$Id: packet.h,v 1.14 2000/04/14 10:09:15 markus Exp $"); */
1.1       deraadt    17:
                     18: #ifndef PACKET_H
                     19: #define PACKET_H
                     20:
1.13      markus     21: #include <openssl/bn.h>
1.1       deraadt    22:
1.6       markus     23: /*
                     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:  */
1.5       deraadt    28: void    packet_set_connection(int fd_in, int fd_out);
1.1       deraadt    29:
                     30: /* Puts the connection file descriptors into non-blocking mode. */
1.5       deraadt    31: void    packet_set_nonblocking(void);
1.1       deraadt    32:
                     33: /* Returns the file descriptor used for input. */
1.5       deraadt    34: int     packet_get_connection_in(void);
1.1       deraadt    35:
                     36: /* Returns the file descriptor used for output. */
1.5       deraadt    37: int     packet_get_connection_out(void);
1.1       deraadt    38:
1.6       markus     39: /*
                     40:  * Closes the connection (both descriptors) and clears and frees internal
                     41:  * data structures.
                     42:  */
1.5       deraadt    43: void    packet_close(void);
1.1       deraadt    44:
1.6       markus     45: /*
                     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:  */
1.15    ! markus     50: void
1.5       deraadt    51: packet_set_encryption_key(const unsigned char *key, unsigned int keylen,
                     52:     int cipher_type);
1.1       deraadt    53:
1.6       markus     54: /*
                     55:  * Sets remote side protocol flags for the current connection.  This can be
                     56:  * called at any time.
                     57:  */
1.5       deraadt    58: void    packet_set_protocol_flags(unsigned int flags);
1.1       deraadt    59:
                     60: /* Returns the remote protocol flags set earlier by the above function. */
                     61: unsigned int packet_get_protocol_flags(void);
                     62:
                     63: /* Enables compression in both directions starting from the next packet. */
1.5       deraadt    64: void    packet_start_compression(int level);
1.1       deraadt    65:
1.6       markus     66: /*
                     67:  * Informs that the current session is interactive.  Sets IP flags for
                     68:  * optimal performance in interactive use.
                     69:  */
1.5       deraadt    70: void    packet_set_interactive(int interactive, int keepalives);
1.1       deraadt    71:
                     72: /* Returns true if the current connection is interactive. */
1.5       deraadt    73: int     packet_is_interactive(void);
1.1       deraadt    74:
                     75: /* Starts constructing a packet to send. */
1.5       deraadt    76: void    packet_start(int type);
1.1       deraadt    77:
                     78: /* Appends a character to the packet data. */
1.5       deraadt    79: void    packet_put_char(int ch);
1.1       deraadt    80:
                     81: /* Appends an integer to the packet data. */
1.5       deraadt    82: void    packet_put_int(unsigned int value);
1.1       deraadt    83:
                     84: /* Appends an arbitrary precision integer to packet data. */
1.5       deraadt    85: void    packet_put_bignum(BIGNUM * value);
1.11      markus     86: void    packet_put_bignum2(BIGNUM * value);
1.1       deraadt    87:
                     88: /* Appends a string to packet data. */
1.5       deraadt    89: void    packet_put_string(const char *buf, unsigned int len);
1.11      markus     90: void    packet_put_cstring(const char *str);
                     91: void    packet_put_raw(const char *buf, unsigned int len);
1.1       deraadt    92:
1.6       markus     93: /*
                     94:  * Finalizes and sends the packet.  If the encryption key has been set,
                     95:  * encrypts the packet before sending.
                     96:  */
1.5       deraadt    97: void    packet_send(void);
1.1       deraadt    98:
                     99: /* Waits until a packet has been received, and returns its type. */
1.5       deraadt   100: int     packet_read(int *payload_len_ptr);
1.1       deraadt   101:
1.6       markus    102: /*
                    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:  */
1.5       deraadt   106: void    packet_read_expect(int *payload_len_ptr, int type);
1.1       deraadt   107:
1.6       markus    108: /*
                    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:  */
1.5       deraadt   116: int     packet_read_poll(int *packet_len_ptr);
1.1       deraadt   117:
1.6       markus    118: /*
                    119:  * Buffers the given amount of input characters.  This is intended to be used
                    120:  * together with packet_read_poll.
                    121:  */
1.5       deraadt   122: void    packet_process_incoming(const char *buf, unsigned int len);
1.1       deraadt   123:
                    124: /* Returns a character (0-255) from the packet data. */
                    125: unsigned int packet_get_char(void);
                    126:
                    127: /* Returns an integer from the packet data. */
                    128: unsigned int packet_get_int(void);
                    129:
1.6       markus    130: /*
                    131:  * Returns an arbitrary precision integer from the packet data.  The integer
                    132:  * must have been initialized before this call.
                    133:  */
1.5       deraadt   134: void    packet_get_bignum(BIGNUM * value, int *length_ptr);
1.12      markus    135: void    packet_get_bignum2(BIGNUM * value, int *length_ptr);
1.11      markus    136: char   *packet_get_raw(int *length_ptr);
1.1       deraadt   137:
1.6       markus    138: /*
                    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:  */
1.5       deraadt   144: char   *packet_get_string(unsigned int *length_ptr);
1.1       deraadt   145:
1.6       markus    146: /*
                    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:  */
1.10      markus    152: void    packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
1.1       deraadt   153:
1.6       markus    154: /*
                    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:  */
1.10      markus    164: void    packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
1.1       deraadt   165:
1.6       markus    166: /* Checks if there is any buffered output, and tries to write some of the output. */
1.5       deraadt   167: void    packet_write_poll(void);
1.1       deraadt   168:
                    169: /* Waits until all pending output data has been written. */
1.5       deraadt   170: void    packet_write_wait(void);
1.1       deraadt   171:
                    172: /* Returns true if there is buffered data to write to the connection. */
1.5       deraadt   173: int     packet_have_data_to_write(void);
1.1       deraadt   174:
                    175: /* Returns true if there is not too much data to write to the connection. */
1.5       deraadt   176: int     packet_not_very_much_data_to_write(void);
1.4       markus    177:
                    178: /* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */
                    179: extern int max_packet_size;
1.5       deraadt   180: int     packet_set_maxsize(int s);
1.4       markus    181: #define packet_get_maxsize() max_packet_size
1.1       deraadt   182:
                    183: /* Stores tty modes from the fd into current packet. */
1.5       deraadt   184: void    tty_make_modes(int fd);
1.1       deraadt   185:
                    186: /* Parses tty modes for the fd from the current packet. */
1.5       deraadt   187: void    tty_parse_modes(int fd, int *n_bytes_ptr);
1.1       deraadt   188:
                    189: #define packet_integrity_check(payload_len, expected_len, type) \
                    190: do { \
                    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)
1.8       markus    198:
1.14      markus    199: #define packet_done() \
                    200: do { \
                    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:
1.9       markus    209: /* remote host is connected via a socket/ipv4 */
1.8       markus    210: int    packet_connection_is_on_socket(void);
1.9       markus    211: int    packet_connection_is_ipv4(void);
1.12      markus    212:
                    213: /* enable SSH2 packet format */
                    214: void   packet_set_ssh2_format(void);
1.14      markus    215:
                    216: /* returns remaining payload bytes */
                    217: int    packet_remaining(void);
1.1       deraadt   218:
1.5       deraadt   219: #endif                         /* PACKET_H */