File Management¶
The Simple Management Protocol (SMP) File Management group.
FileDownloadRequest
¶
Bases: ReadRequest
Download contents of an existing file from specified path.
Client applications must keep track of data they have already downloaded and where their position in the file is, and issue subsequent requests, with modified offset, to gather the entire file.
Request does not carry size of requested chunk, the size is specified by application itself. Note that file handles will remain open for consecutive requests (as long as an idle timeout has not been reached and another transport does not make use of uploading/downloading files using fs_mgmt), but files are not exclusively owned by SMP, for the time of download session, and may change between requests or even be removed.
Source code in smp/file_management.py
FileDownloadResponse
¶
Bases: ReadResponse
Success response to a file download request.
Source code in smp/file_management.py
FileUploadRequest
¶
Bases: WriteRequest
Upload a file to a specified location.
Command will automatically overwrite existing file or create a new one if it does not exist at specified path. The protocol supports stateless upload where each requests carries different chunk of a file and it is client side responsibility to track progress of upload.
Note that file handles will remain open for consecutive requests (as long as an idle timeout has not been reached, but files are not exclusively owned by SMP, for the time of download session, and may change between requests or even be removed. Note that file handles will remain open for consecutive requests (as long as an idle timeout has not been reached and another transport does not make use of uploading/downloading files using fs_mgmt), but files are not exclusively owned by MCUmgr, for the time of download session, and may change between requests or even be removed.
Source code in smp/file_management.py
FileUploadResponse
¶
Bases: WriteResponse
Success response to a file upload request.
Source code in smp/file_management.py
off: int
instance-attribute
¶
Offset of the file.
FileStatusRequest
¶
Bases: ReadRequest
Retrieve status of an existing file from specified path of a target device.
Source code in smp/file_management.py
name: str
instance-attribute
¶
FileStatusResponse
¶
Bases: ReadResponse
Success response to a file status request.
Source code in smp/file_management.py
len: int
instance-attribute
¶
FileHashChecksumRequest
¶
Bases: ReadRequest
Generate a hash/checksum of an existing file at a specified path on a target device.
Note that kernel heap memory is required for buffers to be allocated for
this to function, and large stack memory buffers are required for generation
of the output hash/checksum. Requires CONFIG_MCUMGR_GRP_FS_CHECKSUM_HASH
to
be enabled for the base functionality, supported hash/checksum are opt-in
with CONFIG_MCUMGR_GRP_FS_CHECKSUM_IEEE_CRC32
or
CONFIG_MCUMGR_GRP_FS_HASH_SHA256
.
Source code in smp/file_management.py
name: str
instance-attribute
¶
Absolute path to the file to generate hash/checksum for.
type: Literal['crc32', 'sha256'] | None = None
class-attribute
instance-attribute
¶
Type of hash/checksum to generate, if not provided, default is used.
off: int | None = None
class-attribute
instance-attribute
¶
Offset to start hash/checksum generation from, default 0.
len: int | None = None
class-attribute
instance-attribute
¶
Maximum length of the file to generate hash/checksum for, default is entire file.
FileHashChecksumResponse
¶
Bases: ReadResponse
Success response to a file hash/checksum request.
Source code in smp/file_management.py
type: Literal['crc32', 'sha256']
instance-attribute
¶
off: int | None = None
class-attribute
instance-attribute
¶
Only present if not 0.
len: int
instance-attribute
¶
Length of input data used to generate hash/checksum.
output: int | bytes
instance-attribute
¶
Output hash/checksum, depending on the type requested.
SupportedFileHashChecksumTypesRequest
¶
Bases: ReadRequest
List the hash and checksum types are available on a device.
Requires Kconfig CONFIG_MCUMGR_GRP_FS_CHECKSUM_HASH_SUPPORTED_CMD
to be enabled.
Source code in smp/file_management.py
HashChecksumFormat
¶
Bases: IntEnum
Format that the hash/checksum returns where 0 is for numerical and 1 is for byte array.
Source code in smp/file_management.py
HashChecksumType
¶
Bases: BaseModel
Hash and checksum type supported by the device.
Source code in smp/file_management.py
SupportedFileHashChecksumTypesResponse
¶
Bases: ReadResponse
Success response to a supported file hash/checksum types request.
Source code in smp/file_management.py
types: Dict[Literal['crc32', 'sha256'], HashChecksumType]
instance-attribute
¶
The map of supported hash/checksum types.
FileCloseRequest
¶
Bases: WriteRequest
Close all open file handles held by fs_mgmt upload/download requests.
Source code in smp/file_management.py
FileCloseResponse
¶
Bases: WriteResponse
Success response to a file close request.
Source code in smp/file_management.py
FS_MGMT_ERR
¶
Bases: IntEnum
File System Management error codes.
Source code in smp/file_management.py
OK = 0
class-attribute
instance-attribute
¶
No error (success).
UNKNOWN = 1
class-attribute
instance-attribute
¶
Unknown error.
FILE_INVALID_NAME = 2
class-attribute
instance-attribute
¶
The specified file name is not valid.
FILE_NOT_FOUND = 3
class-attribute
instance-attribute
¶
The specified file does not exist.
FILE_IS_DIRECTORY = 4
class-attribute
instance-attribute
¶
The specified file is a directory, not a file.
FILE_OPEN_FAILED = 5
class-attribute
instance-attribute
¶
Error occurred whilst attempting to open a file.
FILE_SEEK_FAILED = 6
class-attribute
instance-attribute
¶
Error occurred whilst attempting to seek to an offset in a file.
FILE_READ_FAILED = 7
class-attribute
instance-attribute
¶
Error occurred whilst attempting to read data from a file.
FILE_TRUNCATE_FAILED = 8
class-attribute
instance-attribute
¶
Error occurred whilst trying to truncate file.
FILE_DELETE_FAILED = 9
class-attribute
instance-attribute
¶
Error occurred whilst trying to delete file.
FILE_WRITE_FAILED = 10
class-attribute
instance-attribute
¶
Error occurred whilst attempting to write data to a file.
FILE_OFFSET_NOT_VALID = 11
class-attribute
instance-attribute
¶
The specified data offset is not valid, this could indicate that the file on the device has changed since the previous command. The length of the current file on the device is returned as "len", the user application needs to decide how to handle this (e.g. the hash of the file could be requested and compared with the hash of the length of the file being uploaded to see if they match or not).
FILE_OFFSET_LARGER_THAN_FILE = 12
class-attribute
instance-attribute
¶
The requested offset is larger than the size of the file on the device.
CHECKSUM_HASH_NOT_FOUND = 13
class-attribute
instance-attribute
¶
The requested checksum or hash type was not found or is not supported by this build.
MOUNT_POINT_NOT_FOUND = 14
class-attribute
instance-attribute
¶
The specified mount point was not found or is not mounted.
READ_ONLY_FILESYSTEM = 15
class-attribute
instance-attribute
¶
The specified mount point is that of a read-only filesystem.
FILE_EMPTY = 16
class-attribute
instance-attribute
¶
The operation cannot be performed because the file is empty with no contents.