libtelnet/libtelnet.c

496 lines
14 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>
2009-03-15 02:35:01 +00:00
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdarg.h>
2009-03-14 07:35:49 +00:00
#ifdef HAVE_ZLIB
#include "zlib.h"
#endif
2009-03-13 03:14:47 +00:00
#include "libtelnet.h"
2009-03-15 02:35:01 +00:00
#ifdef ERROR
# undef ERROR
#endif
#define ERROR(telnet, code, user_data, msg) \
_error(telnet, __FILE__, __LINE__, code, user_data, "%s", msg)
#define ERROR_NOMEM(telnet, user_data, msg) \
2009-03-15 15:54:07 +00:00
_error(telnet, __FILE__, __LINE__, LIBTELNET_ENOMEM, user_data, \
2009-03-15 02:35:01 +00:00
"%s: %s", msg, strerror(errno))
#define ERROR_ZLIB(telnet, user_data, rs, msg) \
2009-03-15 15:54:07 +00:00
_error(telnet, __FILE__, __LINE__, LIBTELNET_EUNKNOWN, \
2009-03-15 02:35:01 +00:00
user_data, "%s: %s", msg, zError(rs))
/* 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-15 02:35:01 +00:00
/* error generation function */
static void _error(struct libtelnet_t *telnet, const char *file, unsigned line,
enum libtelnet_error_t err, void *user_data, const char *fmt, ...) {
char buffer[512];
va_list va;
/* format error intro */
snprintf(buffer, sizeof(buffer), "%s:%u: ",
file, line);
va_start(va, fmt);
vsnprintf(buffer + strlen(buffer), sizeof(buffer) - strlen(buffer),
fmt, va);
va_end(va);
/* invoke user's custom error handler if possible; otherwise,
* print to stderr
*/
if (telnet->cb->error)
telnet->cb->error(telnet, err, buffer, user_data);
else
fprintf(stderr, "**ERROR**: libtelnet: %s\n", buffer);
}
2009-03-15 15:50:36 +00:00
/* initialize the zlib box for a telnet box; if deflate is non-zero, it
* initializes zlib for delating (compression), otherwise for inflating
* (decompression)
*/
z_stream *_init_zlib(struct libtelnet_t *telnet, int deflate,
void *user_data) {
z_stream *zlib;
int rs;
/* allocate zstream box */
if ((zlib = (z_stream *)calloc(1, sizeof(z_stream)))
== 0) {
ERROR_NOMEM(telnet, user_data, "malloc() failed");
return 0;
}
/* initialize */
if (deflate) {
if ((rs = deflateInit(zlib, Z_DEFAULT_COMPRESSION)) != Z_OK) {
free(zlib);
ERROR_ZLIB(telnet, user_data, rs, "deflateInit() failed");
return 0;
}
} else {
if ((rs = inflateInit(zlib)) != Z_OK) {
free(zlib);
ERROR_ZLIB(telnet, user_data, rs, "inflateInit() failed");
return 0;
}
}
return zlib;
}
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
2009-03-15 15:50:36 +00:00
/* free zlib box(es) */
if (telnet->z_inflate != 0) {
inflateEnd(telnet->z_inflate);
free(telnet->z_inflate);
telnet->z_inflate = 0;
}
if (telnet->z_deflate != 0) {
deflateEnd(telnet->z_deflate);
free(telnet->z_deflate);
telnet->z_deflate = 0;
2009-03-14 07:35:49 +00:00
}
2009-03-14 00:15:59 +00:00
}
/* push a byte into the telnet buffer */
2009-03-15 02:35:01 +00:00
static enum libtelnet_error_t _buffer_byte(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) {
2009-03-15 15:54:07 +00:00
_error(telnet, __FILE__, __LINE__, LIBTELNET_EOVERFLOW,
2009-03-15 02:35:01 +00:00
user_data, "subnegotiation buffer size limit reached");
2009-03-14 00:15:59 +00:00
libtelnet_free(telnet);
2009-03-15 15:54:07 +00:00
return LIBTELNET_EOVERFLOW;
}
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) {
2009-03-15 02:35:01 +00:00
ERROR_NOMEM(telnet, user_data, "realloc() failed");
libtelnet_free(telnet);
2009-03-15 15:54:07 +00:00
return LIBTELNET_ENOMEM;
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;
2009-03-15 15:54:07 +00:00
return LIBTELNET_EOK;
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) !=
2009-03-15 15:54:07 +00:00
LIBTELNET_EOK) {
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) {
2009-03-15 15:54:07 +00:00
ERROR(telnet, LIBTELNET_EPROTOCOL, user_data,
2009-03-15 02:35:01 +00:00
"subnegotiation has zero 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
2009-03-15 15:50:36 +00:00
/* if we are a client or a proxy and just received the
* COMPRESS2 begin marker, setup our zlib box and start
* handling the compressed stream if it's not already.
2009-03-14 08:57:27 +00:00
*/
2009-03-15 15:50:36 +00:00
if (telnet->buffer[0] == LIBTELNET_TELOPT_COMPRESS2 &&
telnet->z_inflate == 0 &&
(telnet->mode == LIBTELNET_MODE_CLIENT ||
telnet->mode == LIBTELNET_MODE_PROXY)) {
if ((telnet->z_inflate = _init_zlib(telnet, 0, user_data))
== 0)
2009-03-14 07:35:49 +00:00
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) !=
2009-03-15 15:54:07 +00:00
LIBTELNET_EOK) {
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:
2009-03-15 15:54:07 +00:00
_error(telnet, __FILE__, __LINE__, LIBTELNET_EPROTOCOL,
2009-03-15 02:35:01 +00:00
user_data, "unexpected byte after IAC inside SB: %d",
byte);
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
2009-03-15 15:50:36 +00:00
/* if we have an inflate (decompression) zlib stream, use it */
if (telnet->z_inflate != 0) {
2009-03-14 07:35:49 +00:00
unsigned char inflate_buffer[4096];
int rs;
/* initialize zlib state */
2009-03-15 15:50:36 +00:00
telnet->z_inflate->next_in = buffer;
telnet->z_inflate->avail_in = size;
telnet->z_inflate->next_out = inflate_buffer;
telnet->z_inflate->avail_out = sizeof(inflate_buffer);
2009-03-14 07:35:49 +00:00
/* inflate until buffer exhausted and all output is produced */
2009-03-15 15:50:36 +00:00
while (telnet->z_inflate->avail_in > 0 || telnet->z_inflate->avail_out == 0) {
2009-03-14 07:35:49 +00:00
/* reset output buffer */
/* decompress */
2009-03-15 15:50:36 +00:00
rs = inflate(telnet->z_inflate, Z_SYNC_FLUSH);
2009-03-14 07:35:49 +00:00
/* process the decompressed bytes on success */
if (rs == Z_OK || rs == Z_STREAM_END)
_process(telnet, inflate_buffer, sizeof(inflate_buffer) -
2009-03-15 15:50:36 +00:00
telnet->z_inflate->avail_out, user_data);
2009-03-14 07:35:49 +00:00
else
2009-03-15 02:35:01 +00:00
ERROR_ZLIB(telnet, user_data, rs, "inflate() failed");
2009-03-14 07:35:49 +00:00
/* prepare output buffer for next run */
2009-03-15 15:50:36 +00:00
telnet->z_inflate->next_out = inflate_buffer;
telnet->z_inflate->avail_out = sizeof(inflate_buffer);
2009-03-14 07:35:49 +00:00
/* 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-15 15:50:36 +00:00
inflateEnd(telnet->z_inflate);
free(telnet->z_inflate);
telnet->z_inflate = 0;
2009-03-14 07:35:49 +00:00
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
2009-03-15 15:50:36 +00:00
/* if we have a deflate (compression) zlib box, use it */
if (telnet->z_deflate != 0) {
2009-03-14 08:57:27 +00:00
unsigned char deflate_buffer[1024];
2009-03-15 02:35:01 +00:00
int rs;
2009-03-14 08:57:27 +00:00
2009-03-15 15:50:36 +00:00
/* initialize z_deflate state */
telnet->z_deflate->next_in = buffer;
telnet->z_deflate->avail_in = size;
telnet->z_deflate->next_out = deflate_buffer;
telnet->z_deflate->avail_out = sizeof(deflate_buffer);
2009-03-14 08:57:27 +00:00
/* deflate until buffer exhausted and all output is produced */
2009-03-15 15:50:36 +00:00
while (telnet->z_deflate->avail_in > 0 || telnet->z_deflate->avail_out == 0) {
2009-03-14 08:57:27 +00:00
/* compress */
2009-03-15 15:50:36 +00:00
if ((rs = deflate(telnet->z_deflate, Z_SYNC_FLUSH)) != Z_OK) {
2009-03-15 02:35:01 +00:00
ERROR_ZLIB(telnet, user_data, rs, "deflate() failed");
2009-03-15 15:50:36 +00:00
deflateEnd(telnet->z_deflate);
free(telnet->z_deflate);
telnet->z_deflate = 0;
2009-03-14 08:57:27 +00:00
break;
}
telnet->cb->send(telnet, deflate_buffer, sizeof(deflate_buffer) -
2009-03-15 15:50:36 +00:00
telnet->z_deflate->avail_out, user_data);
2009-03-14 08:57:27 +00:00
/* prepare output buffer for next run */
2009-03-15 15:50:36 +00:00
telnet->z_deflate->next_out = deflate_buffer;
telnet->z_deflate->avail_out = sizeof(deflate_buffer);
2009-03-14 08:57:27 +00:00
}
/* 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
2009-03-15 15:50:36 +00:00
/* if we're a proxy and we just sent the COMPRESS2 marker, we must
* make sure all further data is compressed if not already.
2009-03-14 08:57:27 +00:00
*/
2009-03-15 15:50:36 +00:00
if (telnet->mode == LIBTELNET_MODE_PROXY &&
telnet->z_deflate == 0 &&
opt == LIBTELNET_TELOPT_COMPRESS2) {
2009-03-15 02:35:01 +00:00
2009-03-15 15:50:36 +00:00
if ((telnet->z_deflate = _init_zlib(telnet, 1, user_data)) == 0)
2009-03-15 02:35:01 +00:00
return;
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
}
#endif /* HAVE_ZLIB */
2009-03-13 03:14:47 +00:00
}