Blame view

lib/efi_loader/efi_device_path_to_text.c 8.2 KB
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
1
2
3
4
5
6
7
8
9
10
  /*
   *  EFI device path interface
   *
   *  Copyright (c) 2017 Heinrich Schuchardt
   *
   *  SPDX-License-Identifier:     GPL-2.0+
   */
  
  #include <common.h>
  #include <efi_loader.h>
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
11
12
  #define MAC_OUTPUT_LEN 22
  #define UNKNOWN_OUTPUT_LEN 23
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
13

61aba1931   Heinrich Schuchardt   efi_loader: fix e...
14
15
  #define MAX_NODE_LEN 512
  #define MAX_PATH_LEN 1024
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
16
17
  const efi_guid_t efi_guid_device_path_to_text_protocol =
  		EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  static u16 *efi_str_to_u16(char *str)
  {
  	efi_uintn_t len;
  	u16 *out;
  	efi_status_t ret;
  
  	len = strlen(str) + 1;
  	ret = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, len * sizeof(u16),
  				(void **)&out);
  	if (ret != EFI_SUCCESS)
  		return NULL;
  	ascii2unicode(out, str);
  	out[len - 1] = 0;
  	return out;
  }
adae4313c   Rob Clark   efi_loader: flesh...
33
34
  static char *dp_unknown(char *s, struct efi_device_path *dp)
  {
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
35
  	s += sprintf(s, "UNKNOWN(%04x,%04x)", dp->type, dp->sub_type);
adae4313c   Rob Clark   efi_loader: flesh...
36
37
38
39
40
41
  	return s;
  }
  
  static char *dp_hardware(char *s, struct efi_device_path *dp)
  {
  	switch (dp->sub_type) {
bf19273e8   Rob Clark   efi_loader: Add m...
42
43
44
  	case DEVICE_PATH_SUB_TYPE_MEMORY: {
  		struct efi_device_path_memory *mdp =
  			(struct efi_device_path_memory *)dp;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
45
  		s += sprintf(s, "MemoryMapped(0x%x,0x%llx,0x%llx)",
bf19273e8   Rob Clark   efi_loader: Add m...
46
47
48
49
50
  			     mdp->memory_type,
  			     mdp->start_address,
  			     mdp->end_address);
  		break;
  	}
adae4313c   Rob Clark   efi_loader: flesh...
51
52
53
  	case DEVICE_PATH_SUB_TYPE_VENDOR: {
  		struct efi_device_path_vendor *vdp =
  			(struct efi_device_path_vendor *)dp;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
54
  		s += sprintf(s, "VenHw(%pUl)", &vdp->guid);
adae4313c   Rob Clark   efi_loader: flesh...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  		break;
  	}
  	default:
  		s = dp_unknown(s, dp);
  		break;
  	}
  	return s;
  }
  
  static char *dp_acpi(char *s, struct efi_device_path *dp)
  {
  	switch (dp->sub_type) {
  	case DEVICE_PATH_SUB_TYPE_ACPI_DEVICE: {
  		struct efi_device_path_acpi_path *adp =
  			(struct efi_device_path_acpi_path *)dp;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
70
  		s += sprintf(s, "Acpi(PNP%04x", EISA_PNP_NUM(adp->hid));
adae4313c   Rob Clark   efi_loader: flesh...
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  		if (adp->uid)
  			s += sprintf(s, ",%d", adp->uid);
  		s += sprintf(s, ")");
  		break;
  	}
  	default:
  		s = dp_unknown(s, dp);
  		break;
  	}
  	return s;
  }
  
  static char *dp_msging(char *s, struct efi_device_path *dp)
  {
  	switch (dp->sub_type) {
af3106a12   Heinrich Schuchardt   efi_loader: suppo...
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  	case DEVICE_PATH_SUB_TYPE_MSG_ATAPI: {
  		struct efi_device_path_atapi *ide =
  			(struct efi_device_path_atapi *)dp;
  		s += sprintf(s, "Ata(%d,%d,%d)", ide->primary_secondary,
  			     ide->slave_master, ide->logical_unit_number);
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_MSG_SCSI: {
  		struct efi_device_path_scsi *ide =
  			(struct efi_device_path_scsi *)dp;
  		s += sprintf(s, "Scsi(%u,%u)", ide->target_id,
  			     ide->logical_unit_number);
  		break;
  	}
adae4313c   Rob Clark   efi_loader: flesh...
100
101
102
  	case DEVICE_PATH_SUB_TYPE_MSG_USB: {
  		struct efi_device_path_usb *udp =
  			(struct efi_device_path_usb *)dp;
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
103
  		s += sprintf(s, "USB(0x%x,0x%x)", udp->parent_port_number,
adae4313c   Rob Clark   efi_loader: flesh...
104
105
106
107
108
109
110
111
112
  			     udp->usb_interface);
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR: {
  		struct efi_device_path_mac_addr *mdp =
  			(struct efi_device_path_mac_addr *)dp;
  
  		if (mdp->if_type != 0 && mdp->if_type != 1)
  			break;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
113
  		s += sprintf(s, "MAC(%02x%02x%02x%02x%02x%02x,0x%1x)",
adae4313c   Rob Clark   efi_loader: flesh...
114
115
116
117
118
119
120
121
122
123
  			mdp->mac.addr[0], mdp->mac.addr[1],
  			mdp->mac.addr[2], mdp->mac.addr[3],
  			mdp->mac.addr[4], mdp->mac.addr[5],
  			mdp->if_type);
  
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS: {
  		struct efi_device_path_usb_class *ucdp =
  			(struct efi_device_path_usb_class *)dp;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
124
  		s += sprintf(s, "USBClass(%x,%x,%x,%x,%x)",
adae4313c   Rob Clark   efi_loader: flesh...
125
126
127
128
129
130
131
132
133
134
  			ucdp->vendor_id, ucdp->product_id,
  			ucdp->device_class, ucdp->device_subclass,
  			ucdp->device_protocol);
  
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_MSG_SD:
  	case DEVICE_PATH_SUB_TYPE_MSG_MMC: {
  		const char *typename =
  			(dp->sub_type == DEVICE_PATH_SUB_TYPE_MSG_SD) ?
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
135
  					"SD" : "eMMC";
adae4313c   Rob Clark   efi_loader: flesh...
136
137
  		struct efi_device_path_sd_mmc_path *sddp =
  			(struct efi_device_path_sd_mmc_path *)dp;
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
138
  		s += sprintf(s, "%s(%u)", typename, sddp->slot_number);
adae4313c   Rob Clark   efi_loader: flesh...
139
140
141
142
143
144
145
146
  		break;
  	}
  	default:
  		s = dp_unknown(s, dp);
  		break;
  	}
  	return s;
  }
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
147
148
149
150
151
152
153
  /*
   * Convert a media device path node to text.
   *
   * @s		output buffer
   * @dp		device path node
   * @return	next unused buffer address
   */
adae4313c   Rob Clark   efi_loader: flesh...
154
155
156
157
158
159
160
  static char *dp_media(char *s, struct efi_device_path *dp)
  {
  	switch (dp->sub_type) {
  	case DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH: {
  		struct efi_device_path_hard_drive_path *hddp =
  			(struct efi_device_path_hard_drive_path *)dp;
  		void *sig = hddp->partition_signature;
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
161
162
163
164
165
166
  		u64 start;
  		u64 end;
  
  		/* Copy from packed structure to aligned memory */
  		memcpy(&start, &hddp->partition_start, sizeof(start));
  		memcpy(&end, &hddp->partition_end, sizeof(end));
adae4313c   Rob Clark   efi_loader: flesh...
167
168
  
  		switch (hddp->signature_type) {
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
169
170
171
172
173
174
175
  		case SIG_TYPE_MBR: {
  			u32 signature;
  
  			memcpy(&signature, sig, sizeof(signature));
  			s += sprintf(
  				s, "HD(%d,MBR,0x%08x,0x%llx,0x%llx)",
  				hddp->partition_number, signature, start, end);
adae4313c   Rob Clark   efi_loader: flesh...
176
  			break;
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
177
  			}
adae4313c   Rob Clark   efi_loader: flesh...
178
  		case SIG_TYPE_GUID:
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
179
180
181
  			s += sprintf(
  				s, "HD(%d,GPT,%pUl,0x%llx,0x%llx)",
  				hddp->partition_number, sig, start, end);
1a0b4d22a   Rob Clark   efi_loader: add m...
182
  			break;
adae4313c   Rob Clark   efi_loader: flesh...
183
  		default:
6ea8b580f   Heinrich Schuchardt   efi_loader: corre...
184
185
186
187
  			s += sprintf(
  				s, "HD(%d,0x%02x,0,0x%llx,0x%llx)",
  				hddp->partition_number, hddp->partmap_type,
  				start, end);
1a0b4d22a   Rob Clark   efi_loader: add m...
188
  			break;
adae4313c   Rob Clark   efi_loader: flesh...
189
190
191
192
193
194
195
  		}
  
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_CDROM_PATH: {
  		struct efi_device_path_cdrom_path *cddp =
  			(struct efi_device_path_cdrom_path *)dp;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
196
  		s += sprintf(s, "CDROM(0x%x)", cddp->boot_entry);
adae4313c   Rob Clark   efi_loader: flesh...
197
198
199
200
201
202
  		break;
  	}
  	case DEVICE_PATH_SUB_TYPE_FILE_PATH: {
  		struct efi_device_path_file_path *fp =
  			(struct efi_device_path_file_path *)dp;
  		int slen = (dp->length - sizeof(*dp)) / 2;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
203
204
205
  		if (slen > MAX_NODE_LEN - 2)
  			slen = MAX_NODE_LEN - 2;
  		s += sprintf(s, "%-.*ls", slen, fp->str);
adae4313c   Rob Clark   efi_loader: flesh...
206
207
208
209
210
211
212
213
  		break;
  	}
  	default:
  		s = dp_unknown(s, dp);
  		break;
  	}
  	return s;
  }
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
214
215
216
217
218
219
220
221
222
223
  /*
   * Converts a single node to a char string.
   *
   * @buffer		output buffer
   * @dp			device path or node
   * @return		end of string
   */
  static char *efi_convert_single_device_node_to_text(
  		char *buffer,
  		struct efi_device_path *dp)
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
224
  {
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
225
  	char *str = buffer;
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
226

61aba1931   Heinrich Schuchardt   efi_loader: fix e...
227
228
229
230
231
232
233
234
235
236
237
238
239
  	switch (dp->type) {
  	case DEVICE_PATH_TYPE_HARDWARE_DEVICE:
  		str = dp_hardware(str, dp);
  		break;
  	case DEVICE_PATH_TYPE_ACPI_DEVICE:
  		str = dp_acpi(str, dp);
  		break;
  	case DEVICE_PATH_TYPE_MESSAGING_DEVICE:
  		str = dp_msging(str, dp);
  		break;
  	case DEVICE_PATH_TYPE_MEDIA_DEVICE:
  		str = dp_media(str, dp);
  		break;
3c950b317   Heinrich Schuchardt   efi_loader: text ...
240
241
  	case DEVICE_PATH_TYPE_END:
  		break;
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
242
243
  	default:
  		str = dp_unknown(str, dp);
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
244
  	}
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
245
246
  	*str = '\0';
  	return str;
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
247
  }
c4574208b   Heinrich Schuchardt   efi_loader: comme...
248
249
250
251
252
253
254
255
256
257
258
259
  /*
   * This function implements the ConvertDeviceNodeToText service of the
   * EFI_DEVICE_PATH_TO_TEXT_PROTOCOL.
   * See the Unified Extensible Firmware Interface (UEFI) specification
   * for details.
   *
   * device_node		device node to be converted
   * display_only		true if the shorter text represenation shall be used
   * allow_shortcuts	true if shortcut forms may be used
   * @return		text represenation of the device path
   *			NULL if out of memory of device_path is NULL
   */
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
260
  static uint16_t EFIAPI *efi_convert_device_node_to_text(
9309a1b76   Rob Clark   efi_loader: drop ...
261
  		struct efi_device_path *device_node,
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
262
263
264
  		bool display_only,
  		bool allow_shortcuts)
  {
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
265
266
  	char str[MAX_NODE_LEN];
  	uint16_t *text = NULL;
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
267
268
  
  	EFI_ENTRY("%p, %d, %d", device_node, display_only, allow_shortcuts);
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
269
270
271
272
273
  	if (!device_node)
  		goto out;
  	efi_convert_single_device_node_to_text(str, device_node);
  
  	text = efi_str_to_u16(str);
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
274

61aba1931   Heinrich Schuchardt   efi_loader: fix e...
275
  out:
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
276
  	EFI_EXIT(EFI_SUCCESS);
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
277
  	return text;
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
278
  }
c4574208b   Heinrich Schuchardt   efi_loader: comme...
279
280
281
282
283
284
285
286
287
288
289
290
  /*
   * This function implements the ConvertDevicePathToText service of the
   * EFI_DEVICE_PATH_TO_TEXT_PROTOCOL.
   * See the Unified Extensible Firmware Interface (UEFI) specification
   * for details.
   *
   * device_path		device path to be converted
   * display_only		true if the shorter text represenation shall be used
   * allow_shortcuts	true if shortcut forms may be used
   * @return		text represenation of the device path
   *			NULL if out of memory of device_path is NULL
   */
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
291
  static uint16_t EFIAPI *efi_convert_device_path_to_text(
9309a1b76   Rob Clark   efi_loader: drop ...
292
  		struct efi_device_path *device_path,
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
293
294
295
  		bool display_only,
  		bool allow_shortcuts)
  {
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
296
297
298
  	uint16_t *text = NULL;
  	char buffer[MAX_PATH_LEN];
  	char *str = buffer;
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
299
300
  
  	EFI_ENTRY("%p, %d, %d", device_path, display_only, allow_shortcuts);
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
301
302
303
304
305
306
307
308
309
310
  	if (!device_path)
  		goto out;
  	while (device_path &&
  	       str + MAX_NODE_LEN < buffer + MAX_PATH_LEN) {
  		*str++ = '/';
  		str = efi_convert_single_device_node_to_text(str, device_path);
  		device_path = efi_dp_next(device_path);
  	}
  
  	text = efi_str_to_u16(buffer);
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
311

61aba1931   Heinrich Schuchardt   efi_loader: fix e...
312
  out:
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
313
  	EFI_EXIT(EFI_SUCCESS);
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
314
  	return text;
09c5ab909   xypron.glpk@gmx.de   efi_loader: imple...
315
  }
908cf9a3f   Heinrich Schuchardt   efi_loader: efi_d...
316
317
318
319
320
  /* helper for debug prints.. efi_free_pool() the result. */
  uint16_t *efi_dp_str(struct efi_device_path *dp)
  {
  	return EFI_CALL(efi_convert_device_path_to_text(dp, true, true));
  }
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
321
  const struct efi_device_path_to_text_protocol efi_device_path_to_text = {
61aba1931   Heinrich Schuchardt   efi_loader: fix e...
322
  	.convert_device_node_to_text = efi_convert_device_node_to_text,
cc5b70812   xypron.glpk@gmx.de   efi_loader: imple...
323
324
  	.convert_device_path_to_text = efi_convert_device_path_to_text,
  };