/usr/include/ptclib/telnet.h is in libpt-1.10.10-dev 1.10.10-3.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | /*
* telnet.h
*
* TELNET Socket class.
*
* Portable Windows Library
*
* Copyright (c) 1993-2002 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Log: telnet.h,v $
* Revision 1.24 2005/11/30 12:47:37 csoutheren
* Removed tabs, reformatted some code, and changed tags for Doxygen
*
* Revision 1.23 2002/11/06 22:47:24 robertj
* Fixed header comment (copyright etc)
*
* Revision 1.22 2002/09/16 01:08:59 robertj
* Added #define so can select if #pragma interface/implementation is used on
* platform basis (eg MacOS) rather than compiler, thanks Robert Monaghan.
*
* Revision 1.21 1999/03/09 08:01:47 robertj
* Changed comments for doc++ support (more to come).
*
* Revision 1.20 1999/02/16 08:07:10 robertj
* MSVC 6.0 compatibility changes.
*
* Revision 1.19 1998/11/30 02:50:56 robertj
* New directory structure
*
* Revision 1.18 1998/09/23 06:20:04 robertj
* Added open source copyright license.
*
* Revision 1.17 1996/08/08 10:08:54 robertj
* Directory structure changes for common files.
*
* Revision 1.16 1995/06/17 11:13:32 robertj
* Documentation update.
*
* Revision 1.15 1995/06/17 00:47:38 robertj
* Changed overloaded Open() calls to 3 separate function names.
* More logical design of port numbers and service names.
*
* Revision 1.14 1995/06/04 12:46:26 robertj
* Slight redesign of port numbers on sockets.
*
* Revision 1.13 1995/04/25 11:12:30 robertj
* Fixed functions hiding ancestor virtuals.
*
* Revision 1.12 1995/04/01 08:32:10 robertj
* Finally got a working TELNET.
*
* Revision 1.11 1995/03/18 06:27:50 robertj
* Rewrite of telnet socket protocol according to RFC1143.
*
* Revision 1.10 1995/03/14 12:42:47 robertj
* Updated documentation to use HTML codes.
*
* Revision 1.9 1995/02/21 11:25:33 robertj
* Further implementation of telnet socket, feature complete now.
*
* Revision 1.8 1995/01/03 09:36:23 robertj
* Documentation.
*
* Revision 1.7 1995/01/01 01:07:33 robertj
* More implementation.
*
* Revision 1.6 1994/11/28 12:38:59 robertj
* Added DONT and WONT states.
*
* Revision 1.5 1994/08/23 11:32:52 robertj
* Oops
*
* Revision 1.4 1994/08/22 00:46:48 robertj
* Added pragma fro GNU C++ compiler.
*
* Revision 1.3 1994/08/21 23:43:02 robertj
* Changed type of socket port number for better portability.
*
* Revision 1.2 1994/07/25 03:36:03 robertj
* Added sockets to common, normalising to same comment standard.
*
*/
#ifndef _PTELNETSOCKET
#define _PTELNETSOCKET
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptlib/sockets.h>
/** A TCP/IP socket for the TELNET high level protocol.
*/
class PTelnetSocket : public PTCPSocket
{
PCLASSINFO(PTelnetSocket, PTCPSocket)
public:
PTelnetSocket();
// Create an unopened TELNET socket.
PTelnetSocket(
const PString & address ///< Address of remote machine to connect to.
);
// Create an opened TELNET socket.
// Overrides from class PChannel
/** Low level read from the channel. This function may block until the
requested number of characters were read or the read timeout was
reached. The GetLastReadCount() function returns the actual number
of bytes read.
The GetErrorCode() function should be consulted after Read() returns
FALSE to determine what caused the failure.
The TELNET channel intercepts and escapes commands in the data stream to
implement the TELNET protocol.
@return
TRUE indicates that at least one character was read from the channel.
FALSE means no bytes were read due to timeout or some other I/O error.
*/
BOOL Read(
void * buf, ///< Pointer to a block of memory to receive the read bytes.
PINDEX len ///< Maximum number of bytes to read into the buffer.
);
/** Low level write to the channel. This function will block until the
requested number of characters are written or the write timeout is
reached. The GetLastWriteCount() function returns the actual number
of bytes written.
The GetErrorCode() function should be consulted after Write() returns
FALSE to determine what caused the failure.
The TELNET channel intercepts and escapes commands in the data stream to
implement the TELNET protocol.
Returns TRUE if at least len bytes were written to the channel.
*/
BOOL Write(
const void * buf, ///< Pointer to a block of memory to write.
PINDEX len ///< Number of bytes to write.
);
/** Connect a socket to a remote host on the specified port number. This is
typically used by the client or initiator of a communications channel.
This connects to a "listening" socket at the other end of the
communications channel.
The port number as defined by the object instance construction or the
<A>PIPSocket::SetPort()</A> function.
@return
TRUE if the channel was successfully connected to the remote host.
*/
virtual BOOL Connect(
const PString & address ///< Address of remote machine to connect to.
);
/** Open a socket to a remote host on the specified port number. This is an
"accepting" socket. When a "listening" socket has a pending connection
to make, this will accept a connection made by the "connecting" socket
created to establish a link.
The port that the socket uses is the one used in the <A>Listen()</A>
command of the <CODE>socket</CODE> parameter.
Note that this function will block until a remote system connects to the
port number specified in the "listening" socket.
@return
TRUE if the channel was successfully opened.
*/
virtual BOOL Accept(
PSocket & socket ///< Listening socket making the connection.
);
/** This is callback function called by the system whenever out of band data
from the TCP/IP stream is received. A descendent class may interpret
this data according to the semantics of the high level protocol.
The TELNET socket uses this for sychronisation.
*/
virtual void OnOutOfBand(
const void * buf, ///< Data to be received as URGENT TCP data.
PINDEX len ///< Number of bytes pointed to by <CODE>buf</CODE>.
);
// New functions
enum Command {
IAC = 255, ///< Interpret As Command - escape character.
DONT = 254, ///< You are not to use option.
DO = 253, ///< Request to use option.
WONT = 252, ///< Refuse use of option.
WILL = 251, ///< Accept the use of option.
SB = 250, ///< Subnegotiation begin.
GoAhead = 249, ///< Function GA, you may reverse the line.
EraseLine = 248, ///< Function EL, erase the current line.
EraseChar = 247, ///< Function EC, erase the current character.
AreYouThere = 246, ///< Function AYT, are you there?
AbortOutput = 245, ///< Function AO, abort output stream.
InterruptProcess = 244, ///< Function IP, interrupt process, permanently.
Break = 243, ///< NVT character break.
DataMark = 242, ///< Marker for connection cleaning.
NOP = 241, ///< No operation.
SE = 240, ///< Subnegotiation end.
EndOfReccord = 239, ///< End of record for transparent mode.
AbortProcess = 238, ///< Abort the entire process
SuspendProcess= 237, ///< Suspend the process.
EndOfFile = 236 ///< End of file marker.
};
// Defined telnet commands codes
/** Send an escaped IAC command. The <CODE>opt</CODE> parameters meaning
depends on the command being sent:
<DL>
<DT>DO, DONT, WILL, WONT <DD><CODE>opt</CODE> is Options code.
<DT>AbortOutput <DD>TRUE is flush buffer.
<DT>InterruptProcess,
Break, AbortProcess,
SuspendProcess <DD>TRUE is synchronise.
</DL>
Synchronises the TELNET streams, inserts the data mark into outgoing
data stream and sends an out of band data to the remote to flush all
data in the stream up until the syncronisation command.
@return
TRUE if the command was successfully sent.
*/
BOOL SendCommand(
Command cmd, ///< Command code to send
int opt = 0 ///< Option for command code.
);
enum Options {
TransmitBinary = 0, ///< Assume binary 8 bit data is transferred.
EchoOption = 1, ///< Automatically echo characters sent.
ReconnectOption = 2, ///< Prepare to reconnect
SuppressGoAhead = 3, ///< Do not use the GA protocol.
MessageSizeOption = 4, ///< Negatiate approximate message size
StatusOption = 5, ///< Status packets are understood.
TimingMark = 6, ///< Marker for synchronisation.
RCTEOption = 7, ///< Remote controlled transmission and echo.
OutputLineWidth = 8, ///< Negotiate about output line width.
OutputPageSize = 9, ///< Negotiate about output page size.
CRDisposition = 10, ///< Negotiate about CR disposition.
HorizontalTabsStops = 11, ///< Negotiate about horizontal tabstops.
HorizTabDisposition = 12, ///< Negotiate about horizontal tab disposition
FormFeedDisposition = 13, ///< Negotiate about formfeed disposition.
VerticalTabStops = 14, ///< Negotiate about vertical tab stops.
VertTabDisposition = 15, ///< Negotiate about vertical tab disposition.
LineFeedDisposition = 16, ///< Negotiate about output LF disposition.
ExtendedASCII = 17, ///< Extended ascic character set.
ForceLogout = 18, ///< Force logout.
ByteMacroOption = 19, ///< Byte macro.
DataEntryTerminal = 20, ///< data entry terminal.
SupDupProtocol = 21, ///< supdup protocol.
SupDupOutput = 22, ///< supdup output.
SendLocation = 23, ///< Send location.
TerminalType = 24, ///< Provide terminal type information.
EndOfRecordOption = 25, ///< Record boundary marker.
TACACSUID = 26, ///< TACACS user identification.
OutputMark = 27, ///< Output marker or banner text.
TerminalLocation = 28, ///< Terminals physical location infromation.
Use3270RegimeOption = 29, ///< 3270 regime.
UseX3PADOption = 30, ///< X.3 PAD
WindowSize = 31, ///< NAWS - Negotiate About Window Size.
TerminalSpeed = 32, ///< Provide terminal speed information.
FlowControl = 33, ///< Remote flow control.
LineModeOption = 34, ///< Terminal in line mode option.
XDisplayLocation = 35, ///< X Display location.
EnvironmentOption = 36, ///< Provide environment information.
AuthenticateOption = 37, ///< Authenticate option.
EncriptionOption = 38, ///< Encryption option.
EncryptionOption = 38, ///< Duplicate to fix spelling mistake and remain backwards compatible.
ExtendedOptionsList = 255, ///< Code for extended options.
MaxOptions
};
// Defined TELNET options.
/** Send DO request.
@return
TRUE if the command was successfully sent.
*/
virtual BOOL SendDo(
BYTE option ///< Option to DO
);
/** Send DONT command.
@return
TRUE if the command was successfully sent.
*/
virtual BOOL SendDont(
BYTE option ///< Option to DONT
);
/** Send WILL request.
@return
TRUE if the command was successfully sent.
*/
virtual BOOL SendWill(
BYTE option ///< Option to WILL
);
/** Send WONT command.
@return
TRUE if the command was successfully sent.
*/
virtual BOOL SendWont(
BYTE option ///< Option to WONT
);
enum SubOptionCodes {
SubOptionIs = 0, ///< Sub-option is...
SubOptionSend = 1, ///< Request to send option.
};
// Codes for sub option negotiation.
/** Send a sub-option with the information given.
@return
TRUE if the command was successfully sent.
*/
BOOL SendSubOption(
BYTE code, ///< Suboptions option code.
const BYTE * info, ///< Information to send.
PINDEX len, ///< Length of information.
int subCode = -1 ///< Suboptions sub-code, -1 indicates no sub-code.
);
/** Set if the option on our side is possible, this does not mean it is set
it only means that in response to a DO we WILL rather than WONT.
*/
void SetOurOption(
BYTE code, ///< Option to check.
BOOL state = TRUE ///< New state for for option.
) { option[code].weCan = state; }
/** Set if the option on their side is desired, this does not mean it is set
it only means that in response to a WILL we DO rather than DONT.
*/
void SetTheirOption(
BYTE code, ///< Option to check.
BOOL state = TRUE ///< New state for for option.
) { option[code].theyShould = state; }
/** Determine if the option on our side is enabled.
@return
TRUE if option is enabled.
*/
BOOL IsOurOption(
BYTE code ///< Option to check.
) const { return option[code].ourState == OptionInfo::IsYes; }
/** Determine if the option on their side is enabled.
@return
TRUE if option is enabled.
*/
BOOL IsTheirOption(
BYTE code ///< Option to check.
) const { return option[code].theirState == OptionInfo::IsYes; }
void SetTerminalType(
const PString & newType ///< New terminal type description string.
);
// Set the terminal type description string for TELNET protocol.
const PString & GetTerminalType() const { return terminalType; }
// Get the terminal type description string for TELNET protocol.
void SetWindowSize(
WORD width, ///< New window width.
WORD height ///< New window height.
);
// Set the width and height of the Network Virtual Terminal window.
void GetWindowSize(
WORD & width, ///< Old window width.
WORD & height ///< Old window height.
) const;
// Get the width and height of the Network Virtual Terminal window.
protected:
void Construct();
// Common construct code for TELNET socket channel.
/** This callback function is called by the system when it receives a DO
request from the remote system.
The default action is to send a WILL for options that are understood by
the standard TELNET class and a WONT for all others.
@return
TRUE if option is accepted.
*/
virtual void OnDo(
BYTE option ///< Option to DO
);
/** This callback function is called by the system when it receives a DONT
request from the remote system.
The default action is to disable options that are understood by the
standard TELNET class. All others are ignored.
*/
virtual void OnDont(
BYTE option ///< Option to DONT
);
/** This callback function is called by the system when it receives a WILL
request from the remote system.
The default action is to send a DO for options that are understood by
the standard TELNET class and a DONT for all others.
*/
virtual void OnWill(
BYTE option ///< Option to WILL
);
/** This callback function is called by the system when it receives a WONT
request from the remote system.
The default action is to disable options that are understood by the
standard TELNET class. All others are ignored.
*/
virtual void OnWont(
BYTE option ///< Option to WONT
);
/** This callback function is called by the system when it receives a
sub-option command from the remote system.
*/
virtual void OnSubOption(
BYTE code, ///< Option code for sub-option data.
const BYTE * info, ///< Extra information being sent in the sub-option.
PINDEX len ///< Number of extra bytes.
);
/** This callback function is called by the system when it receives an
telnet command that it does not do anything with.
The default action displays a message to the <A>PError</A> stream
(when <CODE>debug</CODE> is TRUE) and returns TRUE;
@return
TRUE if next byte is not part of the command.
*/
virtual BOOL OnCommand(
BYTE code ///< Code received that could not be precessed.
);
// Member variables.
struct OptionInfo {
enum {
IsNo, IsYes, WantNo, WantNoQueued, WantYes, WantYesQueued
};
unsigned weCan:1; // We can do the option if they want us to do.
unsigned ourState:3;
unsigned theyShould:1; // They should if they will.
unsigned theirState:3;
};
OptionInfo option[MaxOptions];
// Information on protocol options.
PString terminalType;
// Type of terminal connected to telnet socket, defaults to "UNKNOWN"
WORD windowWidth, windowHeight;
// Size of the "window" used by the NVT.
BOOL debug;
// Debug socket, output messages to PError stream.
private:
enum State {
StateNormal,
StateCarriageReturn,
StateIAC,
StateDo,
StateDont,
StateWill,
StateWont,
StateSubNegotiations,
StateEndNegotiations
};
// Internal states for the TELNET decoder
State state;
// Current state of incoming characters.
PBYTEArray subOption;
// Storage for sub-negotiated options
unsigned synchronising;
BOOL StartSend(const char * which, BYTE code);
};
#endif
// End Of File ///////////////////////////////////////////////////////////////
|