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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * ethsock.h
  3.  *
  4.  * Direct Ethernet socket I/O channel 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: ethsock.h,v $
  30.  * Revision 1.11  1999/03/09 02:59:49  robertj
  31.  * Changed comments to doc++ compatible documentation.
  32.  *
  33.  * Revision 1.10  1999/02/16 08:07:11  robertj
  34.  * MSVC 6.0 compatibility changes.
  35.  *
  36.  * Revision 1.9  1998/11/20 03:18:24  robertj
  37.  * Split rad and write buffers to separate pools.
  38.  *
  39.  * Revision 1.8  1998/11/19 05:18:21  robertj
  40.  * Added route table manipulation functions to PIPSocket class.
  41.  *
  42.  * Revision 1.7  1998/10/12 09:34:40  robertj
  43.  * New method for getting IP addresses of interfaces.
  44.  *
  45.  * Revision 1.6  1998/09/23 06:20:31  robertj
  46.  * Added open source copyright license.
  47.  *
  48.  * Revision 1.5  1998/09/14 12:27:21  robertj
  49.  * Added function to parse type out of ethernet/802.2 frame.
  50.  *
  51.  * Revision 1.4  1998/08/25 11:06:34  robertj
  52.  * Fixed output of PEthSocket::Address variables to streams.
  53.  *
  54.  * Revision 1.3  1998/08/22 04:07:42  robertj
  55.  * Fixed GNU problem with structure packing
  56.  *
  57.  * Revision 1.2  1998/08/21 05:26:34  robertj
  58.  * Fine tuning of interface.
  59.  *
  60.  * Revision 1.1  1998/08/20 05:46:45  robertj
  61.  * Initial revision
  62.  *
  63.  */
  64. #define _PETHSOCKET
  65. #ifdef __GNUC__
  66. #pragma interface
  67. #endif
  68. #ifndef _PSOCKET
  69. #include <socket.h>
  70. #endif
  71. /**This class describes a type of socket that will communicate using
  72.    raw ethernet packets.
  73.  */
  74. class PEthSocket : public PSocket
  75. {
  76.   PCLASSINFO(PEthSocket, PSocket);
  77.   public:
  78.   /**@name Constructor */
  79.   //@{
  80.     /**Create a new ethernet packet socket. Some platforms require a set of
  81.        buffers to be allocated to avoid losing frequent packets.
  82.      */
  83.     PEthSocket(
  84.       PINDEX nReadBuffers = 8,  /// Number of buffers used for reading.
  85.       PINDEX nWriteBuffers = 1, /// Number of buffers used for writing.
  86.       PINDEX size = 1514        /// Size of each buffer.
  87.     );
  88.       /// Close the socket
  89.     ~PEthSocket();
  90.   //@}
  91.   public:
  92. #pragma pack(1)
  93.     /** An ethernet MAC Address specification.
  94.      */
  95.     union Address {
  96.       BYTE b[6];
  97.       WORD w[3];
  98.       struct {
  99.         DWORD l;
  100.         WORD  s;
  101.       } ls;
  102.       Address();
  103.       Address(const BYTE * addr);
  104.       Address(const Address & addr);
  105.       Address(const PString & str);
  106.       Address & operator=(const Address & addr);
  107.       Address & operator=(const PString & str);
  108.       BOOL operator==(const BYTE * eth) const    { return memcmp(b, eth, sizeof(b)) == 0; }
  109.       BOOL operator!=(const BYTE * eth) const    { return memcmp(b, eth, sizeof(b)) != 0; }
  110.       BOOL operator==(const Address & eth) const { return ls.l == eth.ls.l && ls.s == eth.ls.s; }
  111.       BOOL operator!=(const Address & eth) const { return ls.l != eth.ls.l || ls.s != eth.ls.s; }
  112.       operator PString() const;
  113.       friend ostream & operator<<(ostream & s, const Address & a)
  114.         { return s << (PString)a; }
  115.     };
  116.     /** An ethernet MAC frame.
  117.      */
  118.     struct Frame {
  119.       Address dst_addr;
  120.       Address src_addr;
  121.       union {
  122.         struct {
  123.           WORD type;
  124.           BYTE payload[1500];
  125.         } ether;
  126.         struct {
  127.           WORD length;
  128.           BYTE dsap;
  129.           BYTE ssap;
  130.           BYTE ctrl;
  131.           BYTE oui[3];
  132.           WORD type;
  133.           BYTE payload[1492];
  134.         } snap;
  135.       };
  136.       /**Parse the Ethernet Frame to extract the frame type and the address of
  137.          the payload. The length should be the original bytes read in the frame
  138.          and may be altered to information contained in the frame, if available.
  139.        */
  140.       void Parse(
  141.         WORD & type,      // Type of frame
  142.         BYTE * & payload, // Pointer to payload
  143.         PINDEX & length   // Length of payload (on input is full frame length)
  144.       );
  145.     };
  146. #pragma pack()
  147.   /**@name Overrides from class PChannel */
  148.   //@{
  149.     /**Close the channel, shutting down the link to the data source.
  150.        @return
  151.        TRUE if the channel successfully closed.
  152.      */
  153.     virtual BOOL Close();
  154.     /**Low level read from the channel. This function may block until the
  155.        requested number of characters were read or the read timeout was
  156.        reached. The GetLastReadCount() function returns the actual number
  157.        of bytes read.
  158.        The GetErrorCode() function should be consulted after Read() returns
  159.        FALSE to determine what caused the failure.
  160.        @return
  161.        TRUE indicates that at least one character was read from the channel.
  162.        FALSE means no bytes were read due to timeout or some other I/O error.
  163.      */
  164.     virtual BOOL Read(
  165.       void * buf,   /// Pointer to a block of memory to receive the read bytes.
  166.       PINDEX len    /// Maximum number of bytes to read into the buffer.
  167.     );
  168.     /**Low level write to the channel. This function will block until the
  169.        requested number of characters are written or the write timeout is
  170.        reached. The GetLastWriteCount() function returns the actual number
  171.        of bytes written.
  172.        The GetErrorCode() function should be consulted after Write() returns
  173.        FALSE to determine what caused the failure.
  174.        @return
  175.        TRUE if at least len bytes were written to the channel.
  176.      */
  177.     virtual BOOL Write(
  178.       const void * buf, /// Pointer to a block of memory to write.
  179.       PINDEX len        /// Number of bytes to write.
  180.     );
  181.   //@}
  182.   /**@name Overrides from class PSocket */
  183.   //@{
  184.     /**Connect a socket to an interface. The first form opens an interface by
  185.        a name as returned by the EnumInterfaces() function. The second opens
  186.        the interface that has the specified MAC address.
  187.        @return
  188.        TRUE if the channel was successfully connected to the interface.
  189.      */
  190.     virtual BOOL Connect(
  191.       const PString & address   /// Name of interface to connect to.
  192.     );
  193.     /**This function is illegal and will assert if attempted. You must be
  194.        connected to an interface using Connect() to do I/O on the socket.
  195.        @return
  196.        TRUE if the channel was successfully opened.
  197.      */
  198.     virtual BOOL Listen(
  199.       unsigned queueSize = 5,  /// Number of pending accepts that may be queued.
  200.       WORD port = 0,           /// Port number to use for the connection.
  201.       Reusability reuse = AddressIsExclusive /// Can/Cant listen more than once.
  202.     );
  203.   //@}
  204.   /**@name Information functions */
  205.   //@{
  206.     /**Enumerate all the interfaces that are capable of being accessed at the
  207.        ethernet level. Begin with index 0, and increment until the function
  208.        returns FALSE. The name string returned can be passed, unchanged, to
  209.        the Connect() function.
  210.        Note that the driver does not need to be open for this function to work.
  211.        @return
  212.        TRUE if an interface has the index supplied.
  213.      */
  214.     BOOL EnumInterfaces(
  215.       PINDEX idx,      /// Index of interface
  216.       PString & name   /// Interface name
  217.     );
  218.     /**Get the low level MAC address of the open interface.
  219.        @return
  220.        TRUE if the address is returned, FALSE on error.
  221.      */
  222.     BOOL GetAddress(
  223.       Address & addr   /// Variable to receive the MAC address.
  224.     );
  225.     /**Get the prime IP number bound to the open interface.
  226.        @return
  227.        TRUE if the address is returned, FALSE on error.
  228.      */
  229.     BOOL GetIpAddress(
  230.       PIPSocket::Address & addr     /// Variable to receive the IP address.
  231.     );
  232.     /**Get the prime IP number bound to the open interface.
  233.        This also returns the net mask associated with the open interface.
  234.        @return
  235.        TRUE if the address is returned, FALSE on error.
  236.      */
  237.     BOOL GetIpAddress(
  238.       PIPSocket::Address & addr,    /// Variable to receive the IP address.
  239.       PIPSocket::Address & netMask  /// Variable to receive the net mask.
  240.     );
  241.     /**Enumerate all of the IP addresses and net masks bound to the open
  242.        interface. This allows all the addresses to be found on multi-homed
  243.        hosts. Begin with index 0 and increment until the function returns
  244.        FALSE to enumerate all the addresses.
  245.        @return
  246.        TRUE if the address is returned, FALSE on error or if there are no more
  247.        addresses bound to the interface.
  248.      */
  249.     BOOL EnumIpAddress(
  250.       PINDEX idx,                   /// Index 
  251.       PIPSocket::Address & addr,    /// Variable to receive the IP address.
  252.       PIPSocket::Address & netMask  /// Variable to receive the net mask.
  253.     );
  254.     /// Medium types for the open interface.
  255.     enum MediumTypes {
  256.       /// A Loopback Network
  257.       MediumLoop,     
  258.       /// An ethernet Network Interface Card (10base2, 10baseT etc)
  259.       Medium802_3,    
  260.       /// A Wide Area Network (modem etc)
  261.       MediumWan,      
  262.       /// Something else
  263.       MediumUnknown,  
  264.       NumMediumTypes
  265.     };
  266.     /**Return the type of the interface.
  267.        @return
  268.        Type enum for the interface, or NumMediumTypes if interface not open.
  269.      */
  270.     MediumTypes GetMedium();
  271.   //@}
  272.   /**@name Filtering functions */
  273.   //@{
  274.     /// Type codes for ethernet frames.
  275.     enum EthTypes {
  276.       /// All frames (3 is value for Linux)
  277.       TypeAll = 3,          
  278.       /// Internet Protocol
  279.       TypeIP  = 0x800,      
  280.       /// X.25
  281.       TypeX25 = 0x805,      
  282.       /// Address Resolution Protocol
  283.       TypeARP = 0x806,      
  284.       /// Appletalk DDP
  285.       TypeAtalk = 0x809B,   
  286.       /// Appletalk AARP
  287.       TypeAARP = 0x80F3,    
  288.       /// Novell IPX
  289.       TypeIPX = 0x8137,     
  290.       /// Bluebook IPv6
  291.       TypeIPv6 = 0x86DD     
  292.     };
  293.     /// Mask filter bits for GetFilter() function.
  294.     enum FilterMask {
  295.       /// Packets directed at the interface.
  296.       FilterDirected     = 0x01,    
  297.       /// Multicast packets directed at the interface.
  298.       FilterMulticast    = 0x02,    
  299.       /// All multicast packets.
  300.       FilterAllMulticast = 0x04,    
  301.       /// Packets with a broadcast address.
  302.       FilterBroadcast    = 0x08,    
  303.       /// All packets.
  304.       FilterPromiscuous  = 0x10     
  305.     };
  306.     /**Get the current filtering criteria for receiving packets.
  307.        A bit-wise OR of the FilterMask values will filter packets so that
  308.        they do not appear in the Read() function at all.
  309.        The type is be the specific frame type to accept. A value of TypeAll
  310.        may be used to match all frame types.
  311.        @return
  312.        A bit mask is returned, a value of 0 indicates an error.
  313.      */
  314.     BOOL GetFilter(
  315.       unsigned & mask,  /// Bits for filtering on address
  316.       WORD & type       /// Code for filtering on type.
  317.     );
  318.     /**Set the current filtering criteria for receiving packets. A bit-wise OR
  319.        of the FilterMask values will filter packets so that they do not appear
  320.        in the Read() function at all.
  321.        The type is be the specific frame type to accept. A value of TypeAll
  322.        may be used to match all frame types.
  323.        A value of zero for the filter mask is useless and will assert.
  324.        @return
  325.        TRUE if the address is returned, FALSE on error.
  326.      */
  327.     BOOL SetFilter(
  328.       unsigned mask,       /// Bits for filtering on address
  329.       WORD type = TypeAll  /// Code for filtering on type.
  330.     );
  331.   //@}
  332.   /**@name I/O functions */
  333.   //@{
  334.     /**Reset the interface.
  335.      */
  336.     BOOL ResetAdaptor();
  337.     /**Read a packet from the interface and parse out the information
  338.        specified by the parameters. This will automatically adjust for 802.2
  339.        and 802.3 ethernet frames.
  340.        @return
  341.        TRUE if the packet read, FALSE on error.
  342.      */
  343.     BOOL ReadPacket(
  344.       PBYTEArray & buffer,  /// Buffer to receive the raw packet
  345.       Address & dest,       /// Destination address of packet
  346.       Address & src,        /// Source address of packet
  347.       WORD & type,          /// Packet frame type ID
  348.       PINDEX & len,         /// Length of payload
  349.       BYTE * & payload      /// Pointer into #buffer# of payload.
  350.     );
  351.   //@}
  352.   protected:
  353.     virtual BOOL OpenSocket();
  354.     virtual const char * GetProtocolName() const;
  355.     WORD filterType;  // Remember the set filter frame type
  356. #ifdef DOC_PLUS_PLUS
  357. };
  358. #endif
  359. // Class declaration continued in platform specific header file ///////////////