/** Function to handle received ACK packet. If the ACK number matches the expected block number, and there are more data pending, send the next block. Otherwise tell the caller that we are done. @param Instance The MTFTP upload session @param Packet The MTFTP packet received @param Len The packet length @param Completed Return whether the upload has finished. @retval EFI_SUCCESS The ACK is successfully processed. @retval EFI_TFTP_ERROR The block number loops back. @retval Others Failed to transmit the next data packet. **/ EFI_STATUS Mtftp4WrqHandleAck ( IN MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, OUT BOOLEAN *Completed ) { UINT16 AckNum; INTN Expected; UINT64 TotalBlock; *Completed = FALSE; AckNum = NTOHS (Packet->Ack.Block[0]); Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); ASSERT (Expected >= 0); // // Get an unwanted ACK, return EFI_SUCCESS to let Mtftp4WrqInput // restart receive. // if (Expected != AckNum) { return EFI_SUCCESS; } // // Remove the acked block number, if this is the last block number, // tell the Mtftp4WrqInput to finish the transfer. This is the last // block number if the block range are empty.. // Mtftp4RemoveBlockNum (&Instance->Blocks, AckNum, *Completed,&TotalBlock); Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); if (Expected < 0) { // // The block range is empty. It may either because the the last // block has been ACKed, or the sequence number just looped back, // that is, there is more than 0xffff blocks. // if (Instance->LastBlock == AckNum) { ASSERT (Instance->LastBlock >= 1); *Completed = TRUE; return EFI_SUCCESS; } else { Mtftp4SendError ( Instance, EFI_MTFTP4_ERRORCODE_REQUEST_DENIED, (UINT8 *) "Block number rolls back, not supported, try blksize option" ); return EFI_TFTP_ERROR; } } return Mtftp4WrqSendBlock (Instance, (UINT16) Expected); }
/** Function to handle the MTFTP OACK packet. It parses the packet's options, and update the internal states of the session. @param Instance The MTFTP session @param Packet The received OACK packet @param Len The length of the packet @param Completed Whether the transmisson has completed. NOT used by this function. @retval EFI_SUCCESS The OACK process is OK @retval EFI_TFTP_ERROR Some error occured, and the session reset. **/ EFI_STATUS Mtftp4WrqHandleOack ( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, OUT BOOLEAN *Completed ) { MTFTP4_OPTION Reply; EFI_MTFTP4_PACKET Bogus; EFI_STATUS Status; INTN Expected; *Completed = FALSE; // // Ignore the OACK if already started the upload // Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); if (Expected != 0) { return EFI_SUCCESS; } // // Parse and validate the options from server // ZeroMem (&Reply, sizeof (MTFTP4_OPTION)); Status = Mtftp4ParseOptionOack (Packet, Len, &Reply); if (EFI_ERROR (Status) || !Mtftp4WrqOackValid (&Reply, &Instance->RequestOption)) { // // Don't send a MTFTP error packet when out of resource, it can // only make it worse. // if (Status != EFI_OUT_OF_RESOURCES) { Mtftp4SendError ( Instance, EFI_MTFTP4_ERRORCODE_ILLEGAL_OPERATION, (UINT8 *) "Mal-formated OACK packet" ); } return EFI_TFTP_ERROR; } if (Reply.BlkSize != 0) { Instance->BlkSize = Reply.BlkSize; } if (Reply.Timeout != 0) { Instance->Timeout = Reply.Timeout; } // // Build a bogus ACK0 packet then pass it to the Mtftp4WrqHandleAck, // which will start the transmission of the first data block. // Bogus.Ack.OpCode = HTONS (EFI_MTFTP4_OPCODE_ACK); Bogus.Ack.Block[0] = 0; Status = Mtftp4WrqHandleAck ( Instance, &Bogus, sizeof (EFI_MTFTP4_ACK_HEADER), Completed ); return Status; }
/** Function to process the OACK. It will first validate the OACK packet, then update the various negotiated parameters. @param Instance The download MTFTP session @param Packet The packet received @param Len The packet length @param Multicast Whether this packet is received as a multicast @param Completed Returns whether the download has completed. NOT used by this function. @retval EFI_DEVICE_ERROR Failed to create/start a multicast UDP child @retval EFI_TFTP_ERROR Some error happened during the process @retval EFI_SUCCESS The OACK is successfully processed. **/ EFI_STATUS Mtftp4RrqHandleOack ( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, IN BOOLEAN Multicast, OUT BOOLEAN *Completed ) { MTFTP4_OPTION Reply; EFI_STATUS Status; INTN Expected; EFI_UDP4_PROTOCOL *Udp4; *Completed = FALSE; // // If already started the master download, don't change the // setting. Master download always succeeds. // Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); ASSERT (Expected != -1); if (Instance->Master && (Expected != 1)) { return EFI_SUCCESS; } // // Parse and validate the options from server // ZeroMem (&Reply, sizeof (MTFTP4_OPTION)); Status = Mtftp4ParseOptionOack (Packet, Len, &Reply); if (EFI_ERROR (Status) || !Mtftp4RrqOackValid (Instance, &Reply, &Instance->RequestOption)) { // // Don't send an ERROR packet if the error is EFI_OUT_OF_RESOURCES. // if (Status != EFI_OUT_OF_RESOURCES) { Mtftp4SendError ( Instance, EFI_MTFTP4_ERRORCODE_ILLEGAL_OPERATION, (UINT8 *) "Mal-formated OACK packet" ); } return EFI_TFTP_ERROR; } if ((Reply.Exist & MTFTP4_MCAST_EXIST) != 0) { // // Save the multicast info. Always update the Master, only update the // multicast IP address, block size, timeoute at the first time. If IP // address is updated, create a UDP child to receive the multicast. // Instance->Master = Reply.Master; if (Instance->McastIp == 0) { if ((Reply.McastIp == 0) || (Reply.McastPort == 0)) { Mtftp4SendError ( Instance, EFI_MTFTP4_ERRORCODE_ILLEGAL_OPERATION, (UINT8 *) "Illegal multicast setting" ); return EFI_TFTP_ERROR; } // // Create a UDP child then start receive the multicast from it. // Instance->McastIp = Reply.McastIp; Instance->McastPort = Reply.McastPort; if (Instance->McastUdpPort == NULL) { Instance->McastUdpPort = UdpIoCreateIo ( Instance->Service->Controller, Instance->Service->Image, Mtftp4RrqConfigMcastPort, UDP_IO_UDP4_VERSION, Instance ); if (Instance->McastUdpPort != NULL) { Status = gBS->OpenProtocol ( Instance->McastUdpPort->UdpHandle, &gEfiUdp4ProtocolGuid, (VOID **) &Udp4, Instance->Service->Image, Instance->Handle, EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER ); if (EFI_ERROR (Status)) { UdpIoFreeIo (Instance->McastUdpPort); Instance->McastUdpPort = NULL; return EFI_DEVICE_ERROR; } } } if (Instance->McastUdpPort == NULL) { return EFI_DEVICE_ERROR; } Status = UdpIoRecvDatagram (Instance->McastUdpPort, Mtftp4RrqInput, Instance, 0); if (EFI_ERROR (Status)) { Mtftp4SendError ( Instance, EFI_MTFTP4_ERRORCODE_ACCESS_VIOLATION, (UINT8 *) "Failed to create socket to receive multicast packet" ); return Status; } // // Update the parameters used. // if (Reply.BlkSize != 0) { Instance->BlkSize = Reply.BlkSize; } if (Reply.Timeout != 0) { Instance->Timeout = Reply.Timeout; } } } else { Instance->Master = TRUE; if (Reply.BlkSize != 0) { Instance->BlkSize = Reply.BlkSize; } if (Reply.Timeout != 0) { Instance->Timeout = Reply.Timeout; } } // // Send an ACK to (Expected - 1) which is 0 for unicast download, // or tell the server we want to receive the Expected block. // return Mtftp4RrqSendAck (Instance, (UINT16) (Expected - 1)); }
/** Function to process the received data packets. It will save the block then send back an ACK if it is active. @param Instance The downloading MTFTP session @param Packet The packet received @param Len The length of the packet @param Multicast Whether this packet is multicast or unicast @param Completed Return whether the download has completed @retval EFI_SUCCESS The data packet is successfully processed @retval EFI_ABORTED The download is aborted by the user @retval EFI_BUFFER_TOO_SMALL The user provided buffer is too small **/ EFI_STATUS Mtftp4RrqHandleData ( IN MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, IN BOOLEAN Multicast, OUT BOOLEAN *Completed ) { EFI_STATUS Status; UINT16 BlockNum; INTN Expected; *Completed = FALSE; BlockNum = NTOHS (Packet->Data.Block); Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); ASSERT (Expected >= 0); // // If we are active and received an unexpected packet, retransmit // the last ACK then restart receiving. If we are passive, save // the block. // if (Instance->Master && (Expected != BlockNum)) { Mtftp4Retransmit (Instance); return EFI_SUCCESS; } Status = Mtftp4RrqSaveBlock (Instance, Packet, Len); if (EFI_ERROR (Status)) { return Status; } // // Reset the passive client's timer whenever it received a // valid data packet. // if (!Instance->Master) { Mtftp4SetTimeout (Instance); } // // Check whether we have received all the blocks. Send the ACK if we // are active (unicast client or master client for multicast download). // If we have received all the blocks, send an ACK even if we are passive // to tell the server that we are done. // Expected = Mtftp4GetNextBlockNum (&Instance->Blocks); if (Instance->Master || (Expected < 0)) { if (Expected < 0) { // // If we are passive client, then the just received Block maybe // isn't the last block. We need to send an ACK to the last block // to inform the server that we are done. If we are active client, // the Block == Instance->LastBlock. // BlockNum = Instance->LastBlock; *Completed = TRUE; } else { BlockNum = (UINT16) (Expected - 1); } Mtftp4RrqSendAck (Instance, BlockNum); } return EFI_SUCCESS; }