2011年4月13日 星期三

[ Network Programming in MS ] WinSock Design (Part3 : Winsock Catalog)

Preface : 
The Winsock catalog is a database that contains the different protocols available on the system. Winsock provides a method for determining which protocols are installed on a given workstation and returning a variety of characteristics for each protocol. If a protocol is capable of multiple behaviors, each distinct behavior type has its own catalog entry within the system. For example, if you install TCP/IP on your system, there will be two IP entries: one for TCP, which is reliable and connection-oriented, and one for UDP, which is unreliable and connectionless. 

Winsock Catalog : 
The function call to obtain information on installed network protocols is WSAEnumProtocols and is defined as : 

  1. int WSAEnumProtocols (  
  2.     LPINT lpiProtocols,   
  3.     LPWSAPROTOCOL_INFO lpProtocolBuffer,   
  4.     LPDWORD lpdwBufferLength  
  5. );  
This function supersedes the Winsock 1.1 function EnumProtocols, the necessary function for Windows CE. The only difference is that WSAEnumProtocolsreturns an array of WSAPROTOCOL_INFO structures, whereas EnumProtocols returns an array of PROTOCOL_INFO structures that contain fewer fields than the WSAPROTOCOL_INFO structure (but more or less the same information). The WSAPROTOCOL_INFO structure is defined as : 
  1. typedef struct _WSAPROTOCOL_INFO {   
  2.     DWORD             dwServiceFlags1;   
  3.     DWORD             dwServiceFlags2;   
  4.     DWORD             dwServiceFlags3;   
  5.     DWORD             dwServiceFlags4;   
  6.     DWORD             dwProviderFlags;   
  7.     GUID              ProviderId;   
  8.     DWORD             dwCatalogEntryId;   
  9.     WSAPROTOCOLCHAIN  ProtocolChain;   
  10.     int               iVersion;   
  11.     int               iAddressFamily;   
  12.     int               iMaxSockAddr;   
  13.     int               iMinSockAddr;   
  14.     int               iSocketType;   
  15.     int               iProtocol;   
  16.     int               iProtocolMaxOffset;   
  17.     int               iNetworkByteOrder;   
  18.     int               iSecurityScheme;   
  19.     DWORD             dwMessageSize;   
  20.     DWORD             dwProviderReserved;   
  21.     TCHAR             szProtocol[WSAPROTOCOL_LEN + 1];  
  22. } WSAPROTOCOL_INFO, FAR * LPWSAPROTOCOL_INFO;  
The easiest way to call WSAEnumProtocols is to make the first call with lpProtocolBuffer equal to NULL and set lpdwBufferLength to 0. The call fails withWSAENOBUFS, but lpdwBufferLength then contains the correct size of the buffer required to return all the protocol information. Once you allocate the correct buffer size and make another call with the supplied buffer, the function returns the number of WSAPROTOCOL_INFO structures returned. At this point, you can step through the structures to find the protocol entry with your required attributes. 
The most commonly used field of the WSAPROTOCOL_INFO structure is dwServiceFlags1, which is a bit field for the various protocol attributes. Table 2-1 lists the various bit flags that can be set in the field and briefly describes the meaning of each property : 
 

Most of these flags will be discussed in one or more of the following chapters, so we won't go into detail about the full meaning of each flag now. The other fields of importance are iProtocol, iSocketType, and iAddressFamily. The iProtocol field defines which protocol an entry belongs to. The iSocketType field is important if the protocol is capable of multiple behaviors, such as stream-oriented connections or datagram connections. Finally, iAddressFamily is used to distinguish the correct addressing structure to use for a given protocol. 

Winsock Catalog and Win64 : 
On 64-bit Windows, it is possible to run 32-bit applications under the WOW64 (Windows on Windows) subsystem. Because both 32-bit and 64-bit applications may need to access the Winsock catalog, the system maintains two separate catalogs. When a 64-bit Winsock application runs and callsWSAEnumProtocols, the 64-bit catalog is used. Likewise, when a 32-bit Winsock application calls WSAEnumProtocols, the 32-bit catalog is used. This will become more important when dealing with the Winsock Service Provider Interface, which is discussed in Chapter 12. 

Creating Sockets : 
In Chapter 1 we saw simple examples of how to create a socket using the socket function. This function takes three parameters: address family, socket type, and protocol. When an application creates a socket, the Winsock catalog is consulted and an attempt is made to match the supplied parameters with those contained in each WSAPROTOCOL_INFO structure. If the parameters match, then a socket is created from that provider. Note that in some instances the protocol parameter can be 0. If the dwProviderFlags field of the WSAPROTOCOL_INFO structure is PFL_MATCHES_PROTOCOL_ZERO and if the requested address family and socket type match its entries, then that provider is used to create a socket. For example, consider the following call: 
  1. SOCKET          s;  
  2. s = socket(AF_INET, SOCK_STREAM, 0);  
Winsock will enumerate the catalog and first match the address family followed by the socket type. Since the protocol value is 0 and the MSAFD TCP provider contains the PFL_MATCHES_PROTOCOL_ZERO flag, this call will create a TCP socket from the MSAFD TCP provider. The system will not attempt to match the request to any further providers. 
In some instances, multiple providers may share the same address family, socket type, and protocol. This is the case with the RSVP provider. The RSVP provider offers QOS over TCP/IP and UDP/IP. Because multiple providers share the same address family, socket type, and protocol, there is no way to use the socket API to create a socket from the RSVP provider. To do so, you must use the Winsock 2 function WSASocket, which is defined as : 
  1. SOCKET WSASocket(  
  2.     int af,   
  3.     int type,   
  4.     int protocol,  
  5.     LPWSAPROTOCOL_INFO lpProtocolInfo,  
  6.     GROUP g,  
  7.     DWORD dwFlags);  
The first three parameters are the same as those of socket but the fourth parameter takes a WSAPROTOCOL_INFO structure. If lpProtocolInfo references a provider entry and each of the first three parameters is the predefined value FROM_PROTOCOL_INFO, then a socket is created from the given provider. An application can create an RSVP socket using this method. 
The fourth parameter deals with socket groups that are discussed in the Winsock specification but are not implemented in Windows. The last parameter is optional flags that may be passed. For now, the only flag of importance is WSA_FLAG_OVERLAPPED. If you plan on using overlapped IO (as described in Chapter 5), then this flag needs to be present when creating the socket. Note that when using the socket API, the overlapped flag is always implied. The other socket flags pertain to multicasting and are covered in Chapter 9.

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...