1 #pragma once 2 3 #include "file_io.hpp" 4 5 namespace pldm 6 { 7 8 namespace responder 9 { 10 11 namespace fs = std::filesystem; 12 13 /** 14 * @class FileHandler 15 * 16 * Base class to handle read/write of all oem file types 17 */ 18 class FileHandler 19 { 20 public: 21 /** @brief Method to write an oem file type from host memory. Individual 22 * file types need to override this method to do the file specific 23 * processing 24 * @param[in] offset - offset to read/write 25 * @param[in] length - length to be read/write mentioned by Host 26 * @param[in] address - DMA address 27 * @param[in] oemPlatformHandler - oem handler for PLDM platform related 28 * tasks 29 * @return PLDM status code 30 */ 31 virtual int writeFromMemory(uint32_t offset, uint32_t length, 32 uint64_t address, 33 oem_platform::Handler* oemPlatformHandler) = 0; 34 35 /** @brief Method to read an oem file type into host memory. Individual 36 * file types need to override this method to do the file specific 37 * processing 38 * @param[in] offset - offset to read 39 * @param[in] length - length to be read mentioned by Host 40 * @param[in] address - DMA address 41 * @param[in] oemPlatformHandler - oem handler for PLDM platform related 42 * tasks 43 * @return PLDM status code 44 */ 45 virtual int readIntoMemory(uint32_t offset, uint32_t length, 46 uint64_t address, 47 oem_platform::Handler* oemPlatformHandler) = 0; 48 49 /** @brief Method to read an oem file type's content into the PLDM response. 50 * @param[in] offset - offset to read 51 * @param[in/out] length - length to be read 52 * @param[in] response - PLDM response 53 * @param[in] oemPlatformHandler - oem handler for PLDM platform related 54 * tasks 55 * @return PLDM status code 56 */ 57 virtual int read(uint32_t offset, uint32_t& length, Response& response, 58 oem_platform::Handler* oemPlatformHandler) = 0; 59 60 /** @brief Method to write an oem file by type 61 * @param[in] buffer - buffer to be written to file 62 * @param[in] offset - offset to write to 63 * @param[in/out] length - length to be written 64 * @param[in] oemPlatformHandler - oem handler for PLDM platform related 65 * tasks 66 * @return PLDM status code 67 */ 68 virtual int write(const char* buffer, uint32_t offset, uint32_t& length, 69 oem_platform::Handler* oemPlatformHandler) = 0; 70 71 virtual int fileAck(uint8_t fileStatus) = 0; 72 73 /** @brief Method to process a new file available notification from the 74 * host. The bmc can chose to do different actions based on the file type. 75 * 76 * @param[in] length - size of the file content to be transferred 77 * 78 * @return PLDM status code 79 */ 80 virtual int newFileAvailable(uint64_t length) = 0; 81 82 /** @brief Method to read an oem file type's content into the PLDM response. 83 * @param[in] filePath - file to read from 84 * @param[in] offset - offset to read 85 * @param[in/out] length - length to be read 86 * @param[in] response - PLDM response 87 * @return PLDM status code 88 */ 89 virtual int readFile(const std::string& filePath, uint32_t offset, 90 uint32_t& length, Response& response); 91 92 /** @brief Method to process a file ack with meta data notification from the 93 * host. The bmc can chose to do different actions based on the file type. 94 * 95 * @param[in] fileStatus - Status of the file transfer 96 * @param[in] metaDataValue1 - value of meta data sent by host 97 * @param[in] metaDataValue2 - value of meta data sent by host 98 * @param[in] metaDataValue3 - value of meta data sent by host 99 * @param[in] metaDataValue4 - value of meta data sent by host 100 * 101 * @return PLDM status code 102 */ 103 virtual int fileAckWithMetaData( 104 uint8_t fileStatus, uint32_t metaDataValue1, uint32_t metaDataValue2, 105 uint32_t metaDataValue3, uint32_t metaDataValue4) = 0; 106 107 /** @brief Method to do the file content transfer ove DMA between host and 108 * bmc. This method is made virtual to be overridden in test case. And need 109 * not be defined in other child classes 110 * 111 * @param[in] path - file system path where read/write will be done 112 * @param[in] upstream - direction of DMA transfer. "false" means a 113 * transfer from host to BMC 114 * @param[in] offset - offset to read/write 115 * @param[in/out] length - length to be read/write mentioned by Host 116 * @param[in] address - DMA address 117 * 118 * @return PLDM status code 119 */ 120 virtual int transferFileData(const fs::path& path, bool upstream, 121 uint32_t offset, uint32_t& length, 122 uint64_t address); 123 124 virtual int transferFileData(int fd, bool upstream, uint32_t offset, 125 uint32_t& length, uint64_t address); 126 127 virtual int transferFileDataToSocket(int fd, uint32_t& length, 128 uint64_t address); 129 130 /** @brief method to process a new file available metadata notification from 131 * the host 132 * 133 * @param[in] length - size of the file content to be transferred 134 * @param[in] metaDataValue1 - value of meta data sent by host 135 * @param[in] metaDataValue2 - value of meta data sent by host 136 * @param[in] metaDataValue3 - value of meta data sent by host 137 * @param[in] metaDataValue4 - value of meta data sent by host 138 * 139 * @return PLDM status code 140 */ 141 virtual int newFileAvailableWithMetaData( 142 uint64_t length, uint32_t metaDataValue1, uint32_t metaDataValue2, 143 uint32_t metaDataValue3, uint32_t metaDataValue4) = 0; 144 145 /** @brief Constructor to create a FileHandler object 146 */ FileHandler(uint32_t fileHandle)147 FileHandler(uint32_t fileHandle) : fileHandle(fileHandle) {} 148 149 /** FileHandler destructor 150 */ ~FileHandler()151 virtual ~FileHandler() {} 152 153 protected: 154 uint32_t fileHandle; //!< file handle indicating name of file or invalid 155 }; 156 157 /** @brief Method to create individual file handler objects based on file type 158 * 159 * @param[in] fileType - type of file 160 * @param[in] fileHandle - file handle 161 */ 162 163 std::unique_ptr<FileHandler> getHandlerByType(uint16_t fileType, 164 uint32_t fileHandle); 165 } // namespace responder 166 } // namespace pldm 167