avb_verify.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  1. /*
  2. * (C) Copyright 2018, Linaro Limited
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <avb_verify.h>
  7. #include <blk.h>
  8. #include <fastboot.h>
  9. #include <image.h>
  10. #include <malloc.h>
  11. #include <part.h>
  12. #include <tee.h>
  13. #include <tee/optee_ta_avb.h>
  14. static const unsigned char avb_root_pub[1032] = {
  15. 0x0, 0x0, 0x10, 0x0, 0x55, 0xd9, 0x4, 0xad, 0xd8, 0x4,
  16. 0xaf, 0xe3, 0xd3, 0x84, 0x6c, 0x7e, 0xd, 0x89, 0x3d, 0xc2,
  17. 0x8c, 0xd3, 0x12, 0x55, 0xe9, 0x62, 0xc9, 0xf1, 0xf, 0x5e,
  18. 0xcc, 0x16, 0x72, 0xab, 0x44, 0x7c, 0x2c, 0x65, 0x4a, 0x94,
  19. 0xb5, 0x16, 0x2b, 0x0, 0xbb, 0x6, 0xef, 0x13, 0x7, 0x53,
  20. 0x4c, 0xf9, 0x64, 0xb9, 0x28, 0x7a, 0x1b, 0x84, 0x98, 0x88,
  21. 0xd8, 0x67, 0xa4, 0x23, 0xf9, 0xa7, 0x4b, 0xdc, 0x4a, 0xf,
  22. 0xf7, 0x3a, 0x18, 0xae, 0x54, 0xa8, 0x15, 0xfe, 0xb0, 0xad,
  23. 0xac, 0x35, 0xda, 0x3b, 0xad, 0x27, 0xbc, 0xaf, 0xe8, 0xd3,
  24. 0x2f, 0x37, 0x34, 0xd6, 0x51, 0x2b, 0x6c, 0x5a, 0x27, 0xd7,
  25. 0x96, 0x6, 0xaf, 0x6b, 0xb8, 0x80, 0xca, 0xfa, 0x30, 0xb4,
  26. 0xb1, 0x85, 0xb3, 0x4d, 0xaa, 0xaa, 0xc3, 0x16, 0x34, 0x1a,
  27. 0xb8, 0xe7, 0xc7, 0xfa, 0xf9, 0x9, 0x77, 0xab, 0x97, 0x93,
  28. 0xeb, 0x44, 0xae, 0xcf, 0x20, 0xbc, 0xf0, 0x80, 0x11, 0xdb,
  29. 0x23, 0xc, 0x47, 0x71, 0xb9, 0x6d, 0xd6, 0x7b, 0x60, 0x47,
  30. 0x87, 0x16, 0x56, 0x93, 0xb7, 0xc2, 0x2a, 0x9a, 0xb0, 0x4c,
  31. 0x1, 0xc, 0x30, 0xd8, 0x93, 0x87, 0xf0, 0xed, 0x6e, 0x8b,
  32. 0xbe, 0x30, 0x5b, 0xf6, 0xa6, 0xaf, 0xdd, 0x80, 0x7c, 0x45,
  33. 0x5e, 0x8f, 0x91, 0x93, 0x5e, 0x44, 0xfe, 0xb8, 0x82, 0x7,
  34. 0xee, 0x79, 0xca, 0xbf, 0x31, 0x73, 0x62, 0x58, 0xe3, 0xcd,
  35. 0xc4, 0xbc, 0xc2, 0x11, 0x1d, 0xa1, 0x4a, 0xbf, 0xfe, 0x27,
  36. 0x7d, 0xa1, 0xf6, 0x35, 0xa3, 0x5e, 0xca, 0xdc, 0x57, 0x2f,
  37. 0x3e, 0xf0, 0xc9, 0x5d, 0x86, 0x6a, 0xf8, 0xaf, 0x66, 0xa7,
  38. 0xed, 0xcd, 0xb8, 0xed, 0xa1, 0x5f, 0xba, 0x9b, 0x85, 0x1a,
  39. 0xd5, 0x9, 0xae, 0x94, 0x4e, 0x3b, 0xcf, 0xcb, 0x5c, 0xc9,
  40. 0x79, 0x80, 0xf7, 0xcc, 0xa6, 0x4a, 0xa8, 0x6a, 0xd8, 0xd3,
  41. 0x31, 0x11, 0xf9, 0xf6, 0x2, 0x63, 0x2a, 0x1a, 0x2d, 0xd1,
  42. 0x1a, 0x66, 0x1b, 0x16, 0x41, 0xbd, 0xbd, 0xf7, 0x4d, 0xc0,
  43. 0x4a, 0xe5, 0x27, 0x49, 0x5f, 0x7f, 0x58, 0xe3, 0x27, 0x2d,
  44. 0xe5, 0xc9, 0x66, 0xe, 0x52, 0x38, 0x16, 0x38, 0xfb, 0x16,
  45. 0xeb, 0x53, 0x3f, 0xe6, 0xfd, 0xe9, 0xa2, 0x5e, 0x25, 0x59,
  46. 0xd8, 0x79, 0x45, 0xff, 0x3, 0x4c, 0x26, 0xa2, 0x0, 0x5a,
  47. 0x8e, 0xc2, 0x51, 0xa1, 0x15, 0xf9, 0x7b, 0xf4, 0x5c, 0x81,
  48. 0x9b, 0x18, 0x47, 0x35, 0xd8, 0x2d, 0x5, 0xe9, 0xad, 0xf,
  49. 0x35, 0x74, 0x15, 0xa3, 0x8e, 0x8b, 0xcc, 0x27, 0xda, 0x7c,
  50. 0x5d, 0xe4, 0xfa, 0x4, 0xd3, 0x5, 0xb, 0xba, 0x3a, 0xb2,
  51. 0x49, 0x45, 0x2f, 0x47, 0xc7, 0xd, 0x41, 0x3f, 0x97, 0x80,
  52. 0x4d, 0x3f, 0xc1, 0xb5, 0xbb, 0x70, 0x5f, 0xa7, 0x37, 0xaf,
  53. 0x48, 0x22, 0x12, 0x45, 0x2e, 0xf5, 0xf, 0x87, 0x92, 0xe2,
  54. 0x84, 0x1, 0xf9, 0x12, 0xf, 0x14, 0x15, 0x24, 0xce, 0x89,
  55. 0x99, 0xee, 0xb9, 0xc4, 0x17, 0x70, 0x70, 0x15, 0xea, 0xbe,
  56. 0xc6, 0x6c, 0x1f, 0x62, 0xb3, 0xf4, 0x2d, 0x16, 0x87, 0xfb,
  57. 0x56, 0x1e, 0x45, 0xab, 0xae, 0x32, 0xe4, 0x5e, 0x91, 0xed,
  58. 0x53, 0x66, 0x5e, 0xbd, 0xed, 0xad, 0xe6, 0x12, 0x39, 0xd,
  59. 0x83, 0xc9, 0xe8, 0x6b, 0x6c, 0x2d, 0xa5, 0xee, 0xc4, 0x5a,
  60. 0x66, 0xae, 0x8c, 0x97, 0xd7, 0xd, 0x6c, 0x49, 0xc7, 0xf5,
  61. 0xc4, 0x92, 0x31, 0x8b, 0x9, 0xee, 0x33, 0xda, 0xa9, 0x37,
  62. 0xb6, 0x49, 0x18, 0xf8, 0xe, 0x60, 0x45, 0xc8, 0x33, 0x91,
  63. 0xef, 0x20, 0x57, 0x10, 0xbe, 0x78, 0x2d, 0x83, 0x26, 0xd6,
  64. 0xca, 0x61, 0xf9, 0x2f, 0xe0, 0xbf, 0x5, 0x30, 0x52, 0x5a,
  65. 0x12, 0x1c, 0x0, 0xa7, 0x5d, 0xcc, 0x7c, 0x2e, 0xc5, 0x95,
  66. 0x8b, 0xa3, 0x3b, 0xf0, 0x43, 0x2e, 0x5e, 0xdd, 0x0, 0xdb,
  67. 0xd, 0xb3, 0x37, 0x99, 0xa9, 0xcd, 0x9c, 0xb7, 0x43, 0xf7,
  68. 0x35, 0x44, 0x21, 0xc2, 0x82, 0x71, 0xab, 0x8d, 0xaa, 0xb4,
  69. 0x41, 0x11, 0xec, 0x1e, 0x8d, 0xfc, 0x14, 0x82, 0x92, 0x4e,
  70. 0x83, 0x6a, 0xa, 0x6b, 0x35, 0x5e, 0x5d, 0xe9, 0x5c, 0xcc,
  71. 0x8c, 0xde, 0x39, 0xd1, 0x4a, 0x5b, 0x5f, 0x63, 0xa9, 0x64,
  72. 0xe0, 0xa, 0xcb, 0xb, 0xb8, 0x5a, 0x7c, 0xc3, 0xb, 0xe6,
  73. 0xbe, 0xfe, 0x8b, 0xf, 0x7d, 0x34, 0x8e, 0x2, 0x66, 0x74,
  74. 0x1, 0x6c, 0xca, 0x76, 0xac, 0x7c, 0x67, 0x8, 0x2f, 0x3f,
  75. 0x1a, 0xa6, 0x2c, 0x60, 0xb3, 0xff, 0xda, 0x8d, 0xb8, 0x12,
  76. 0xc, 0x0, 0x7f, 0xcc, 0x50, 0xa1, 0x5c, 0x64, 0xa1, 0xe2,
  77. 0x5f, 0x32, 0x65, 0xc9, 0x9c, 0xbe, 0xd6, 0xa, 0x13, 0x87,
  78. 0x3c, 0x2a, 0x45, 0x47, 0xc, 0xca, 0x42, 0x82, 0xfa, 0x89,
  79. 0x65, 0xe7, 0x89, 0xb4, 0x8f, 0xf7, 0x1e, 0xe6, 0x23, 0xa5,
  80. 0xd0, 0x59, 0x37, 0x79, 0x92, 0xd7, 0xce, 0x3d, 0xfd, 0xe3,
  81. 0xa1, 0xb, 0xcf, 0x6c, 0x85, 0xa0, 0x65, 0xf3, 0x5c, 0xc6,
  82. 0x4a, 0x63, 0x5f, 0x6e, 0x3a, 0x3a, 0x2a, 0x8b, 0x6a, 0xb6,
  83. 0x2f, 0xbb, 0xf8, 0xb2, 0x4b, 0x62, 0xbc, 0x1a, 0x91, 0x25,
  84. 0x66, 0xe3, 0x69, 0xca, 0x60, 0x49, 0xb, 0xf6, 0x8a, 0xbe,
  85. 0x3e, 0x76, 0x53, 0xc2, 0x7a, 0xa8, 0x4, 0x17, 0x75, 0xf1,
  86. 0xf3, 0x3, 0x62, 0x1b, 0x85, 0xb2, 0xb0, 0xef, 0x80, 0x15,
  87. 0xb6, 0xd4, 0x4e, 0xdf, 0x71, 0xac, 0xdb, 0x2a, 0x4, 0xd4,
  88. 0xb4, 0x21, 0xba, 0x65, 0x56, 0x57, 0xe8, 0xfa, 0x84, 0xa2,
  89. 0x7d, 0x13, 0xe, 0xaf, 0xd7, 0x9a, 0x58, 0x2a, 0xa3, 0x81,
  90. 0x84, 0x8d, 0x9, 0xa0, 0x6a, 0xc1, 0xbb, 0xd9, 0xf5, 0x86,
  91. 0xac, 0xbd, 0x75, 0x61, 0x9, 0xe6, 0x8c, 0x3d, 0x77, 0xb2,
  92. 0xed, 0x30, 0x20, 0xe4, 0x0, 0x1d, 0x97, 0xe8, 0xbf, 0xc7,
  93. 0x0, 0x1b, 0x21, 0xb1, 0x16, 0xe7, 0x41, 0x67, 0x2e, 0xec,
  94. 0x38, 0xbc, 0xe5, 0x1b, 0xb4, 0x6, 0x23, 0x31, 0x71, 0x1c,
  95. 0x49, 0xcd, 0x76, 0x4a, 0x76, 0x36, 0x8d, 0xa3, 0x89, 0x8b,
  96. 0x4a, 0x7a, 0xf4, 0x87, 0xc8, 0x15, 0xf, 0x37, 0x39, 0xf6,
  97. 0x6d, 0x80, 0x19, 0xef, 0x5c, 0xa8, 0x66, 0xce, 0x1b, 0x16,
  98. 0x79, 0x21, 0xdf, 0xd7, 0x31, 0x30, 0xc4, 0x21, 0xdd, 0x34,
  99. 0x5b, 0xd2, 0x1a, 0x2b, 0x3e, 0x5d, 0xf7, 0xea, 0xca, 0x5,
  100. 0x8e, 0xb7, 0xcb, 0x49, 0x2e, 0xa0, 0xe3, 0xf4, 0xa7, 0x48,
  101. 0x19, 0x10, 0x9c, 0x4, 0xa7, 0xf4, 0x28, 0x74, 0xc8, 0x6f,
  102. 0x63, 0x20, 0x2b, 0x46, 0x24, 0x26, 0x19, 0x1d, 0xd1, 0x2c,
  103. 0x31, 0x6d, 0x5a, 0x29, 0xa2, 0x6, 0xa6, 0xb2, 0x41, 0xcc,
  104. 0xa, 0x27, 0x96, 0x9, 0x96, 0xac, 0x47, 0x65, 0x78, 0x68,
  105. 0x51, 0x98, 0xd6, 0xd8, 0xa6, 0x2d, 0xa0, 0xcf, 0xec, 0xe2,
  106. 0x74, 0xf2, 0x82, 0xe3, 0x97, 0xd9, 0x7e, 0xd4, 0xf8, 0xb,
  107. 0x70, 0x43, 0x3d, 0xb1, 0x7b, 0x97, 0x80, 0xd6, 0xcb, 0xd7,
  108. 0x19, 0xbc, 0x63, 0xb, 0xfd, 0x4d, 0x88, 0xfe, 0x67, 0xac,
  109. 0xb8, 0xcc, 0x50, 0xb7, 0x68, 0xb3, 0x5b, 0xd6, 0x1e, 0x25,
  110. 0xfc, 0x5f, 0x3c, 0x8d, 0xb1, 0x33, 0x7c, 0xb3, 0x49, 0x1,
  111. 0x3f, 0x71, 0x55, 0xe, 0x51, 0xba, 0x61, 0x26, 0xfa, 0xea,
  112. 0xe5, 0xb5, 0xe8, 0xaa, 0xcf, 0xcd, 0x96, 0x9f, 0xd6, 0xc1,
  113. 0x5f, 0x53, 0x91, 0xad, 0x5, 0xde, 0x20, 0xe7, 0x51, 0xda,
  114. 0x5b, 0x95, 0x67, 0xed, 0xf4, 0xee, 0x42, 0x65, 0x70, 0x13,
  115. 0xb, 0x70, 0x14, 0x1c, 0xc9, 0xe0, 0x19, 0xca, 0x5f, 0xf5,
  116. 0x1d, 0x70, 0x4b, 0x6c, 0x6, 0x74, 0xec, 0xb5, 0x2e, 0x77,
  117. 0xe1, 0x74, 0xa1, 0xa3, 0x99, 0xa0, 0x85, 0x9e, 0xf1, 0xac,
  118. 0xd8, 0x7e,
  119. };
  120. /**
  121. * ============================================================================
  122. * Boot states support (GREEN, YELLOW, ORANGE, RED) and dm_verity
  123. * ============================================================================
  124. */
  125. char *avb_set_state(AvbOps *ops, enum avb_boot_state boot_state)
  126. {
  127. struct AvbOpsData *data;
  128. char *cmdline = NULL;
  129. if (!ops)
  130. return NULL;
  131. data = (struct AvbOpsData *)ops->user_data;
  132. if (!data)
  133. return NULL;
  134. data->boot_state = boot_state;
  135. switch (boot_state) {
  136. case AVB_GREEN:
  137. cmdline = "androidboot.verifiedbootstate=green";
  138. break;
  139. case AVB_YELLOW:
  140. cmdline = "androidboot.verifiedbootstate=yellow";
  141. break;
  142. case AVB_ORANGE:
  143. cmdline = "androidboot.verifiedbootstate=orange";
  144. case AVB_RED:
  145. break;
  146. }
  147. return cmdline;
  148. }
  149. char *append_cmd_line(char *cmdline_orig, char *cmdline_new)
  150. {
  151. char *cmd_line;
  152. if (!cmdline_new)
  153. return cmdline_orig;
  154. if (cmdline_orig)
  155. cmd_line = cmdline_orig;
  156. else
  157. cmd_line = " ";
  158. cmd_line = avb_strdupv(cmd_line, " ", cmdline_new, NULL);
  159. return cmd_line;
  160. }
  161. static int avb_find_dm_args(char **args, char *str)
  162. {
  163. int i;
  164. if (!str)
  165. return -1;
  166. for (i = 0; i < AVB_MAX_ARGS && args[i]; ++i) {
  167. if (strstr(args[i], str))
  168. return i;
  169. }
  170. return -1;
  171. }
  172. static char *avb_set_enforce_option(const char *cmdline, const char *option)
  173. {
  174. char *cmdarg[AVB_MAX_ARGS];
  175. char *newargs = NULL;
  176. int i = 0;
  177. int total_args;
  178. memset(cmdarg, 0, sizeof(cmdarg));
  179. cmdarg[i++] = strtok((char *)cmdline, " ");
  180. do {
  181. cmdarg[i] = strtok(NULL, " ");
  182. if (!cmdarg[i])
  183. break;
  184. if (++i >= AVB_MAX_ARGS) {
  185. printf("%s: Can't handle more then %d args\n",
  186. __func__, i);
  187. return NULL;
  188. }
  189. } while (true);
  190. total_args = i;
  191. i = avb_find_dm_args(&cmdarg[0], VERITY_TABLE_OPT_LOGGING);
  192. if (i >= 0) {
  193. cmdarg[i] = (char *)option;
  194. } else {
  195. i = avb_find_dm_args(&cmdarg[0], VERITY_TABLE_OPT_RESTART);
  196. if (i < 0) {
  197. printf("%s: No verity options found\n", __func__);
  198. return NULL;
  199. }
  200. cmdarg[i] = (char *)option;
  201. }
  202. for (i = 0; i <= total_args; i++)
  203. newargs = append_cmd_line(newargs, cmdarg[i]);
  204. return newargs;
  205. }
  206. char *avb_set_ignore_corruption(const char *cmdline)
  207. {
  208. char *newargs = NULL;
  209. newargs = avb_set_enforce_option(cmdline, VERITY_TABLE_OPT_LOGGING);
  210. if (newargs)
  211. newargs = append_cmd_line(newargs,
  212. "androidboot.veritymode=eio");
  213. return newargs;
  214. }
  215. char *avb_set_enforce_verity(const char *cmdline)
  216. {
  217. char *newargs;
  218. newargs = avb_set_enforce_option(cmdline, VERITY_TABLE_OPT_RESTART);
  219. if (newargs)
  220. newargs = append_cmd_line(newargs,
  221. "androidboot.veritymode=enforcing");
  222. return newargs;
  223. }
  224. /**
  225. * ============================================================================
  226. * IO(mmc) auxiliary functions
  227. * ============================================================================
  228. */
  229. static unsigned long mmc_read_and_flush(struct mmc_part *part,
  230. lbaint_t start,
  231. lbaint_t sectors,
  232. void *buffer)
  233. {
  234. unsigned long blks;
  235. void *tmp_buf;
  236. size_t buf_size;
  237. bool unaligned = is_buf_unaligned(buffer);
  238. if (start < part->info.start) {
  239. printf("%s: partition start out of bounds\n", __func__);
  240. return 0;
  241. }
  242. if ((start + sectors) > (part->info.start + part->info.size)) {
  243. sectors = part->info.start + part->info.size - start;
  244. printf("%s: read sector aligned to partition bounds (%ld)\n",
  245. __func__, sectors);
  246. }
  247. /*
  248. * Reading fails on unaligned buffers, so we have to
  249. * use aligned temporary buffer and then copy to destination
  250. */
  251. if (unaligned) {
  252. printf("Handling unaligned read buffer..\n");
  253. tmp_buf = get_sector_buf();
  254. buf_size = get_sector_buf_size();
  255. if (sectors > buf_size / part->info.blksz)
  256. sectors = buf_size / part->info.blksz;
  257. } else {
  258. tmp_buf = buffer;
  259. }
  260. blks = blk_dread(part->mmc_blk,
  261. start, sectors, tmp_buf);
  262. /* flush cache after read */
  263. flush_cache((ulong)tmp_buf, sectors * part->info.blksz);
  264. if (unaligned)
  265. memcpy(buffer, tmp_buf, sectors * part->info.blksz);
  266. return blks;
  267. }
  268. static unsigned long mmc_write(struct mmc_part *part, lbaint_t start,
  269. lbaint_t sectors, void *buffer)
  270. {
  271. void *tmp_buf;
  272. size_t buf_size;
  273. bool unaligned = is_buf_unaligned(buffer);
  274. if (start < part->info.start) {
  275. printf("%s: partition start out of bounds\n", __func__);
  276. return 0;
  277. }
  278. if ((start + sectors) > (part->info.start + part->info.size)) {
  279. sectors = part->info.start + part->info.size - start;
  280. printf("%s: sector aligned to partition bounds (%ld)\n",
  281. __func__, sectors);
  282. }
  283. if (unaligned) {
  284. tmp_buf = get_sector_buf();
  285. buf_size = get_sector_buf_size();
  286. printf("Handling unaligned wrire buffer..\n");
  287. if (sectors > buf_size / part->info.blksz)
  288. sectors = buf_size / part->info.blksz;
  289. memcpy(tmp_buf, buffer, sectors * part->info.blksz);
  290. } else {
  291. tmp_buf = buffer;
  292. }
  293. return blk_dwrite(part->mmc_blk,
  294. start, sectors, tmp_buf);
  295. }
  296. static struct mmc_part *get_partition(AvbOps *ops, const char *partition)
  297. {
  298. int ret;
  299. u8 dev_num;
  300. int part_num = 0;
  301. struct mmc_part *part;
  302. struct blk_desc *mmc_blk;
  303. part = malloc(sizeof(struct mmc_part));
  304. if (!part)
  305. return NULL;
  306. dev_num = get_boot_device(ops);
  307. part->mmc = find_mmc_device(dev_num);
  308. if (!part->mmc) {
  309. printf("No MMC device at slot %x\n", dev_num);
  310. goto err;
  311. }
  312. if (mmc_init(part->mmc)) {
  313. printf("MMC initialization failed\n");
  314. goto err;
  315. }
  316. ret = mmc_switch_part(part->mmc, part_num);
  317. if (ret)
  318. goto err;
  319. mmc_blk = mmc_get_blk_desc(part->mmc);
  320. if (!mmc_blk) {
  321. printf("Error - failed to obtain block descriptor\n");
  322. goto err;
  323. }
  324. ret = part_get_info_by_name(mmc_blk, partition, &part->info);
  325. if (!ret) {
  326. printf("Can't find partition '%s'\n", partition);
  327. goto err;
  328. }
  329. part->dev_num = dev_num;
  330. part->mmc_blk = mmc_blk;
  331. return part;
  332. err:
  333. free(part);
  334. return NULL;
  335. }
  336. static AvbIOResult mmc_byte_io(AvbOps *ops,
  337. const char *partition,
  338. s64 offset,
  339. size_t num_bytes,
  340. void *buffer,
  341. size_t *out_num_read,
  342. enum mmc_io_type io_type)
  343. {
  344. ulong ret;
  345. struct mmc_part *part;
  346. u64 start_offset, start_sector, sectors, residue;
  347. u8 *tmp_buf;
  348. size_t io_cnt = 0;
  349. if (!partition || !buffer || io_type > IO_WRITE)
  350. return AVB_IO_RESULT_ERROR_IO;
  351. part = get_partition(ops, partition);
  352. if (!part)
  353. return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
  354. if (!part->info.blksz)
  355. return AVB_IO_RESULT_ERROR_IO;
  356. start_offset = calc_offset(part, offset);
  357. while (num_bytes) {
  358. start_sector = start_offset / part->info.blksz;
  359. sectors = num_bytes / part->info.blksz;
  360. /* handle non block-aligned reads */
  361. if (start_offset % part->info.blksz ||
  362. num_bytes < part->info.blksz) {
  363. tmp_buf = get_sector_buf();
  364. if (start_offset % part->info.blksz) {
  365. residue = part->info.blksz -
  366. (start_offset % part->info.blksz);
  367. if (residue > num_bytes)
  368. residue = num_bytes;
  369. } else {
  370. residue = num_bytes;
  371. }
  372. if (io_type == IO_READ) {
  373. ret = mmc_read_and_flush(part,
  374. part->info.start +
  375. start_sector,
  376. 1, tmp_buf);
  377. if (ret != 1) {
  378. printf("%s: read error (%ld, %lld)\n",
  379. __func__, ret, start_sector);
  380. return AVB_IO_RESULT_ERROR_IO;
  381. }
  382. /*
  383. * if this is not aligned at sector start,
  384. * we have to adjust the tmp buffer
  385. */
  386. tmp_buf += (start_offset % part->info.blksz);
  387. memcpy(buffer, (void *)tmp_buf, residue);
  388. } else {
  389. ret = mmc_read_and_flush(part,
  390. part->info.start +
  391. start_sector,
  392. 1, tmp_buf);
  393. if (ret != 1) {
  394. printf("%s: read error (%ld, %lld)\n",
  395. __func__, ret, start_sector);
  396. return AVB_IO_RESULT_ERROR_IO;
  397. }
  398. memcpy((void *)tmp_buf +
  399. start_offset % part->info.blksz,
  400. buffer, residue);
  401. ret = mmc_write(part, part->info.start +
  402. start_sector, 1, tmp_buf);
  403. if (ret != 1) {
  404. printf("%s: write error (%ld, %lld)\n",
  405. __func__, ret, start_sector);
  406. return AVB_IO_RESULT_ERROR_IO;
  407. }
  408. }
  409. io_cnt += residue;
  410. buffer += residue;
  411. start_offset += residue;
  412. num_bytes -= residue;
  413. continue;
  414. }
  415. if (sectors) {
  416. if (io_type == IO_READ) {
  417. ret = mmc_read_and_flush(part,
  418. part->info.start +
  419. start_sector,
  420. sectors, buffer);
  421. } else {
  422. ret = mmc_write(part,
  423. part->info.start +
  424. start_sector,
  425. sectors, buffer);
  426. }
  427. if (!ret) {
  428. printf("%s: sector read error\n", __func__);
  429. return AVB_IO_RESULT_ERROR_IO;
  430. }
  431. io_cnt += ret * part->info.blksz;
  432. buffer += ret * part->info.blksz;
  433. start_offset += ret * part->info.blksz;
  434. num_bytes -= ret * part->info.blksz;
  435. }
  436. }
  437. /* Set counter for read operation */
  438. if (io_type == IO_READ && out_num_read)
  439. *out_num_read = io_cnt;
  440. return AVB_IO_RESULT_OK;
  441. }
  442. /**
  443. * ============================================================================
  444. * AVB 2.0 operations
  445. * ============================================================================
  446. */
  447. /**
  448. * read_from_partition() - reads @num_bytes from @offset from partition
  449. * identified by a string name
  450. *
  451. * @ops: contains AVB ops handlers
  452. * @partition_name: partition name, NUL-terminated UTF-8 string
  453. * @offset: offset from the beginning of partition
  454. * @num_bytes: amount of bytes to read
  455. * @buffer: destination buffer to store data
  456. * @out_num_read:
  457. *
  458. * @return:
  459. * AVB_IO_RESULT_OK, if partition was found and read operation succeed
  460. * AVB_IO_RESULT_ERROR_IO, if i/o error occurred from the underlying i/o
  461. * subsystem
  462. * AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION, if there is no partition with
  463. * the given name
  464. */
  465. static AvbIOResult read_from_partition(AvbOps *ops,
  466. const char *partition_name,
  467. s64 offset_from_partition,
  468. size_t num_bytes,
  469. void *buffer,
  470. size_t *out_num_read)
  471. {
  472. return mmc_byte_io(ops, partition_name, offset_from_partition,
  473. num_bytes, buffer, out_num_read, IO_READ);
  474. }
  475. /**
  476. * write_to_partition() - writes N bytes to a partition identified by a string
  477. * name
  478. *
  479. * @ops: AvbOps, contains AVB ops handlers
  480. * @partition_name: partition name
  481. * @offset_from_partition: offset from the beginning of partition
  482. * @num_bytes: amount of bytes to write
  483. * @buf: data to write
  484. * @out_num_read:
  485. *
  486. * @return:
  487. * AVB_IO_RESULT_OK, if partition was found and read operation succeed
  488. * AVB_IO_RESULT_ERROR_IO, if input/output error occurred
  489. * AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION, if partition, specified in
  490. * @partition_name was not found
  491. */
  492. static AvbIOResult write_to_partition(AvbOps *ops,
  493. const char *partition_name,
  494. s64 offset_from_partition,
  495. size_t num_bytes,
  496. const void *buffer)
  497. {
  498. return mmc_byte_io(ops, partition_name, offset_from_partition,
  499. num_bytes, (void *)buffer, NULL, IO_WRITE);
  500. }
  501. /**
  502. * validate_vmbeta_public_key() - checks if the given public key used to sign
  503. * the vbmeta partition is trusted
  504. *
  505. * @ops: AvbOps, contains AVB ops handlers
  506. * @public_key_data: public key for verifying vbmeta partition signature
  507. * @public_key_length: length of public key
  508. * @public_key_metadata:
  509. * @public_key_metadata_length:
  510. * @out_key_is_trusted:
  511. *
  512. * @return:
  513. * AVB_IO_RESULT_OK, if partition was found and read operation succeed
  514. */
  515. static AvbIOResult validate_vbmeta_public_key(AvbOps *ops,
  516. const u8 *public_key_data,
  517. size_t public_key_length,
  518. const u8
  519. *public_key_metadata,
  520. size_t
  521. public_key_metadata_length,
  522. bool *out_key_is_trusted)
  523. {
  524. if (!public_key_length || !public_key_data || !out_key_is_trusted)
  525. return AVB_IO_RESULT_ERROR_IO;
  526. *out_key_is_trusted = false;
  527. if (public_key_length != sizeof(avb_root_pub))
  528. return AVB_IO_RESULT_ERROR_IO;
  529. if (memcmp(avb_root_pub, public_key_data, public_key_length) == 0)
  530. *out_key_is_trusted = true;
  531. return AVB_IO_RESULT_OK;
  532. }
  533. #ifdef CONFIG_OPTEE_TA_AVB
  534. static int get_open_session(struct AvbOpsData *ops_data)
  535. {
  536. struct udevice *tee = NULL;
  537. while (!ops_data->tee) {
  538. const struct tee_optee_ta_uuid uuid = TA_AVB_UUID;
  539. struct tee_open_session_arg arg;
  540. int rc;
  541. tee = tee_find_device(tee, NULL, NULL, NULL);
  542. if (!tee)
  543. return -ENODEV;
  544. memset(&arg, 0, sizeof(arg));
  545. tee_optee_ta_uuid_to_octets(arg.uuid, &uuid);
  546. rc = tee_open_session(tee, &arg, 0, NULL);
  547. if (!rc) {
  548. ops_data->tee = tee;
  549. ops_data->session = arg.session;
  550. }
  551. }
  552. return 0;
  553. }
  554. static AvbIOResult invoke_func(struct AvbOpsData *ops_data, u32 func,
  555. ulong num_param, struct tee_param *param)
  556. {
  557. struct tee_invoke_arg arg;
  558. if (get_open_session(ops_data))
  559. return AVB_IO_RESULT_ERROR_IO;
  560. memset(&arg, 0, sizeof(arg));
  561. arg.func = func;
  562. arg.session = ops_data->session;
  563. if (tee_invoke_func(ops_data->tee, &arg, num_param, param))
  564. return AVB_IO_RESULT_ERROR_IO;
  565. switch (arg.ret) {
  566. case TEE_SUCCESS:
  567. return AVB_IO_RESULT_OK;
  568. case TEE_ERROR_OUT_OF_MEMORY:
  569. return AVB_IO_RESULT_ERROR_OOM;
  570. case TEE_ERROR_TARGET_DEAD:
  571. /*
  572. * The TA has paniced, close the session to reload the TA
  573. * for the next request.
  574. */
  575. tee_close_session(ops_data->tee, ops_data->session);
  576. ops_data->tee = NULL;
  577. return AVB_IO_RESULT_ERROR_IO;
  578. default:
  579. return AVB_IO_RESULT_ERROR_IO;
  580. }
  581. }
  582. #endif
  583. /**
  584. * read_rollback_index() - gets the rollback index corresponding to the
  585. * location of given by @out_rollback_index.
  586. *
  587. * @ops: contains AvbOps handlers
  588. * @rollback_index_slot:
  589. * @out_rollback_index: used to write a retrieved rollback index.
  590. *
  591. * @return
  592. * AVB_IO_RESULT_OK, if the roolback index was retrieved
  593. */
  594. static AvbIOResult read_rollback_index(AvbOps *ops,
  595. size_t rollback_index_slot,
  596. u64 *out_rollback_index)
  597. {
  598. #ifndef CONFIG_OPTEE_TA_AVB
  599. /* For now we always return 0 as the stored rollback index. */
  600. printf("%s not supported yet\n", __func__);
  601. if (out_rollback_index)
  602. *out_rollback_index = 0;
  603. return AVB_IO_RESULT_OK;
  604. #else
  605. AvbIOResult rc;
  606. struct tee_param param[2];
  607. if (rollback_index_slot >= TA_AVB_MAX_ROLLBACK_LOCATIONS)
  608. return AVB_IO_RESULT_ERROR_NO_SUCH_VALUE;
  609. memset(param, 0, sizeof(param));
  610. param[0].attr = TEE_PARAM_ATTR_TYPE_VALUE_INPUT;
  611. param[0].u.value.a = rollback_index_slot;
  612. param[1].attr = TEE_PARAM_ATTR_TYPE_VALUE_OUTPUT;
  613. rc = invoke_func(ops->user_data, TA_AVB_CMD_READ_ROLLBACK_INDEX,
  614. ARRAY_SIZE(param), param);
  615. if (rc)
  616. return rc;
  617. *out_rollback_index = (u64)param[1].u.value.a << 32 |
  618. (u32)param[1].u.value.b;
  619. return AVB_IO_RESULT_OK;
  620. #endif
  621. }
  622. /**
  623. * write_rollback_index() - sets the rollback index corresponding to the
  624. * location of given by @out_rollback_index.
  625. *
  626. * @ops: contains AvbOps handlers
  627. * @rollback_index_slot:
  628. * @rollback_index: rollback index to write.
  629. *
  630. * @return
  631. * AVB_IO_RESULT_OK, if the roolback index was retrieved
  632. */
  633. static AvbIOResult write_rollback_index(AvbOps *ops,
  634. size_t rollback_index_slot,
  635. u64 rollback_index)
  636. {
  637. #ifndef CONFIG_OPTEE_TA_AVB
  638. /* For now this is a no-op. */
  639. printf("%s not supported yet\n", __func__);
  640. return AVB_IO_RESULT_OK;
  641. #else
  642. struct tee_param param[2];
  643. if (rollback_index_slot >= TA_AVB_MAX_ROLLBACK_LOCATIONS)
  644. return AVB_IO_RESULT_ERROR_NO_SUCH_VALUE;
  645. memset(param, 0, sizeof(param));
  646. param[0].attr = TEE_PARAM_ATTR_TYPE_VALUE_INPUT;
  647. param[0].u.value.a = rollback_index_slot;
  648. param[1].attr = TEE_PARAM_ATTR_TYPE_VALUE_INPUT;
  649. param[1].u.value.a = (u32)(rollback_index >> 32);
  650. param[1].u.value.b = (u32)rollback_index;
  651. return invoke_func(ops->user_data, TA_AVB_CMD_WRITE_ROLLBACK_INDEX,
  652. ARRAY_SIZE(param), param);
  653. #endif
  654. }
  655. /**
  656. * read_is_device_unlocked() - gets whether the device is unlocked
  657. *
  658. * @ops: contains AVB ops handlers
  659. * @out_is_unlocked: device unlock state is stored here, true if unlocked,
  660. * false otherwise
  661. *
  662. * @return:
  663. * AVB_IO_RESULT_OK: state is retrieved successfully
  664. * AVB_IO_RESULT_ERROR_IO: an error occurred
  665. */
  666. static AvbIOResult read_is_device_unlocked(AvbOps *ops, bool *out_is_unlocked)
  667. {
  668. #ifndef CONFIG_OPTEE_TA_AVB
  669. /* For now we always return that the device is unlocked. */
  670. printf("%s not supported yet\n", __func__);
  671. *out_is_unlocked = true;
  672. return AVB_IO_RESULT_OK;
  673. #else
  674. AvbIOResult rc;
  675. struct tee_param param = { .attr = TEE_PARAM_ATTR_TYPE_VALUE_OUTPUT };
  676. rc = invoke_func(ops->user_data, TA_AVB_CMD_READ_LOCK_STATE, 1, &param);
  677. if (rc)
  678. return rc;
  679. *out_is_unlocked = !param.u.value.a;
  680. return AVB_IO_RESULT_OK;
  681. #endif
  682. }
  683. /**
  684. * get_unique_guid_for_partition() - gets the GUID for a partition identified
  685. * by a string name
  686. *
  687. * @ops: contains AVB ops handlers
  688. * @partition: partition name (NUL-terminated UTF-8 string)
  689. * @guid_buf: buf, used to copy in GUID string. Example of value:
  690. * 527c1c6d-6361-4593-8842-3c78fcd39219
  691. * @guid_buf_size: @guid_buf buffer size
  692. *
  693. * @return:
  694. * AVB_IO_RESULT_OK, on success (GUID found)
  695. * AVB_IO_RESULT_ERROR_IO, if incorrect buffer size (@guid_buf_size) was
  696. * provided
  697. * AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION, if partition was not found
  698. */
  699. static AvbIOResult get_unique_guid_for_partition(AvbOps *ops,
  700. const char *partition,
  701. char *guid_buf,
  702. size_t guid_buf_size)
  703. {
  704. struct mmc_part *part;
  705. size_t uuid_size;
  706. part = get_partition(ops, partition);
  707. if (!part)
  708. return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
  709. uuid_size = sizeof(part->info.uuid);
  710. if (uuid_size > guid_buf_size)
  711. return AVB_IO_RESULT_ERROR_IO;
  712. memcpy(guid_buf, part->info.uuid, uuid_size);
  713. guid_buf[uuid_size - 1] = 0;
  714. return AVB_IO_RESULT_OK;
  715. }
  716. /**
  717. * get_size_of_partition() - gets the size of a partition identified
  718. * by a string name
  719. *
  720. * @ops: contains AVB ops handlers
  721. * @partition: partition name (NUL-terminated UTF-8 string)
  722. * @out_size_num_bytes: returns the value of a partition size
  723. *
  724. * @return:
  725. * AVB_IO_RESULT_OK, on success (GUID found)
  726. * AVB_IO_RESULT_ERROR_INSUFFICIENT_SPACE, out_size_num_bytes is NULL
  727. * AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION, if partition was not found
  728. */
  729. static AvbIOResult get_size_of_partition(AvbOps *ops,
  730. const char *partition,
  731. u64 *out_size_num_bytes)
  732. {
  733. struct mmc_part *part;
  734. if (!out_size_num_bytes)
  735. return AVB_IO_RESULT_ERROR_INSUFFICIENT_SPACE;
  736. part = get_partition(ops, partition);
  737. if (!part)
  738. return AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION;
  739. *out_size_num_bytes = part->info.blksz * part->info.size;
  740. return AVB_IO_RESULT_OK;
  741. }
  742. /**
  743. * ============================================================================
  744. * AVB2.0 AvbOps alloc/initialisation/free
  745. * ============================================================================
  746. */
  747. AvbOps *avb_ops_alloc(int boot_device)
  748. {
  749. struct AvbOpsData *ops_data;
  750. ops_data = avb_calloc(sizeof(struct AvbOpsData));
  751. if (!ops_data)
  752. return NULL;
  753. ops_data->ops.user_data = ops_data;
  754. ops_data->ops.read_from_partition = read_from_partition;
  755. ops_data->ops.write_to_partition = write_to_partition;
  756. ops_data->ops.validate_vbmeta_public_key = validate_vbmeta_public_key;
  757. ops_data->ops.read_rollback_index = read_rollback_index;
  758. ops_data->ops.write_rollback_index = write_rollback_index;
  759. ops_data->ops.read_is_device_unlocked = read_is_device_unlocked;
  760. ops_data->ops.get_unique_guid_for_partition =
  761. get_unique_guid_for_partition;
  762. ops_data->ops.get_size_of_partition = get_size_of_partition;
  763. ops_data->mmc_dev = boot_device;
  764. return &ops_data->ops;
  765. }
  766. void avb_ops_free(AvbOps *ops)
  767. {
  768. struct AvbOpsData *ops_data;
  769. if (!ops)
  770. return;
  771. ops_data = ops->user_data;
  772. if (ops_data) {
  773. #ifdef CONFIG_OPTEE_TA_AVB
  774. if (ops_data->tee)
  775. tee_close_session(ops_data->tee, ops_data->session);
  776. #endif
  777. avb_free(ops_data);
  778. }
  779. }