]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: avb: rework do_avb_verify_part
authorIgor Opaniuk <igor.opaniuk@gmail.com>
Fri, 9 Feb 2024 19:20:44 +0000 (20:20 +0100)
committerMattijs Korpershoek <mkorpershoek@baylibre.com>
Thu, 15 Feb 2024 09:38:34 +0000 (10:38 +0100)
Use existing str_avb_slot_error() function for obtaining
verification fail reason details.
Take into account device lock state for setting correct
androidboot.verifiedbootstate kernel cmdline parameter.

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Signed-off-by: Igor Opaniuk <igor.opaniuk@gmail.com>
Link: https://lore.kernel.org/r/20240209192045.3961832-7-igor.opaniuk@foundries.io
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
cmd/avb.c

index 62a3ee18e7f99c6406b943eaa7954a5d11461a13..8fbd48ee5a215d4887b22949461d24aba99e0a5b 100644 (file)
--- a/cmd/avb.c
+++ b/cmd/avb.c
@@ -250,6 +250,7 @@ int do_avb_verify_part(struct cmd_tbl *cmdtp, int flag,
        const char * const requested_partitions[] = {"boot", NULL};
        AvbSlotVerifyResult slot_result;
        AvbSlotVerifyData *out_data;
+       enum avb_boot_state boot_state;
        char *cmdline;
        char *extra_args;
        char *slot_suffix = "";
@@ -287,18 +288,23 @@ int do_avb_verify_part(struct cmd_tbl *cmdtp, int flag,
                                AVB_HASHTREE_ERROR_MODE_RESTART_AND_INVALIDATE,
                                &out_data);
 
-       switch (slot_result) {
-       case AVB_SLOT_VERIFY_RESULT_OK:
-               /* Until we don't have support of changing unlock states, we
-                * assume that we are by default in locked state.
-                * So in this case we can boot only when verification is
-                * successful; we also supply in cmdline GREEN boot state
-                */
+       /*
+        * LOCKED devices with custom root of trust setup is not supported (YELLOW)
+        */
+       if (slot_result == AVB_SLOT_VERIFY_RESULT_OK) {
                printf("Verification passed successfully\n");
 
-               /* export additional bootargs to AVB_BOOTARGS env var */
+               /*
+                * ORANGE state indicates that device may be freely modified.
+                * Device integrity is left to the user to verify out-of-band.
+                */
+               if (unlocked)
+                       boot_state = AVB_ORANGE;
+               else
+                       boot_state = AVB_GREEN;
 
-               extra_args = avb_set_state(avb_ops, AVB_GREEN);
+               /* export boot state to AVB_BOOTARGS env var */
+               extra_args = avb_set_state(avb_ops, boot_state);
                if (extra_args)
                        cmdline = append_cmd_line(out_data->cmdline,
                                                  extra_args);
@@ -308,30 +314,8 @@ int do_avb_verify_part(struct cmd_tbl *cmdtp, int flag,
                env_set(AVB_BOOTARGS, cmdline);
 
                res = CMD_RET_SUCCESS;
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_VERIFICATION:
-               printf("Verification failed\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_IO:
-               printf("I/O error occurred during verification\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_OOM:
-               printf("OOM error occurred during verification\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_METADATA:
-               printf("Corrupted dm-verity metadata detected\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_UNSUPPORTED_VERSION:
-               printf("Unsupported version of avbtool was used\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_ROLLBACK_INDEX:
-               printf("Rollback index check failed\n");
-               break;
-       case AVB_SLOT_VERIFY_RESULT_ERROR_PUBLIC_KEY_REJECTED:
-               printf("Public key was rejected\n");
-               break;
-       default:
-               printf("Unknown error occurred\n");
+       } else {
+               printf("Verification failed, reason: %s\n", str_avb_slot_error(slot_result));
        }
 
        if (out_data)