telnet.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:18k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

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