libtelnet/libtelnet.c

446 lines
12 KiB
C
Raw Normal View History

/*
2009-03-14 07:35:49 +00:00
* Sean Middleditch
* sean@sourcemud.org
*
* The author or authors of this code dedicate any and all copyright interest
* in this code to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and successors. We
* intend this dedication to be an overt act of relinquishment in perpetuity of
* all present and future rights to this code under copyright law.
*/
#include <malloc.h>
2009-03-14 07:35:49 +00:00
#include <string.h>
#ifdef HAVE_ZLIB
#include "zlib.h"
#endif
2009-03-13 03:14:47 +00:00
#include "libtelnet.h"
/* buffer sizes */
static const unsigned int _buffer_sizes[] = {
0,
512,
2048,
8192,
16384,
};
static const unsigned int _buffer_sizes_count =
sizeof(_buffer_sizes) / sizeof(_buffer_sizes[0]);
2009-03-13 03:14:47 +00:00
/* initialize a telnet state tracker */
void libtelnet_init(struct libtelnet_t *telnet, struct libtelnet_cb_t *cb,
enum libtelnet_mode_t mode) {
2009-03-14 07:35:49 +00:00
memset(telnet, 0, sizeof(struct libtelnet_t));
telnet->cb = cb;
2009-03-14 08:57:27 +00:00
telnet->mode = mode;
2009-03-13 03:14:47 +00:00
}
/* free up any memory allocated by a state tracker */
2009-03-14 00:15:59 +00:00
void libtelnet_free(struct libtelnet_t *telnet) {
2009-03-14 07:35:49 +00:00
/* free sub-request buffer */
2009-03-14 00:15:59 +00:00
if (telnet->buffer != 0) {
2009-03-13 03:14:47 +00:00
free(telnet->buffer);
telnet->buffer = 0;
2009-03-14 00:15:59 +00:00
telnet->size = 0;
telnet->length = 0;
}
2009-03-14 07:35:49 +00:00
/* free zlib box */
if (telnet->zlib != 0) {
2009-03-14 15:32:58 +00:00
if (telnet->mode == LIBTELNET_MODE_SERVER)
deflateEnd(telnet->zlib);
else
inflateEnd(telnet->zlib);
2009-03-14 07:35:49 +00:00
free(telnet->zlib);
telnet->zlib = 0;
}
2009-03-14 00:15:59 +00:00
}
/* push a byte into the telnet buffer */
static enum libtelnet_error_t _buffer_byte(
2009-03-14 00:15:59 +00:00
struct libtelnet_t *telnet, unsigned char byte, void *user_data) {
unsigned char *new_buffer;
int i;
2009-03-14 00:15:59 +00:00
/* check if we're out of room */
if (telnet->length == telnet->size) {
/* find the next buffer size */
for (i = 0; i != _buffer_sizes_count; ++i) {
if (_buffer_sizes[i] == telnet->size)
break;
}
/* overflow -- can't grow any more */
if (i >= _buffer_sizes_count - 1) {
telnet->cb->error(telnet, LIBTELNET_ERROR_OVERFLOW, user_data);
2009-03-14 00:15:59 +00:00
libtelnet_free(telnet);
return LIBTELNET_ERROR_OVERFLOW;
}
2009-03-14 00:15:59 +00:00
/* (re)allocate buffer */
new_buffer = (unsigned char *)realloc(telnet->buffer,
_buffer_sizes[i + 1]);
if (new_buffer == 0) {
telnet->cb->error(telnet, LIBTELNET_ERROR_NOMEM,
user_data);
libtelnet_free(telnet);
return LIBTELNET_ERROR_NOMEM;
2009-03-14 00:15:59 +00:00
}
telnet->buffer = new_buffer;
telnet->size = _buffer_sizes[i + 1];
2009-03-13 03:14:47 +00:00
}
2009-03-14 00:15:59 +00:00
/* push the byte, all set */
telnet->buffer[telnet->length++] = byte;
return LIBTELNET_ERROR_OK;
2009-03-13 03:14:47 +00:00
}
2009-03-14 07:35:49 +00:00
static void _process(struct libtelnet_t *telnet, unsigned char *buffer,
unsigned int size, void *user_data) {
unsigned char byte;
unsigned int i, start;
for (i = start = 0; i != size; ++i) {
byte = buffer[i];
switch (telnet->state) {
/* regular data */
2009-03-14 07:35:49 +00:00
case LIBTELNET_STATE_DATA:
/* on an IAC byte, pass through all pending bytes and
* switch states */
if (byte == LIBTELNET_IAC) {
if (i != start)
telnet->cb->data(telnet, &buffer[start], i - start,
user_data);
telnet->state = LIBTELNET_STATE_IAC;
}
2009-03-13 03:14:47 +00:00
break;
/* IAC command */
case LIBTELNET_STATE_IAC:
switch (byte) {
/* subnegotiation */
case LIBTELNET_SB:
telnet->state = LIBTELNET_STATE_SB;
break;
/* negotiation commands */
case LIBTELNET_WILL:
telnet->state = LIBTELNET_STATE_WILL;
break;
case LIBTELNET_WONT:
telnet->state = LIBTELNET_STATE_WONT;
break;
case LIBTELNET_DO:
telnet->state = LIBTELNET_STATE_DO;
break;
case LIBTELNET_DONT:
telnet->state = LIBTELNET_STATE_DONT;
break;
/* IAC escaping */
case LIBTELNET_IAC:
telnet->cb->data(telnet, &byte, 1, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
break;
/* some other command */
default:
telnet->cb->command(telnet, byte, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
}
2009-03-13 03:14:47 +00:00
break;
/* negotiation commands */
case LIBTELNET_STATE_DO:
telnet->cb->negotiate(telnet, LIBTELNET_DO, byte, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
2009-03-13 03:14:47 +00:00
break;
case LIBTELNET_STATE_DONT:
telnet->cb->negotiate(telnet, LIBTELNET_DONT, byte, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
break;
case LIBTELNET_STATE_WILL:
telnet->cb->negotiate(telnet, LIBTELNET_WILL, byte, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
break;
case LIBTELNET_STATE_WONT:
telnet->cb->negotiate(telnet, LIBTELNET_WONT, byte, user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
2009-03-13 03:14:47 +00:00
break;
/* subnegotiation -- buffer bytes until end request */
case LIBTELNET_STATE_SB:
/* IAC command in subnegotiation -- either IAC SE or IAC IAC */
if (byte == LIBTELNET_IAC) {
telnet->state = LIBTELNET_STATE_SB_IAC;
/* buffer the byte, or bail if we can't */
2009-03-14 04:18:30 +00:00
} else if (_buffer_byte(telnet, byte, user_data) !=
LIBTELNET_ERROR_OK) {
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
}
2009-03-13 03:14:47 +00:00
break;
/* IAC escaping inside a subnegotiation */
case LIBTELNET_STATE_SB_IAC:
switch (byte) {
/* end subnegotiation */
case LIBTELNET_SE:
2009-03-14 07:35:49 +00:00
/* return to default state */
start = i + 1;
telnet->state = LIBTELNET_STATE_DATA;
/* zero-size buffer is a protocol error */
if (telnet->length == 0) {
telnet->cb->error(telnet, LIBTELNET_ERROR_PROTOCOL,
user_data);
2009-03-14 07:35:49 +00:00
break;
}
/* invoke callback */
telnet->cb->subnegotiation(telnet, telnet->buffer[0],
2009-03-14 07:35:49 +00:00
telnet->buffer + 1, telnet->length - 1, user_data);
telnet->length = 0;
2009-03-14 08:57:27 +00:00
#ifdef HAVE_ZLIB
/* if we are a client and just received the COMPRESS2
* begin marker, setup our zlib box and start handling
* the compressed stream
*/
if (telnet->mode == LIBTELNET_MODE_CLIENT &&
telnet->buffer[0] == LIBTELNET_TELOPT_COMPRESS2) {
2009-03-14 07:35:49 +00:00
/* allocate zstream box */
if ((telnet->zlib = (z_stream *)malloc(sizeof(z_stream)))
== 0) {
telnet->cb->error(telnet,
2009-03-14 07:35:49 +00:00
LIBTELNET_ERROR_NOMEM, user_data);
}
/* initialize */
memset(telnet->zlib, 0, sizeof(z_stream));
if (inflateInit(telnet->zlib) != Z_OK) {
free(telnet->zlib);
telnet->zlib = 0;
telnet->cb->error(telnet,
2009-03-14 07:35:49 +00:00
LIBTELNET_ERROR_UNKNOWN, user_data);
break;
}
2009-03-14 08:57:27 +00:00
/* notify app that compression was enabled */
telnet->cb->compress(telnet, 1, user_data);
2009-03-14 08:57:27 +00:00
2009-03-14 07:35:49 +00:00
/* any remaining bytes in the buffer are compressed.
* we have to re-invoke libtelnet_push to get those
* bytes inflated and abort trying to process the
* remaining compressed bytes in the current _process
* buffer argument
*/
2009-03-14 15:32:58 +00:00
libtelnet_push(telnet, &buffer[start], size - start,
2009-03-14 07:35:49 +00:00
user_data);
return;
}
2009-03-14 08:57:27 +00:00
#endif /* HAVE_ZLIB */
break;
/* escaped IAC byte */
case LIBTELNET_IAC:
/* push IAC into buffer */
if (_buffer_byte(telnet, LIBTELNET_IAC, user_data) !=
LIBTELNET_ERROR_OK) {
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
} else {
telnet->state = LIBTELNET_STATE_SB;
}
break;
/* something else -- protocol error */
default:
telnet->cb->error(telnet, LIBTELNET_ERROR_PROTOCOL,
user_data);
start = i + 1;
2009-03-14 07:35:49 +00:00
telnet->state = LIBTELNET_STATE_DATA;
break;
}
2009-03-13 03:14:47 +00:00
break;
}
}
/* pass through any remaining bytes */
2009-03-14 16:55:17 +00:00
if (telnet->state == LIBTELNET_STATE_DATA && i != start)
telnet->cb->data(telnet, &buffer[start], i - start, user_data);
2009-03-13 03:14:47 +00:00
}
2009-03-14 07:35:49 +00:00
/* push a bytes into the state tracker */
void libtelnet_push(struct libtelnet_t *telnet, unsigned char *buffer,
unsigned int size, void *user_data) {
2009-03-14 08:57:27 +00:00
#ifdef HAVE_ZLIB
/* if we are a client and we have a zlib box, then COMPRESS2 has been
* negotiated and we need to inflate the buffer before processing
2009-03-14 07:35:49 +00:00
*/
2009-03-14 08:57:27 +00:00
if (telnet->mode == LIBTELNET_MODE_CLIENT && telnet->zlib != 0) {
2009-03-14 07:35:49 +00:00
unsigned char inflate_buffer[4096];
int rs;
/* initialize zlib state */
telnet->zlib->next_in = buffer;
telnet->zlib->avail_in = size;
telnet->zlib->next_out = inflate_buffer;
telnet->zlib->avail_out = sizeof(inflate_buffer);
/* inflate until buffer exhausted and all output is produced */
while (telnet->zlib->avail_in > 0 || telnet->zlib->avail_out == 0) {
/* reset output buffer */
/* decompress */
rs = inflate(telnet->zlib, Z_SYNC_FLUSH);
/* process the decompressed bytes on success */
if (rs == Z_OK || rs == Z_STREAM_END)
_process(telnet, inflate_buffer, sizeof(inflate_buffer) -
telnet->zlib->avail_out, user_data);
else
telnet->cb->error(telnet, LIBTELNET_ERROR_UNKNOWN,
2009-03-14 07:35:49 +00:00
user_data);
/* prepare output buffer for next run */
telnet->zlib->next_out = inflate_buffer;
telnet->zlib->avail_out = sizeof(inflate_buffer);
/* on error (or on end of stream) disable further inflation */
if (rs != Z_OK) {
telnet->cb->compress(telnet, 0, user_data);
2009-03-14 08:57:27 +00:00
2009-03-14 07:35:49 +00:00
inflateEnd(telnet->zlib);
free(telnet->zlib);
telnet->zlib = 0;
break;
}
}
2009-03-14 08:57:27 +00:00
/* COMPRESS2 is not negotiated, just process */
} else
#endif /* HAVE_ZLIB */
2009-03-14 07:35:49 +00:00
_process(telnet, buffer, size, user_data);
2009-03-14 08:57:27 +00:00
}
static void _send(struct libtelnet_t *telnet, unsigned char *buffer,
unsigned int size, void *user_data) {
#ifdef HAVE_ZLIB
/* if we are a server and we have a zlib box, then COMPRESS2 has been
* negotiated and we need to deflate the buffer before sending it out
*/
if (telnet->mode == LIBTELNET_MODE_SERVER && telnet->zlib != 0) {
unsigned char deflate_buffer[1024];
/* initialize zlib state */
telnet->zlib->next_in = buffer;
telnet->zlib->avail_in = size;
telnet->zlib->next_out = deflate_buffer;
telnet->zlib->avail_out = sizeof(deflate_buffer);
/* deflate until buffer exhausted and all output is produced */
while (telnet->zlib->avail_in > 0 || telnet->zlib->avail_out == 0) {
/* reset output buffer */
/* compress */
if (deflate(telnet->zlib, Z_SYNC_FLUSH) != Z_OK) {
telnet->cb->error(telnet, LIBTELNET_ERROR_UNKNOWN,
2009-03-14 08:57:27 +00:00
user_data);
deflateEnd(telnet->zlib);
free(telnet->zlib);
telnet->zlib = 0;
break;
}
telnet->cb->send(telnet, deflate_buffer, sizeof(deflate_buffer) -
2009-03-14 08:57:27 +00:00
telnet->zlib->avail_out, user_data);
/* prepare output buffer for next run */
telnet->zlib->next_out = deflate_buffer;
telnet->zlib->avail_out = sizeof(deflate_buffer);
}
/* COMPRESS2 is not negotiated, just send */
} else
#endif /* HAVE_ZLIB */
telnet->cb->send(telnet, buffer, size, user_data);
2009-03-14 07:35:49 +00:00
}
2009-03-13 03:14:47 +00:00
/* send an iac command */
void libtelnet_send_command(struct libtelnet_t *telnet, unsigned char cmd,
void *user_data) {
2009-03-14 00:17:31 +00:00
unsigned char bytes[2] = { LIBTELNET_IAC, cmd };
2009-03-14 08:57:27 +00:00
_send(telnet, bytes, 2, user_data);
2009-03-13 03:14:47 +00:00
}
/* send negotiation */
void libtelnet_send_negotiate(struct libtelnet_t *telnet, unsigned char cmd,
unsigned char opt, void *user_data) {
2009-03-14 00:17:31 +00:00
unsigned char bytes[3] = { LIBTELNET_IAC, cmd, opt };
2009-03-14 08:57:27 +00:00
_send(telnet, bytes, 3, user_data);
2009-03-13 03:14:47 +00:00
}
/* send non-command data (escapes IAC bytes) */
void libtelnet_send_data(struct libtelnet_t *telnet, unsigned char *buffer,
unsigned int size, void *user_data) {
unsigned int i, l;
2009-03-13 03:14:47 +00:00
for (l = i = 0; i != size; ++i) {
/* dump prior portion of text, send escaped bytes */
if (buffer[i] == LIBTELNET_IAC) {
/* dump prior text if any */
if (i != l)
2009-03-14 08:57:27 +00:00
_send(telnet, buffer + l, i - l, user_data);
2009-03-13 03:14:47 +00:00
l = i + 1;
/* send escape */
libtelnet_send_command(telnet, LIBTELNET_IAC, user_data);
}
}
/* send whatever portion of buffer is left */
if (i != l)
2009-03-14 08:57:27 +00:00
_send(telnet, buffer + l, i - l, user_data);
2009-03-13 03:14:47 +00:00
}
/* send sub-request */
void libtelnet_send_subnegotiation(struct libtelnet_t *telnet,
2009-03-14 17:23:33 +00:00
unsigned char opt, unsigned char *buffer, unsigned int size,
void *user_data) {
2009-03-14 00:17:31 +00:00
libtelnet_send_command(telnet, LIBTELNET_SB, user_data);
2009-03-14 17:23:33 +00:00
libtelnet_send_data(telnet, &opt, 1, user_data);
2009-03-13 03:14:47 +00:00
libtelnet_send_data(telnet, buffer, size, user_data);
2009-03-14 00:17:31 +00:00
libtelnet_send_command(telnet, LIBTELNET_SE, user_data);
2009-03-14 08:57:27 +00:00
#ifdef HAVE_ZLIB
/* if we're a server and we just sent the COMPRESS2 marker, we must
* make sure all further data is compressed
*/
2009-03-14 17:23:33 +00:00
if (telnet->mode == LIBTELNET_MODE_SERVER && opt ==
LIBTELNET_TELOPT_COMPRESS2) {
2009-03-14 08:57:27 +00:00
/* allocate zstream box */
if ((telnet->zlib = (z_stream *)malloc(sizeof(z_stream)))
== 0) {
telnet->cb->error(telnet,
2009-03-14 08:57:27 +00:00
LIBTELNET_ERROR_NOMEM, user_data);
}
/* initialize */
memset(telnet->zlib, 0, sizeof(z_stream));
if (deflateInit(telnet->zlib, Z_DEFAULT_COMPRESSION) != Z_OK) {
free(telnet->zlib);
telnet->zlib = 0;
telnet->cb->error(telnet,
2009-03-14 08:57:27 +00:00
LIBTELNET_ERROR_UNKNOWN, user_data);
}
/* notify app that compression was enabled */
telnet->cb->compress(telnet, 1, user_data);
2009-03-14 08:57:27 +00:00
}
#endif /* HAVE_ZLIB */
2009-03-13 03:14:47 +00:00
}