SMP Protocol Specification
This is description of Simple Management Protocol, SMP, that is used by mcumgr to pass requests to devices and receive responses from them.
SMP is an application layer protocol. The underlying transport layer is not in scope of this documentation.
Frame: The envelope
Each frame consists of header and following it data. The Data Length
” field in
the header may be used for reassembly purposes if underlying transport layer supports
fragmentation.
Frame is encoded in “Big Endian” (Network endianness), where field is more than
one byte lone, and takes the following form:
3 |
2 |
1 |
0 |
||||||||||||||||||||||||||||
7 |
6 |
5 |
4 |
3 |
2 |
1 |
0 |
7 |
6 |
5 |
4 |
3 |
2 |
1 |
0 |
7 |
6 |
5 |
4 |
3 |
2 |
1 |
0 |
7 |
6 |
5 |
4 |
3 |
2 |
1 |
0 |
Res |
OP |
Flags |
Data Length |
||||||||||||||||||||||||||||
Group ID |
Sequence Num |
Command ID |
|||||||||||||||||||||||||||||
Data … |
Note
The original specification states that SMP should support receiving both the “Little-endian” and “Big-endian” frames but in reality the mcumgr library is hardcoded to always treat “Network” side as “Big-endian”.
The Data is optional and is not present when Data Length
is zero.
The encoding of data depends on the target of group/ID.
Where meaning of fields is:
Field |
Description |
---|---|
|
This is reserved, not-used field and should be always set to 0. |
|
|
|
Reserved for flags; there are no flags defined yet, the field should be set to 0 |
|
Length of the |
|
|
|
This is a frame sequence number. The number is increased by one with each request frame. The Sequence Num of a response should match the one in the request. |
|
This is a command, within |
|
This is data payload of the |
Note
Contents of a Data
depends on a value of an OP
, a Group ID
,
and a Command ID
.
Note
The Res
field may be repurposed by Zephyr for protocol version
in the future.
Operation code
The operation code determines whether an information is written to a device or requested from it and whether a packet contains request to a SMP server or response from it.
Following operation codes are defined.
Decimal ID |
Operation |
---|---|
|
read request |
|
read response |
|
write request |
|
write response |
Management Group ID
’s
The SMP protocol supports predefined common groups and allows user defined groups. Below table presents list of common groups:
Decimal ID |
Group description |
---|---|
|
|
|
|
|
|
|
Application/system configuration (currently not used by Zephyr) |
|
Application/system log management (currently not used by Zephyr) |
|
Run-time tests (unused by Zephyr) |
|
Split image management (unused by Zephyr) |
|
Test crashing application (unused by Zephyr) |
|
|
|
|
|
Zephyr specific basic commands group |
|
This is the base group for defining an application specific management groups. |
The payload for above groups, except for 64
which is not defined,
is always CBOR encoded. The group 64
, and above, are free to be defined
by application developers and are not defined within this documentation.
Minimal response
Regardless of a command issued, as long as there is SMP client on the other side of a request, a response should be issued containing header followed by CBOR map container. Lack of response is only allowed when there is no SMP service or device is non-responsive.
Minimal response SMP data
Minimal response is CBOR directory:
{
(str)"rc" : (int)
}
where:
“rc” |
Status/error codes in responses
Decimal ID |
Meaning |
---|---|
|
No error, OK. |
|
Unknown error. |
|
Not enough memory; this error is reported when there is not enough memory to complete response. |
|
Invalid value; a request contains an invalid value. |
|
Timeout; the operation for some reason could not be completed in assumed time. |
|
No entry; the error means that request frame has been missing some information that is required to perform action. It may also mean that requested information is not available. |
|
Bad state; the error means that application or device is in a state that would not allow it to perform or complete a requested action. |
|
Response too long; this error is issued when buffer assigned for gathering response is not big enough. |
|
Not supported; usually issued when requested
|
|
Corrupted payload received. |
|
Device is busy with processing previous SMP request and may not process incoming one. Client should re-try later. |
|
This is base error number of user defined error codes. |
Zephyr uses MGMT_ERR_
prefixed definitions gathered in this header file
subsys/mgmt/mcumgr/lib/mgmt/include/mgmt/mgmt.h