summaryrefslogtreecommitdiffstats
path: root/resources/depthcharge/patch/0007-vboot-Display-callbacks-for-developer-and-recovery-m.patch
blob: ea0612126d83cc134c80353bd67595115d1d087f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
From 541a3f09ecb062e3f0778eb9846732cfabcbfbba Mon Sep 17 00:00:00 2001
From: Paul Kocialkowski <contact@paulk.fr>
Date: Tue, 11 Aug 2015 11:22:54 +0200
Subject: [PATCH 7/7] vboot: Display callbacks for developer and recovery mode
 screens

We don't want to use bitmaps stored in GBB since they recommend the use of non-
free software (Chrome OS), so this implements a text-based interface instead.

Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
 src/vboot/callbacks/display.c | 168 +++++++++++++++++++++++++++++++++++++++---
 1 file changed, 156 insertions(+), 12 deletions(-)

diff --git a/src/vboot/callbacks/display.c b/src/vboot/callbacks/display.c
index efa0691..b659f7b 100644
--- a/src/vboot/callbacks/display.c
+++ b/src/vboot/callbacks/display.c
@@ -84,9 +84,17 @@ void print_on_center(const char *msg)
 	print_string(msg);
 }
 
-VbError_t VbExDisplayScreen(uint32_t screen_type)
+VbError_t VbExDisplayScreen(uint32_t screen_type, VbNvContext *vnc)
 {
-	const char *msg = NULL;
+	unsigned int rows, cols;
+	uint32_t boot_signed_only = 0;
+	uint32_t boot_usb = 0;
+	uint32_t boot_legacy = 0;
+	const char *fw_id;
+	int fw_index;
+	void *blob = NULL;
+	int size = 0;
+	char *msg;
 
 	/*
 	 * Show the debug messages for development. It is a backup method
@@ -98,31 +106,167 @@ VbError_t VbExDisplayScreen(uint32_t screen_type)
 		video_console_clear();
 		break;
 	case VB_SCREEN_DEVELOPER_WARNING:
-		msg = "developer mode warning";
+		video_console_clear();
+		video_console_set_cursor(0, 0);
+
+		if (vnc != NULL) {
+			VbNvGet(vnc, VBNV_DEV_BOOT_SIGNED_ONLY,
+				&boot_signed_only);
+
+			VbNvGet(vnc, VBNV_DEV_BOOT_USB, &boot_usb);
+			VbNvGet(vnc, VBNV_DEV_BOOT_LEGACY, &boot_legacy);
+		}
+
+		print_string(
+			"Welcome to developer mode!\n\n"
+			"Useful key combinations:\n"
+			"- Ctrl + H: Hold developer mode\n"
+			"- Ctrl + D: Boot from internal storage\n");
+
+		if (boot_usb)
+			print_string("- Ctrl + U: Boot from external media\n");
+
+		if (boot_legacy)
+			print_string("- Ctrl + L: Boot from legacy payload\n");
+
+		print_string(
+			"- Ctrl + I: Show device information\n"
+			"- Space: Disable developer mode\n\n"
+			"This screen is shown for 3 seconds (if not held)."
+			"\n\n");
+
+		if (vnc != NULL) {
+			if (!boot_signed_only)
+				print_string(
+					"Warning: this device will boot kernels"
+					" without verifying their signature!"
+					"\n");
+
+			if (boot_usb)
+				print_string(
+					"Warning: this device will boot from "
+					"external media!\n");
+
+			if (boot_legacy)
+				print_string(
+					"Warning: this device will boot legacy "
+					"payloads!\n");
+
+			if (!boot_signed_only || boot_usb)
+				print_string("\n");
+		}
+
+		find_common_params(&blob, &size);
+
+		if (blob != NULL) {
+			VbSharedDataHeader *vdat = (VbSharedDataHeader *) blob;
+			fw_index = get_active_fw_index(vdat);
+			fw_id = get_fw_id(fw_index);
+
+			if (fw_id == NULL)
+				fw_id = "NOT FOUND";
+
+			print_string("Active firmware id: ");
+			print_string(fw_id);
+
+			switch (fw_index) {
+				case VDAT_RW_A:
+					print_string(" (RW A)\n");
+					break;
+				case VDAT_RW_B:
+					print_string(" (RW A)\n");
+					break;
+				case VDAT_RO:
+					print_string(" (RO)\n");
+					break;
+				default:
+					print_string(" (UNKNOWN)\n");
+					break;
+			}
+		}
 		break;
 	case VB_SCREEN_DEVELOPER_EGG:
-		msg = "easter egg";
+		video_console_clear();
+		print_on_center("Free as in Freedom!");
 		break;
 	case VB_SCREEN_RECOVERY_REMOVE:
-		msg = "remove inserted devices";
+		video_console_clear();
+		print_on_center(
+			"Please remove any external media before accessing "
+			"recovery screen.");
 		break;
 	case VB_SCREEN_RECOVERY_INSERT:
-		msg = "insert recovery image";
-		break;
 	case VB_SCREEN_RECOVERY_NO_GOOD:
-		msg = "insert image invalid";
+		video_console_clear();
+		print_string(
+			"Welcome to recovery mode!\n\n"
+			"Useful key combinations:\n"
+			"- Ctrl + D: Enable developer mode (if possible)\n\n");
+
+		if (screen_type == VB_SCREEN_RECOVERY_NO_GOOD)
+			print_on_center(
+				"Invalid recovery media, please instert a "
+				"valid one.");
+		else
+			print_on_center(
+				"Please insert an external recovery media.");
+		break;
+	case VB_SCREEN_RECOVERY_TO_DEV:
+		video_console_clear();
+		video_get_rows_cols(&rows, &cols);
+
+		video_console_set_cursor(0, 0);
+
+		print_string(
+			"Enabling developer mode will allow booting unsigned "
+			"kernels and booting from external media (when enabled "
+			"with crossystem).\n\n"
+			"Developer mode can be disabled via the developer mode "
+			"screen.");
+
+		msg = "Developer mode will be enabled.";
+		video_console_set_cursor((cols - strlen(msg)) / 2, rows / 2);
+		print_string(msg);
+
+		msg = "Press enter to confirm or escape to go back.";
+		video_console_set_cursor((cols - strlen(msg)) / 2,
+					 rows / 2 + 2);
+		print_string(msg);
+		break;
+	case VB_SCREEN_DEVELOPER_TO_NORM:
+		video_console_clear();
+		video_get_rows_cols(&rows, &cols);
+
+		video_console_set_cursor(0, 0);
+
+		print_string(
+			"Disabling developer mode will restrict boot to signed "
+			"kernels stored on internal memory only.\n\n"
+			"Developer mode can be enabled again via the recovery "
+			"mode screen.");
+
+		msg = "Developer mode will be disabled.";
+		video_console_set_cursor((cols - strlen(msg)) / 2, rows / 2);
+		print_string(msg);
+
+		msg = "Press enter to confirm or escape to go back.";
+		video_console_set_cursor((cols - strlen(msg)) / 2,
+					 rows / 2 + 2);
+		print_string(msg);
 		break;
 	case VB_SCREEN_WAIT:
-		msg = "wait for ec update";
+		video_console_clear();
+		print_on_center("Waiting for EC update...");
+		break;
+	case VB_SCREEN_TO_NORM_CONFIRMED:
+		video_console_clear();
+		print_on_center("Disabling developer mode.");
 		break;
 	default:
 		printf("Not a valid screen type: %d.\n", screen_type);
 		return VBERROR_INVALID_SCREEN_INDEX;
 	}
 
-	if (msg)
-		print_on_center(msg);
-
 	return VBERROR_SUCCESS;
 }
 
-- 
1.9.1