blob: de083866dd12144757d62c66a081b2458504922c [file] [log] [blame]
Sean Middleditchb9e48642009-03-12 23:33:27 -04001=====================================================================
2 libtelnet - TELNET protocol handling library
3=====================================================================
4
Sean Middleditch892c5f12009-03-14 13:39:07 -04005 http://github.com/elanthis/libtelnet
6
7 Sean Middleditch
8 sean@sourcemud.org
Sean Middleditchb9e48642009-03-12 23:33:27 -04009
10---------------------------------------------------------------------
11The author or authors of this code dedicate any and all copyright
12interest in this code to the public domain. We make this dedication
13for the benefit of the public at large and to the detriment of our
14heirs and successors. We intend this dedication to be an overt act of
15relinquishment in perpetuity of all present and future rights to this
16code under copyright law.
17---------------------------------------------------------------------
18
Sean Middleditch9d2f98a2009-03-14 05:24:56 -040019*** TODO ***
20
21 - RFC 1143 option negotiation algorithm
22 - automatic MCCP2 handling (controllable by host app)
Sean Middleditch9d2f98a2009-03-14 05:24:56 -040023 ? ZMP parsing
24 ? MSSP parsing
25 ? ENVIRON/NEW-ENVIRON parsing
26 ? telnet-status testing tool
Sean Middleditch9d2f98a2009-03-14 05:24:56 -040027
Sean Middleditchb9e48642009-03-12 23:33:27 -040028I. INTRODUCTION
29=====================================================================
30
31libtelnet provides safe and correct handling of the core TELNET
32protocol. It does not include any "smarts," and all use of the
33protocol (such as deciding which options to support, enabling
34and disabling options, or processing subrequests) must be implemented
35by the application author.
36
Sean Middleditch892c5f12009-03-14 13:39:07 -040037For more information on the TELNET protocol, see:
38
39 http://www.faqs.org/rfcs/rfc854.html
40
Sean Middleditchb9e48642009-03-12 23:33:27 -040041II. LIBTELNET API
42=====================================================================
43
Sean Middleditch892c5f12009-03-14 13:39:07 -040044The libtelnet API contains several distinct parts. The first part is
45the basic initialization and deinitialization routines. The second
46part is a single function for pushing received data into the
47libtelnet processor. The third part is the libtelnet_send_*()
48functions, which generate TELNET commands and ensure data is properly
Sean Middleditch637df7f2009-03-15 12:57:32 -040049formatted before sending over the wire. The final part is the event
50handler interface.
Sean Middleditch892c5f12009-03-14 13:39:07 -040051
52IIa. Initialization
53
54 struct libtelnet_t;
55 This structure represents the state of the TELNET protocol for a
56 single connection. Each connection utilizing TELNET must have
57 its own libtelnet_t structure, which is passed to all libtelnet
58 API calls.
59
60 void libtelnet_init(struct libtelnet_t *telnet,
Sean Middleditch9f79cc52009-03-15 13:39:24 -040061 libtelnet_event_handler_t handler, enum libtelnet_mode_t mode,
62 void *user_data);
Sean Middleditch892c5f12009-03-14 13:39:07 -040063 The libtelnet_init() function is responsible for initializing
64 the data in a libtelnet_t structure. It must be called
65 immediately after establishing a connection and before any other
66 libtelnet API calls are made.
67
Sean Middleditch637df7f2009-03-15 12:57:32 -040068 The handler parameter must be a function matching the
69 libtelnet_event_handler_t definition. More information about
70 events can be found in section IId.
Sean Middleditch30323022009-03-14 21:45:28 -040071
Sean Middleditch9f79cc52009-03-15 13:39:24 -040072 The user_data parameter is passed to the event handler whenver it
73 is invoked. This will usually be a structure container
74 information about the connection, including a socket descriptor
75 for implementing LIBTELNET_EV_SEND event handling.
76
Sean Middleditchf66a7ee2009-03-15 11:54:07 -040077 The mode parameter must be one of LIBTELNET_MODE_SERVER,
78 LIBTELNET_MODE_CLIENT, or LIBTELNET_MODE_PROXY. These slightly
79 alter the behavior of libtelnet in certain instances. If you are
80 implementing a TELNET server, use the SERVER mode. If you are
81 implementing a client, use the CLIENT mode. The PROXY mode
82 enables special behavior for telnet-proxy (or similar
83 applications).
Sean Middleditch892c5f12009-03-14 13:39:07 -040084
85 boid libtelnet_free(struct libtelnet_t *telnet);
86 Releases any internal memory allocated by libtelnet. This must
87 be called whenever a connection is closed, or you will incur
88 memory leaks.
89
90IIb. Receiving Data
91
92 void libtelnet_push(struct libtelnet_t *telnet,
93 unsigned char *buffer, unsigned int size, void *user_data);
94 When your application receives data over the socket from the
95 remote end, it must pass the received bytes into this function.
Sean Middleditch637df7f2009-03-15 12:57:32 -040096
97 As the TELNET stream is parsed, events will be generated and
98 passed to the event handler given to libtelnet_init(). Of
99 particular interest for data receiving is the LIBTELNET_EV_DATA
100 event, which is triggered for any regular data such as user
101 input or server process output.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400102
103IIc. Sending Data
104
Sean Middleditch637df7f2009-03-15 12:57:32 -0400105 All of the libtelnet_send_*() functions will invoke the
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400106 LIBTELNET_EV_SEND event.
Sean Middleditch637df7f2009-03-15 12:57:32 -0400107
108 Note: it is very important that ALL data sent to the remote end of
109 the connection be passed through libtelnet. All user input or
110 process output that you wish to send over the wire should be given
111 to libtelnet_send_data(). Do NOT send or buffer unprocessed output
112 data directly!
Sean Middleditch892c5f12009-03-14 13:39:07 -0400113
114 void libtelnet_send_command(struct libtelnet_t *telnet,
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400115 unsigned char cmd);
Sean Middleditch892c5f12009-03-14 13:39:07 -0400116 Sends a single "simple" TELNET command, such as the GO-AHEAD
117 commands (255 249).
118
119 void libtelnet_send_negotiate(struct libtelnet_t *telnet,
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400120 unsigned char cmd, unsigned char opt);
Sean Middleditch892c5f12009-03-14 13:39:07 -0400121 Sends a TELNET negotiation command. The cmd parameter must be
122 one of LIBTELNET_WILL, LIBTELNET_DONT, LIBTELNET_DO, or
123 LIBTELNET_DONT. The opt parameter is the option to
124 negotiate.
125
126 void libtelnet_send_data(struct libtelnet_t *telnet,
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400127 unsigned char *buffer, unsigned int size);
Sean Middleditch892c5f12009-03-14 13:39:07 -0400128 Sends raw data, which would be either the process output from
129 a server or the user input from a client.
130
131 void libtelnet_send_subnegotiation(struct libtelnet_t *telnet,
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400132 unsigned char opt, unsigned char *buffer, unsigned int size);
Sean Middleditch892c5f12009-03-14 13:39:07 -0400133 Sends a TELNET sub-negotiation command. The opt parameter
134 is the sub-negotiation option.
135
Sean Middleditch637df7f2009-03-15 12:57:32 -0400136IId. Event Handling
Sean Middleditch892c5f12009-03-14 13:39:07 -0400137
Sean Middleditch637df7f2009-03-15 12:57:32 -0400138 libtelnet relies on an event-handling mechanism for processing
139 the parsed TELNET protocol stream as well as for buffering and
140 sending output data.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400141
Sean Middleditch637df7f2009-03-15 12:57:32 -0400142 When you initialize a libtelnet_t structure with libtelnet_init()
143 you had to pass in an event handler function. This function must
144 meet the following prototype:
Sean Middleditch30323022009-03-14 21:45:28 -0400145
Sean Middleditch637df7f2009-03-15 12:57:32 -0400146 void (libtelnet_t *telnet, libtelnet_event_t *event,
Sean Middleditch9f79cc52009-03-15 13:39:24 -0400147 void *user_data);
148
149 The event structure is detailed below. The user_data value is the
150 pointer passed to libtelnet_init().
Sean Middleditch637df7f2009-03-15 12:57:32 -0400151
152 struct libtelnet_event_t {
153 enum libtelnet_event_type_t type;
154 unsigned char command;
155 unsigned char telopt;
156 unsigned char *buffer;
157 unsigned int size;
158 };
159
160 The enumeration values of libtelnet_event_type_t are described in
161 detail below. Whenever the the event handler is invoked, the
162 application must look at the event->type value and do any
163 necessary processing.
164
165 The only event that MUST be implemented is LIBTELNET_EV_SEND.
166 Most applications will also always want to implement the event
167 LIBTELNET_EV_DATA.
168
169 Here is an example event handler implementation which includes
170 handlers for several important events.
171
172 void my_event_handler(struct libtelnet_t *telnet,
173 libtelnet_event_t *ev, void *user_data) {
174 struct user_info *user = (struct user_info *)user_data;
175
176 switch (ev->type) {
177 case LIBTELNET_EV_DATA:
178 process_user_input(user, event->buffer, event->size);
179 break;
180 case LIBTELNET_EV_SEND:
181 write_to_descriptor(user, event->buffer, event->size);
182 break;
183 case LIBTELNET_EV_ERROR:
184 fatal_error("TELNET error: %s", event->buffer);
185 break;
186 }
Sean Middleditch30323022009-03-14 21:45:28 -0400187 }
188
Sean Middleditch637df7f2009-03-15 12:57:32 -0400189 LIBTELNET_EV_DATA:
190 The DATA event is triggered whenever regular data (not part of
191 any special TELNET command) is received. For a client, this
192 will be process output from the server. For a server, this will
193 be input typed by the user.
Sean Middleditch30323022009-03-14 21:45:28 -0400194
Sean Middleditch637df7f2009-03-15 12:57:32 -0400195 The event->buffer value will contain the bytes received and the
196 event->size value will contain the number of bytes received.
197 Note that event->buffer is not NUL terminated!
Sean Middleditch30323022009-03-14 21:45:28 -0400198
Sean Middleditch637df7f2009-03-15 12:57:32 -0400199 NOTE: there is no guarantee that user input or server output
200 will be received in whole lines. If you wish to process data
201 a line at a time, you are responsible for buffering the data and
202 checking for line terminators yourself!
203
204 LIBTELNET_EV_SEND:
205 This event is sent whenever libtelnet has generated data that
206 must be sent over the wire to the remove end. Generally that
207 means calling send() or adding the data to your application's
208 output buffer.
Sean Middleditch30323022009-03-14 21:45:28 -0400209
Sean Middleditch637df7f2009-03-15 12:57:32 -0400210 The event->buffer value will contain the bytes to send and the
211 event->size value will contain the number of bytes to send.
212 Note that event->buffer is not NUL terminated, and may include
213 NUL characters in its data, so always use event->size!
Sean Middleditch30323022009-03-14 21:45:28 -0400214
Sean Middleditch637df7f2009-03-15 12:57:32 -0400215 NOTE: Your SEND event handler must send or buffer the data in
216 its raw form as provided by libtelnet. If you wish to perform
217 any kind of preprocessing on data you want to send to the other
218
219 LIBTELNET_EV_IAC:
220 The IAC event is triggered whenever a simple IAC command is
221 received, such as the IAC EOR (end of record, also called
222 go ahead or GA) command.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400223
Sean Middleditch637df7f2009-03-15 12:57:32 -0400224 The command received is in the event->command value.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400225
Sean Middleditch637df7f2009-03-15 12:57:32 -0400226 The necessary processing depends on the specific commands; see
227 the TELNET RFC for more information.
228
229 LIBTELNET_EV_NEGOTIATE:
230 The NEGOTIATE event is sent when a TELNET neogitiation command
231 is received.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400232
Sean Middleditch637df7f2009-03-15 12:57:32 -0400233 The event->command value will be one of LIBTELNET_WILL,
234 LIBTELNET_WONT, LIBTELNET_DO, or LIBTELNET_DONT. The
235 event->telopt value will contain the option value being
236 negotiated.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400237
238 libtelnet does not currently manage negotiation for you. For
239 best practice in implementing TELNET negotiation, see:
240
241 http://www.faqs.org/rfcs/rfc1143.html
242
Sean Middleditch637df7f2009-03-15 12:57:32 -0400243 LIBTELNET_EV_SUBNEGOTIATION:
244 Triggered whenever a TELNET sub-negotiation has been received.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400245 Sub-negotiations include the NAWS option for communicating
246 terminal size to a server, the NEW-ENVIRON and TTYPE options
247 for negotiating terminal features, and MUD-centric protocols
248 such as ZMP, MSSP, and MCCP2.
249
Sean Middleditch637df7f2009-03-15 12:57:32 -0400250 The event->telopt value is the option under sub-negotiation.
251 The remaining data (if any) is passed in event->buffer and
252 event->size. Note that most subnegotiation commands can
253 include embedded NUL bytes in the subnegotiation data, and
254 the data event->buffer is not NUL terminated, so always use
255 the event->size value!
Sean Middleditch892c5f12009-03-14 13:39:07 -0400256
Sean Middleditch637df7f2009-03-15 12:57:32 -0400257 The meaning and necessary processing for subnegotiations are
258 defined in various TELNET RFCs and other informal
259 specifications. A subnegotiation should never be sent unless
260 the specific option has been enabled through the use of the
261 telnet negotiation feature.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400262
Sean Middleditch637df7f2009-03-15 12:57:32 -0400263 LIBTELNET_EV_COMPRESS
264 The COMPRESS event notifies the app that COMPRESS2/MCCP2
265 compression has begun or ended. Only servers can send compressed
266 data, and hence only clients will receive compressed data.
Sean Middleditchb9e48642009-03-12 23:33:27 -0400267
Sean Middleditch637df7f2009-03-15 12:57:32 -0400268 The event->command value will be 1 if compression has started and
269 will be 0 if compression has ended.
Sean Middleditch16992272009-03-15 19:42:03 -0400270
271 LIBTELNET_EV_WARNING
272 The WARNING event is sent whenever something has gone wrong
273 inside of libtelnet (possibly due to malformed data sent by the
274 other end) but which recovery is (likely) possible. It may be
275 safe to continue using the connection, but some data may have
276 been lost or incorrectly interpreted.
Sean Middleditch637df7f2009-03-15 12:57:32 -0400277
278 The event->buffer value will contain a NUL terminated string
279 explaining the error, and the event->size value containers the
280 length of the string.
281
Sean Middleditch16992272009-03-15 19:42:03 -0400282 LIBTELNET_EV_ERROR
283 Similar to the WARNING event, the ERROR event is sent whenever
284 something has gone wrong. ERROR events are non-recoverable,
285 however, and the application should immediately close the
286 connection. Whatever has happened is likely going only to
287 result in garbage from libtelnet. This is most likely to
288 happen when a COMPRESS2 stream fails, but other problems can
289 occur.
290
291 The event->buffer value will contain a NUL terminated string
292 explaining the error, and the event->size value containers the
293 length of the string.
Sean Middleditch637df7f2009-03-15 12:57:32 -0400294
295III. INTEGRATING LIBTELNET WITH COMMON MUDS
Sean Middleditchb9e48642009-03-12 23:33:27 -0400296=====================================================================
297
Sean Middleditch637df7f2009-03-15 12:57:32 -0400298FIXME: fill in some notes about how to splice in libtelnet with
299common Diku/Merc/Circle/etc. MUD codebases.
Sean Middleditchb9e48642009-03-12 23:33:27 -0400300
Sean Middleditch892c5f12009-03-14 13:39:07 -0400301IV. SAFETY AND CORRECTNESS CONSIDERATIONS
Sean Middleditchb9e48642009-03-12 23:33:27 -0400302=====================================================================
303
Sean Middleditch892c5f12009-03-14 13:39:07 -0400304Your existing application may make heavy use of its own output
305buffering and transmission commands, including hand-made routines
306for sending TELNET commands and sub-negotiation requests. There are
307at times subtle issues that need to be handled when communication
308over the TELNET protocol, not least of which is the need to escape
309any byte value 0xFF with a special TELNET command.
Sean Middleditchb9e48642009-03-12 23:33:27 -0400310
Sean Middleditch892c5f12009-03-14 13:39:07 -0400311For these reasons, it is very important that applications making use
312of libtelnet always make use of the libtelnet_send_*() family of
313functions for all data being sent over the TELNET connection.
314
Sean Middleditch637df7f2009-03-15 12:57:32 -0400315In particular, if you are writing a client, all user input must be
316passed through to libtelnet_send_data(). This also includes any
317input generated automatically by scripts, triggers, or macros.
318
319For a server, any and all output -- including ANSI/VT100 escape
320codes, regular text, newlines, and so on -- must be passed through
321to libtelnet_send_data().
322
323Any TELNET commands that are to be sent must be given to one of the
324following: libtelnet_send_command, libtelnet_send_negotiate, or
325libtelnet_send_subnegotiation().
326
327If you are attempting to enable COMPRESS2/MCCP2, you must use the
328libtelnet_begin_compress2() function.
329
Sean Middleditch892c5f12009-03-14 13:39:07 -0400330V. MCCP2 COMPRESSION
Sean Middleditchb9e48642009-03-12 23:33:27 -0400331=====================================================================
332
Sean Middleditch892c5f12009-03-14 13:39:07 -0400333The MCCP2 (COMPRESS2) TELNET extension allows for the compression of
334all traffic sent from server to client. For more information:
335
336 http://www.mudbytes.net/index.php?a=articles&s=mccp
337
Sean Middleditch637df7f2009-03-15 12:57:32 -0400338In order for libtelnet to support MCCP2, zlib must be installed and
339enabled when compiling libtelnet. Use -DHAVE_ZLIB to enable zlib
340when compiling libtelnet.c and pass -lz to the linker to link in the
341zlib shared library.
342
Sean Middleditch892c5f12009-03-14 13:39:07 -0400343libtelnet transparently supports MCCP2. For a server to support
344MCCP2, the application must begin negotiation of the COMPRESS2
345option using libtelnet_send_negotiate(), for example:
346
347 libtelnet_send_negotiate(&telnet, LIBTELNET_WILL,
348 LIBTELNET_OPTION_COMPRESS2, user_data);
349
Sean Middleditch637df7f2009-03-15 12:57:32 -0400350If a favorable DO COMPRESS2 is sent back from the client (processed
351in a LIBTELNET_EV_NEGOTIATE event, with event->command equal to
352LIBTELNET_DO and event->telopt equal to LIBTELNET_TELOPT_COMPRESS2),
353then the server application can begin compression at any time by
354calling libtelnet_begin_compress2().
Sean Middleditch892c5f12009-03-14 13:39:07 -0400355
Sean Middleditch637df7f2009-03-15 12:57:32 -0400356If a connection is in PROXY mode and COMPRESS2 support is enabled
357then libtelnet will automatically detect the start of a COMPRESS2
358stream, in either the sending or receiving direction.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400359
360VI. TELNET PROXY UTILITY
361=====================================================================
362
363The telnet-proxy utility is a small application that serves both as
364a testbed for libtelnet and as a powerful debugging tool for TELNET
365servers and clients.
366
367To use telnet-proxy, you must first compile it using:
368
369 $ make
370
371If you do not have zlib installed and wish to disable MCCP2 support
372then you must first edit the Makefile and remove the -DHAVE_ZLIB and
373the -lz from the compile flags.
374
Sean Middleditchd88f1832009-03-15 01:06:17 -0400375To run telnet-proxy, you simply give it the server's host name or
376IP address, the server's port number, and the port number that
377telnet-proxy should listen on. For example, to connect to the server
378on mud.example.com port 7800 and to listen on port 5000, run:
Sean Middleditch892c5f12009-03-14 13:39:07 -0400379
Sean Middleditchd88f1832009-03-15 01:06:17 -0400380 $ ./telnet-proxy mud.example.com 7800 5000
Sean Middleditch892c5f12009-03-14 13:39:07 -0400381
382You can then connect to the host telnet-proxy is running on (e.g.
Sean Middleditchd88f1832009-03-15 01:06:17 -0400383127.0.0.1) on port 500 and you will automatically be proxied into
384mud.example.com.
Sean Middleditch892c5f12009-03-14 13:39:07 -0400385
386telnet-proxy will display status information about the data
Sean Middleditchaefcd0c2009-03-15 13:16:44 -0400387passing through both ends of the tunnel. telnet-proxy can only
388support a single tunnel at a time. It will continue running until
389an error occurs or a terminating signal is sent to the proxy
390process.