mcuboot.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2016 Linaro Limited
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DFU_MCUBOOT_H_
  8. #define ZEPHYR_INCLUDE_DFU_MCUBOOT_H_
  9. #include <stdbool.h>
  10. #include <stddef.h>
  11. #include <zephyr/types.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #ifdef BOOT_SWAP_TYPE_NONE
  16. #if BOOT_SWAP_TYPE_NONE != 1 /*ensure the same definition in MCUboot */
  17. #error "definition incompatible"
  18. #endif
  19. #else
  20. /** Attempt to boot the contents of slot 0. */
  21. #define BOOT_SWAP_TYPE_NONE 1
  22. #endif
  23. #ifdef BOOT_SWAP_TYPE_TEST
  24. #if BOOT_SWAP_TYPE_TEST != 2 /*ensure the same definition in MCUboot */
  25. #error "definition incompatible"
  26. #endif
  27. #else
  28. /** Swap to slot 1. Absent a confirm command, revert back on next boot. */
  29. #define BOOT_SWAP_TYPE_TEST 2
  30. #endif
  31. #ifdef BOOT_SWAP_TYPE_PERM
  32. #if BOOT_SWAP_TYPE_PERM != 3 /*ensure the same definition in MCUboot */
  33. #error "definition incompatible"
  34. #endif
  35. #else
  36. /** Swap to slot 1, and permanently switch to booting its contents. */
  37. #define BOOT_SWAP_TYPE_PERM 3
  38. #endif
  39. #ifdef BOOT_SWAP_TYPE_REVERT
  40. #if BOOT_SWAP_TYPE_REVERT != 4 /*ensure the same definition in MCUboot */
  41. #error "definition incompatible"
  42. #endif
  43. #else
  44. /** Swap back to alternate slot. A confirm changes this state to NONE. */
  45. #define BOOT_SWAP_TYPE_REVERT 4
  46. #endif
  47. #ifdef BOOT_SWAP_TYPE_FAIL
  48. #if BOOT_SWAP_TYPE_FAIL != 5 /*ensure the same definition in MCUboot */
  49. #error "definition incompatible"
  50. #endif
  51. #else
  52. /** Swap failed because image to be run is not valid */
  53. #define BOOT_SWAP_TYPE_FAIL 5
  54. #endif
  55. #define BOOT_IMG_VER_STRLEN_MAX 25 /* 255.255.65535.4294967295\0 */
  56. /* Trailer: */
  57. #define BOOT_MAX_ALIGN 8
  58. #ifndef BOOT_MAGIC_SZ
  59. #define BOOT_MAGIC_SZ 16
  60. #endif
  61. #define BOOT_TRAILER_IMG_STATUS_OFFS(bank_area) ((bank_area)->fa_size -\
  62. BOOT_MAGIC_SZ -\
  63. BOOT_MAX_ALIGN * 2)
  64. /**
  65. * @brief MCUboot image header representation for image version
  66. *
  67. * The header for an MCUboot firmware image contains an embedded
  68. * version number, in semantic versioning format. This structure
  69. * represents the information it contains.
  70. */
  71. struct mcuboot_img_sem_ver {
  72. uint8_t major;
  73. uint8_t minor;
  74. uint16_t revision;
  75. uint32_t build_num;
  76. };
  77. /**
  78. * @brief Model for the MCUboot image header as of version 1
  79. *
  80. * This represents the data present in the image header, in version 1
  81. * of the header format.
  82. *
  83. * Some information present in the header but not currently relevant
  84. * to applications is omitted.
  85. */
  86. struct mcuboot_img_header_v1 {
  87. /** The size of the image, in bytes. */
  88. uint32_t image_size;
  89. /** The image version. */
  90. struct mcuboot_img_sem_ver sem_ver;
  91. };
  92. /**
  93. * @brief Model for the MCUBoot image header
  94. *
  95. * This contains the decoded image header, along with the major
  96. * version of MCUboot that the header was built for.
  97. *
  98. * (The MCUboot project guarantees that incompatible changes to the
  99. * image header will result in major version changes to the bootloader
  100. * itself, and will be detectable in the persistent representation of
  101. * the header.)
  102. */
  103. struct mcuboot_img_header {
  104. /**
  105. * The version of MCUboot the header is built for.
  106. *
  107. * The value 1 corresponds to MCUboot versions 1.x.y.
  108. */
  109. uint32_t mcuboot_version;
  110. /**
  111. * The header information. It is only valid to access fields
  112. * in the union member corresponding to the mcuboot_version
  113. * field above.
  114. */
  115. union {
  116. /** Header information for MCUboot version 1. */
  117. struct mcuboot_img_header_v1 v1;
  118. } h;
  119. };
  120. /**
  121. * @brief Read the MCUboot image header information from an image bank.
  122. *
  123. * This attempts to parse the image header,
  124. * From the start of the @a area_id image.
  125. *
  126. * @param area_id flash_area ID of image bank which stores the image.
  127. * @param header On success, the returned header information is available
  128. * in this structure.
  129. * @param header_size Size of the header structure passed by the caller.
  130. * If this is not large enough to contain all of the
  131. * necessary information, an error is returned.
  132. * @return Zero on success, a negative value on error.
  133. */
  134. int boot_read_bank_header(uint8_t area_id,
  135. struct mcuboot_img_header *header,
  136. size_t header_size);
  137. /**
  138. * @brief Check if the currently running image is confirmed as OK.
  139. *
  140. * MCUboot can perform "test" upgrades. When these occur, a new
  141. * firmware image is installed and booted, but the old version will be
  142. * reverted at the next reset unless the new image explicitly marks
  143. * itself OK.
  144. *
  145. * This routine can be used to check if the currently running image
  146. * has been marked as OK.
  147. *
  148. * @return True if the image is confirmed as OK, false otherwise.
  149. * @see boot_write_img_confirmed()
  150. */
  151. bool boot_is_img_confirmed(void);
  152. /**
  153. * @brief Marks the currently running image as confirmed.
  154. *
  155. * This routine attempts to mark the currently running firmware image
  156. * as OK, which will install it permanently, preventing MCUboot from
  157. * reverting it for an older image at the next reset.
  158. *
  159. * This routine is safe to call if the current image has already been
  160. * confirmed. It will return a successful result in this case.
  161. *
  162. * @return 0 on success, negative errno code on fail.
  163. */
  164. int boot_write_img_confirmed(void);
  165. /**
  166. * @brief Marks the image with the given index in the primary slot as confirmed.
  167. *
  168. * This routine attempts to mark the firmware image in the primary slot
  169. * as OK, which will install it permanently, preventing MCUboot from
  170. * reverting it for an older image at the next reset.
  171. *
  172. * This routine is safe to call if the current image has already been
  173. * confirmed. It will return a successful result in this case.
  174. *
  175. * @param image_index Image pair index.
  176. *
  177. * @return 0 on success, negative errno code on fail.
  178. */
  179. int boot_write_img_confirmed_multi(int image_index);
  180. /**
  181. * @brief Determines the action, if any, that mcuboot will take on the next
  182. * reboot.
  183. * @return a BOOT_SWAP_TYPE_[...] constant on success, negative errno code on
  184. * fail.
  185. */
  186. int mcuboot_swap_type(void);
  187. /**
  188. * @brief Determines the action, if any, that mcuboot will take on the next
  189. * reboot.
  190. *
  191. * @param image_index Image pair index.
  192. *
  193. * @return a BOOT_SWAP_TYPE_[...] constant on success, negative errno code on
  194. * fail.
  195. */
  196. int mcuboot_swap_type_multi(int image_index);
  197. /** Boot upgrade request modes */
  198. #define BOOT_UPGRADE_TEST 0
  199. #define BOOT_UPGRADE_PERMANENT 1
  200. /**
  201. * @brief Marks the image in slot 1 as pending. On the next reboot, the system
  202. * will perform a boot of the slot 1 image.
  203. *
  204. * @param permanent Whether the image should be used permanently or
  205. * only tested once:
  206. * BOOT_UPGRADE_TEST=run image once, then confirm or revert.
  207. * BOOT_UPGRADE_PERMANENT=run image forever.
  208. * @return 0 on success, negative errno code on fail.
  209. */
  210. int boot_request_upgrade(int permanent);
  211. /**
  212. * @brief Marks the image with the given index in the secondary slot as pending.
  213. * On the next reboot, the system will perform a boot of the secondary slot
  214. * image.
  215. *
  216. * @param image_index Image pair index.
  217. * @param permanent Whether the image should be used permanently or
  218. * only tested once:
  219. * BOOT_UPGRADE_TEST=run image once, then confirm or revert.
  220. * BOOT_UPGRADE_PERMANENT=run image forever.
  221. * @return 0 on success, negative errno code on fail.
  222. */
  223. int boot_request_upgrade_multi(int image_index, int permanent);
  224. /**
  225. * @brief Erase the image Bank.
  226. *
  227. * @param area_id flash_area ID of image bank to be erased.
  228. * @return 0 on success, negative errno code on fail.
  229. */
  230. int boot_erase_img_bank(uint8_t area_id);
  231. #ifdef __cplusplus
  232. }
  233. #endif
  234. #endif /* ZEPHYR_INCLUDE_DFU_MCUBOOT_H_ */