Using the Windows Deployment Services Server API

In environments where the standard Windows Deployment Services (WDS) solution cannot be used, the WDS server exposes an API that enables developers to write plug-ins, referred to as providers, to handle preboot execution environment (PXE) requests. Developers should adhere to the following guidelines when writing PXE providers for WDS.

Install the WDS Role on the Server

  • Windows Deployment Services (WDS) is the revised version of Remote Installation Services (RIS), you will need the WDS server role to implement the WDS PXE server and providers.
  • WDS replaces RIS as the standard component starting with Windows Server 2008 and Windows Server 2003 with Service Pack 2 (SP2).
  • You must update the RIS server to WDS on Windows Server 2003 with Service Pack 1 (SP1). You can install the WDS server role with the Windows Automated Installation Kit (WAIK).

Register Providers

  • Register the provider dynamic-link library (DLL) during its installation and insert the provider into the ordered list of registered providers.

    Note

    When you install a new or modified provider, you will need to restart WDS PXE service for the changes to take effect.

     

  • Use the PxeProviderRegister function to register the provider and add it to the list. Use the PxeProviderUnRegister function to unregister a registered provider and remove it from the list.

  • Specify the sequence of the provider in the ordered list. The index of a provider in the list cannot be guaranteed because another provider may later be registered before it. To insert the provider in the list before or after another registered provider, first use the PxeProviderQueryIndex function to get the index of the registered provider and then register the new provider while specifying a larger or smaller index value.

  • The installation can store provider configuration information under the registry key returned when the provider is registered. The address of the registry key is received by the phProviderKey of PxeProviderRegister. The provider receives a handle to this same key as the hProviderKey parameter to its PxeProviderInitialize callback. The provider should store the address of this key.

  • Always install the provider dynamic-link library (DLL) in the server's Program Files folder.

Initialize

  • Include a DLL that exports the PxeProviderInitialize callback function in the provider. Every provider requires a PxeProviderInitialize callback. When WDS loads a provider, it calls the provider's PxeProviderInitialize function and passes a handle to the same key that is used to store configuration information during provider registration.
  • When the PxeProviderInitialize callback returns and is successful, the provider should be fully initialized and ready to process requests.
  • Register every callback in the provider during the processing of the PxeProviderInitialize function. Callbacks should be registered with the PxeRegisterCallback function.
  • Initialize all the provider's internal resources within the processing of its PxeProviderInitialize function.

Shutdown

Handle Request Packet

Implement the PxeProviderRecvRequest callback for the provider. Every provider is required to have a PxeProviderRecvRequest callback. When WDS receives a request, it calls the PxeProviderRecvRequest callback for the first provider in the registered provider list.

  • If the provider will process this request synchronously, the PxeProviderRecvRequest function should return a value of ERROR_SUCCESS. If and only if the provider will process this request asynchronously, the PxeProviderRecvRequest callback should return ERROR_IO_PENDING and call the PxeAsyncRecvDone function when the request has been processed.

  • The PxeProviderRecvRequest callback and the PxeAsyncRecvDone function returns the address of a PXE_BOOT_ACTION enum that describes the action taken by the provider to handle the request.

    There are four ways for a provider to handle a request:

    • The provider replies to the client with a standard DHCP response packet that contains a path to the Network Boot Program. Returning the PXE_BA_NBP value for the enum means that the provider has successfully processed the request packet and completed the request by sending a response packet by calling the PxePacketAllocate and PxeSendReply functions.
    • The provider replies to the client with a custom response packet that does not conform to DHCP. Returning the PXE_BA_CUSTOM value for the enum means that the provider has successfully processed the request packet and completed the request by sending a custom response packet by calling the PxePacketAllocate and PxeSendReply functions.
    • The provider determines the request should be ignored. Returning the PXE_BA_IGNORE value for the enum means the provider has released all resources associated with the request and the request is not passed to the next provider in the list of registered providers. Providers may use this option if they detect that a request packet is invalid.
    • The provider declines to service the request. Returning the PXE_BA_REJECT value for the enum instructs the system to pass the request to the next provider in the list of registered providers. If this were the last provider in the list, this releases all resources associated with the request and the request is ignored.
    • Register the PxeProviderRecvRequest callback by calling the PxeRegisterCallback function with PXE_CALLBACK_RECV_REQUEST during the processing of the PxeProviderInitialize callback.

Generate Response Packet

  • Use the API to write providers to handle DHCP request and generate response packets.
  • The PxeProviderSetAttribute function specifies the attributes used by the provider to filter packets. The attributes of the provider can be specified so that the provider see all packets, the provider sees only DHCP packets, or the provider sees only DHCP packets that specify the DHCP Vendor Class Identifier option (60) as "PXEClient".
  • The PxeDhcpIsValid function checks that a packet is a valid DHCP packet. Providers can use the PxeDhcpIsValid function to check whether a packet from the client is a DHCP packet when the filter set with the PxeProviderSetAttribute function is set to receive all packets to determine if a specified packet is a valid DHCP packet.
  • The PxeDhcpInitialize function initializes a response packet as a DHCP reply packet that is based on the information in a packet received from the client. The PxeProviderInitialize function takes the address of a valid DHCP packet received from the client in the PxeProviderRecvRequest callback. The PxeDhcpInitialize function takes a pointer to a reply packet allocated with the PxePacketAllocate function.
  • The PxeDhcpGetOptionValue function retrieves an option value from a DHCP packet. The PxeDhcpGetVendorOptionValue function retrieves an option value from the Vendor Specific Information field (43) of a DHCP packet.
  • The provider can then populate the reply packet with information and use the PxeSendReply function to send the reply packet to the client. The PxeDhcpAppendOption function appends a DHCP option to the reply packet.
  • A provider that replies to client requests by sending a packet must allocate the response packet using the PxePacketAllocate function. The provider can then populate the reply packet with information and use the PxeSendReply function to send the reply packet to the client.
  • When the allocated memory is no longer needed, the provider should release it using the PxePacketFree function.

Enumerate Registered Providers

  • Use the API to write providers that enumerate and check other registered providers in the list.
  • The PxeGetServerInfo function returns information about the PXE server. The PxeGetServerInfo function returns a BOOL that indicates whether tracing is enabled for the server. TRUE indicates that tracing is enabled.
  • The PxeProviderEnumFirst function starts an enumerationof providers in the registered provider list. The PxeProviderEnumFirst function starts the enumeration and returns the address of the handle that should be used when calling the PxeProviderEnumNext function. The PxeProviderEnumNext function returns a PXE_PROVIDER structure containing the information about the provider. The PxeProviderFreeInfo function frees the memory that has been allocated for the PXE_PROVIDER structure by the PxeProviderEnumNext function. The PxeProviderEnumClose function closes the enumeration of providers in the registered providers list.

Handle Service Control Codes

Add Trace Entries to PXE Log

  • The PxeTrace function adds a trace entry to the PXE log. WDSPXE provides tracing to help administrators in troubleshooting. Providers can log trace entries of different severity levels. The administrators can configure WDSPXE to only log entries for certain severity levels.

About the Windows Deployment Services API

Using the Windows Deployment Services Client API