xref: /openbmc/libpldm/src/dsp/firmware_update.c (revision 71e935cf)
1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
2 #include "api.h"
3 #include "dsp/base.h"
4 #include "msgbuf.h"
5 #include <libpldm/firmware_update.h>
6 #include <libpldm/utils.h>
7 
8 #include <endian.h>
9 #include <stdbool.h>
10 #include <string.h>
11 
12 /** @brief Check whether string type value is valid
13  *
14  *  @return true if string type value is valid, false if not
15  */
16 static bool is_string_type_valid(uint8_t string_type)
17 {
18 	switch (string_type) {
19 	case PLDM_STR_TYPE_UNKNOWN:
20 		return false;
21 	case PLDM_STR_TYPE_ASCII:
22 	case PLDM_STR_TYPE_UTF_8:
23 	case PLDM_STR_TYPE_UTF_16:
24 	case PLDM_STR_TYPE_UTF_16LE:
25 	case PLDM_STR_TYPE_UTF_16BE:
26 		return true;
27 	default:
28 		return false;
29 	}
30 }
31 
32 /** @brief Return the length of the descriptor type described in firmware update
33  *         specification
34  *
35  *  @return length of the descriptor type if descriptor type is valid else
36  *          return 0
37  */
38 static uint16_t get_descriptor_type_length(uint16_t descriptor_type)
39 {
40 	switch (descriptor_type) {
41 	case PLDM_FWUP_PCI_VENDOR_ID:
42 		return PLDM_FWUP_PCI_VENDOR_ID_LENGTH;
43 	case PLDM_FWUP_IANA_ENTERPRISE_ID:
44 		return PLDM_FWUP_IANA_ENTERPRISE_ID_LENGTH;
45 	case PLDM_FWUP_UUID:
46 		return PLDM_FWUP_UUID_LENGTH;
47 	case PLDM_FWUP_PNP_VENDOR_ID:
48 		return PLDM_FWUP_PNP_VENDOR_ID_LENGTH;
49 	case PLDM_FWUP_ACPI_VENDOR_ID:
50 		return PLDM_FWUP_ACPI_VENDOR_ID_LENGTH;
51 	case PLDM_FWUP_IEEE_ASSIGNED_COMPANY_ID:
52 		return PLDM_FWUP_IEEE_ASSIGNED_COMPANY_ID_LENGTH;
53 	case PLDM_FWUP_SCSI_VENDOR_ID:
54 		return PLDM_FWUP_SCSI_VENDOR_ID_LENGTH;
55 	case PLDM_FWUP_PCI_DEVICE_ID:
56 		return PLDM_FWUP_PCI_DEVICE_ID_LENGTH;
57 	case PLDM_FWUP_PCI_SUBSYSTEM_VENDOR_ID:
58 		return PLDM_FWUP_PCI_SUBSYSTEM_VENDOR_ID_LENGTH;
59 	case PLDM_FWUP_PCI_SUBSYSTEM_ID:
60 		return PLDM_FWUP_PCI_SUBSYSTEM_ID_LENGTH;
61 	case PLDM_FWUP_PCI_REVISION_ID:
62 		return PLDM_FWUP_PCI_REVISION_ID_LENGTH;
63 	case PLDM_FWUP_PNP_PRODUCT_IDENTIFIER:
64 		return PLDM_FWUP_PNP_PRODUCT_IDENTIFIER_LENGTH;
65 	case PLDM_FWUP_ACPI_PRODUCT_IDENTIFIER:
66 		return PLDM_FWUP_ACPI_PRODUCT_IDENTIFIER_LENGTH;
67 	case PLDM_FWUP_ASCII_MODEL_NUMBER_LONG_STRING:
68 		return PLDM_FWUP_ASCII_MODEL_NUMBER_LONG_STRING_LENGTH;
69 	case PLDM_FWUP_ASCII_MODEL_NUMBER_SHORT_STRING:
70 		return PLDM_FWUP_ASCII_MODEL_NUMBER_SHORT_STRING_LENGTH;
71 	case PLDM_FWUP_SCSI_PRODUCT_ID:
72 		return PLDM_FWUP_SCSI_PRODUCT_ID_LENGTH;
73 	case PLDM_FWUP_UBM_CONTROLLER_DEVICE_CODE:
74 		return PLDM_FWUP_UBM_CONTROLLER_DEVICE_CODE_LENGTH;
75 	default:
76 		return 0;
77 	}
78 }
79 
80 static bool is_downstream_device_update_support_valid(uint8_t resp)
81 {
82 	switch (resp) {
83 	case PLDM_FWUP_DOWNSTREAM_DEVICE_UPDATE_NOT_SUPPORTED:
84 	case PLDM_FWUP_DOWNSTREAM_DEVICE_UPDATE_SUPPORTED:
85 		return true;
86 	default:
87 		return false;
88 	}
89 }
90 
91 static bool
92 is_transfer_operation_flag_valid(enum transfer_op_flag transfer_op_flag)
93 {
94 	switch (transfer_op_flag) {
95 	case PLDM_GET_NEXTPART:
96 	case PLDM_GET_FIRSTPART:
97 		return true;
98 	default:
99 		return false;
100 	}
101 }
102 
103 /** @brief Check whether ComponentResponse is valid
104  *
105  *  @return true if ComponentResponse is valid, false if not
106  */
107 static bool is_comp_resp_valid(uint8_t comp_resp)
108 {
109 	switch (comp_resp) {
110 	case PLDM_CR_COMP_CAN_BE_UPDATED:
111 	case PLDM_CR_COMP_MAY_BE_UPDATEABLE:
112 		return true;
113 
114 	default:
115 		return false;
116 	}
117 }
118 
119 /** @brief Check whether ComponentResponseCode is valid
120  *
121  *  @return true if ComponentResponseCode is valid, false if not
122  */
123 static bool is_comp_resp_code_valid(uint8_t comp_resp_code)
124 {
125 	switch (comp_resp_code) {
126 	case PLDM_CRC_COMP_CAN_BE_UPDATED:
127 	case PLDM_CRC_COMP_COMPARISON_STAMP_IDENTICAL:
128 	case PLDM_CRC_COMP_COMPARISON_STAMP_LOWER:
129 	case PLDM_CRC_INVALID_COMP_COMPARISON_STAMP:
130 	case PLDM_CRC_COMP_CONFLICT:
131 	case PLDM_CRC_COMP_PREREQUISITES_NOT_MET:
132 	case PLDM_CRC_COMP_NOT_SUPPORTED:
133 	case PLDM_CRC_COMP_SECURITY_RESTRICTIONS:
134 	case PLDM_CRC_INCOMPLETE_COMP_IMAGE_SET:
135 	case PLDM_CRC_ACTIVE_IMAGE_NOT_UPDATEABLE_SUBSEQUENTLY:
136 	case PLDM_CRC_COMP_VER_STR_IDENTICAL:
137 	case PLDM_CRC_COMP_VER_STR_LOWER:
138 		return true;
139 
140 	default:
141 		if (comp_resp_code >=
142 			    PLDM_CRC_VENDOR_COMP_RESP_CODE_RANGE_MIN &&
143 		    comp_resp_code <=
144 			    PLDM_CRC_VENDOR_COMP_RESP_CODE_RANGE_MAX) {
145 			return true;
146 		}
147 		return false;
148 	}
149 }
150 
151 /** @brief Check whether ComponentCompatibilityResponse is valid
152  *
153  *  @return true if ComponentCompatibilityResponse is valid, false if not
154  */
155 static bool is_comp_compatibility_resp_valid(uint8_t comp_compatibility_resp)
156 {
157 	switch (comp_compatibility_resp) {
158 	case PLDM_CCR_COMP_CAN_BE_UPDATED:
159 	case PLDM_CCR_COMP_CANNOT_BE_UPDATED:
160 		return true;
161 
162 	default:
163 		return false;
164 	}
165 }
166 
167 /** @brief Check whether ComponentCompatibilityResponse Code is valid
168  *
169  *  @return true if ComponentCompatibilityResponse Code is valid, false if not
170  */
171 static bool
172 is_comp_compatibility_resp_code_valid(uint8_t comp_compatibility_resp_code)
173 {
174 	switch (comp_compatibility_resp_code) {
175 	case PLDM_CCRC_NO_RESPONSE_CODE:
176 	case PLDM_CCRC_COMP_COMPARISON_STAMP_IDENTICAL:
177 	case PLDM_CCRC_COMP_COMPARISON_STAMP_LOWER:
178 	case PLDM_CCRC_INVALID_COMP_COMPARISON_STAMP:
179 	case PLDM_CCRC_COMP_CONFLICT:
180 	case PLDM_CCRC_COMP_PREREQUISITES_NOT_MET:
181 	case PLDM_CCRC_COMP_NOT_SUPPORTED:
182 	case PLDM_CCRC_COMP_SECURITY_RESTRICTIONS:
183 	case PLDM_CRC_INCOMPLETE_COMP_IMAGE_SET:
184 	case PLDM_CCRC_COMP_INFO_NO_MATCH:
185 	case PLDM_CCRC_COMP_VER_STR_IDENTICAL:
186 	case PLDM_CCRC_COMP_VER_STR_LOWER:
187 		return true;
188 
189 	default:
190 		if (comp_compatibility_resp_code >=
191 			    PLDM_CCRC_VENDOR_COMP_RESP_CODE_RANGE_MIN &&
192 		    comp_compatibility_resp_code <=
193 			    PLDM_CCRC_VENDOR_COMP_RESP_CODE_RANGE_MAX) {
194 			return true;
195 		}
196 		return false;
197 	}
198 }
199 
200 /** @brief Check whether SelfContainedActivationRequest is valid
201  *
202  *  @return true if SelfContainedActivationRequest is valid, false if not
203  */
204 static bool
205 is_self_contained_activation_req_valid(bool8_t self_contained_activation_req)
206 {
207 	switch (self_contained_activation_req) {
208 	case PLDM_NOT_ACTIVATE_SELF_CONTAINED_COMPONENTS:
209 	case PLDM_ACTIVATE_SELF_CONTAINED_COMPONENTS:
210 		return true;
211 
212 	default:
213 		return false;
214 	}
215 }
216 
217 /** @brief Check if current or previous status in GetStatus command response is
218  *         valid
219  *
220  *	@param[in] state - current or previous different state machine state of
221  *                     the FD
222  *	@return true if state is valid, false if not
223  */
224 static bool is_state_valid(uint8_t state)
225 {
226 	switch (state) {
227 	case PLDM_FD_STATE_IDLE:
228 	case PLDM_FD_STATE_LEARN_COMPONENTS:
229 	case PLDM_FD_STATE_READY_XFER:
230 	case PLDM_FD_STATE_DOWNLOAD:
231 	case PLDM_FD_STATE_VERIFY:
232 	case PLDM_FD_STATE_APPLY:
233 	case PLDM_FD_STATE_ACTIVATE:
234 		return true;
235 
236 	default:
237 		return false;
238 	}
239 }
240 
241 /** @brief Check if aux state in GetStatus command response is valid
242  *
243  *  @param[in] aux_state - provides additional information to the UA to describe
244  *                         the current operation state of the FD/FDP
245  *
246  *	@return true if aux state is valid, false if not
247  */
248 static bool is_aux_state_valid(uint8_t aux_state)
249 {
250 	switch (aux_state) {
251 	case PLDM_FD_OPERATION_IN_PROGRESS:
252 	case PLDM_FD_OPERATION_SUCCESSFUL:
253 	case PLDM_FD_OPERATION_FAILED:
254 	case PLDM_FD_IDLE_LEARN_COMPONENTS_READ_XFER:
255 		return true;
256 
257 	default:
258 		return false;
259 	}
260 }
261 
262 /** @brief Check if aux state status in GetStatus command response is valid
263  *
264  *	@param[in] aux_state_status - aux state status
265  *
266  *	@return true if aux state status is valid, false if not
267  */
268 static bool is_aux_state_status_valid(uint8_t aux_state_status)
269 {
270 	if (aux_state_status == PLDM_FD_AUX_STATE_IN_PROGRESS_OR_SUCCESS ||
271 	    aux_state_status == PLDM_FD_TIMEOUT ||
272 	    aux_state_status == PLDM_FD_GENERIC_ERROR ||
273 	    (aux_state_status >= PLDM_FD_VENDOR_DEFINED_STATUS_CODE_START &&
274 	     aux_state_status <= PLDM_FD_VENDOR_DEFINED_STATUS_CODE_END)) {
275 		return true;
276 	}
277 
278 	return false;
279 }
280 
281 /** @brief Check if reason code in GetStatus command response is valid
282  *
283  *	@param[in] reason_code - provides the reason for why the current state
284  *                           entered the IDLE state
285  *
286  *	@return true if reason code is valid, false if not
287  */
288 static bool is_reason_code_valid(uint8_t reason_code)
289 {
290 	switch (reason_code) {
291 	case PLDM_FD_INITIALIZATION:
292 	case PLDM_FD_ACTIVATE_FW:
293 	case PLDM_FD_CANCEL_UPDATE:
294 	case PLDM_FD_TIMEOUT_LEARN_COMPONENT:
295 	case PLDM_FD_TIMEOUT_READY_XFER:
296 	case PLDM_FD_TIMEOUT_DOWNLOAD:
297 	case PLDM_FD_TIMEOUT_VERIFY:
298 	case PLDM_FD_TIMEOUT_APPLY:
299 		return true;
300 
301 	default:
302 		if (reason_code >= PLDM_FD_STATUS_VENDOR_DEFINED_MIN) {
303 			return true;
304 		}
305 		return false;
306 	}
307 }
308 
309 /** @brief Check if non functioning component indication in CancelUpdate
310  *         response is valid
311  *
312  *  @return true if non functioning component indication is valid, false if not
313  */
314 static bool is_non_functioning_component_indication_valid(
315 	bool8_t non_functioning_component_indication)
316 {
317 	switch (non_functioning_component_indication) {
318 	case PLDM_FWUP_COMPONENTS_FUNCTIONING:
319 	case PLDM_FWUP_COMPONENTS_NOT_FUNCTIONING:
320 		return true;
321 
322 	default:
323 		return false;
324 	}
325 }
326 
327 LIBPLDM_ABI_STABLE
328 int decode_pldm_package_header_info(
329 	const uint8_t *data, size_t length,
330 	struct pldm_package_header_information *package_header_info,
331 	struct variable_field *package_version_str)
332 {
333 	if (data == NULL || package_header_info == NULL ||
334 	    package_version_str == NULL) {
335 		return PLDM_ERROR_INVALID_DATA;
336 	}
337 
338 	if (length < sizeof(struct pldm_package_header_information)) {
339 		return PLDM_ERROR_INVALID_LENGTH;
340 	}
341 
342 	struct pldm_package_header_information *data_header =
343 		(struct pldm_package_header_information *)(data);
344 
345 	if (!is_string_type_valid(data_header->package_version_string_type) ||
346 	    (data_header->package_version_string_length == 0)) {
347 		return PLDM_ERROR_INVALID_DATA;
348 	}
349 
350 	if (length < sizeof(struct pldm_package_header_information) +
351 			     data_header->package_version_string_length) {
352 		return PLDM_ERROR_INVALID_LENGTH;
353 	}
354 
355 	if ((data_header->component_bitmap_bit_length %
356 	     PLDM_FWUP_COMPONENT_BITMAP_MULTIPLE) != 0) {
357 		return PLDM_ERROR_INVALID_DATA;
358 	}
359 
360 	memcpy(package_header_info->uuid, data_header->uuid,
361 	       sizeof(data_header->uuid));
362 	package_header_info->package_header_format_version =
363 		data_header->package_header_format_version;
364 	package_header_info->package_header_size =
365 		le16toh(data_header->package_header_size);
366 	memcpy(package_header_info->package_release_date_time,
367 	       data_header->package_release_date_time,
368 	       sizeof(data_header->package_release_date_time));
369 	package_header_info->component_bitmap_bit_length =
370 		le16toh(data_header->component_bitmap_bit_length);
371 	package_header_info->package_version_string_type =
372 		data_header->package_version_string_type;
373 	package_header_info->package_version_string_length =
374 		data_header->package_version_string_length;
375 	package_version_str->ptr =
376 		data + sizeof(struct pldm_package_header_information);
377 	package_version_str->length =
378 		package_header_info->package_version_string_length;
379 
380 	return PLDM_SUCCESS;
381 }
382 
383 LIBPLDM_ABI_STABLE
384 int decode_firmware_device_id_record(
385 	const uint8_t *data, size_t length,
386 	uint16_t component_bitmap_bit_length,
387 	struct pldm_firmware_device_id_record *fw_device_id_record,
388 	struct variable_field *applicable_components,
389 	struct variable_field *comp_image_set_version_str,
390 	struct variable_field *record_descriptors,
391 	struct variable_field *fw_device_pkg_data)
392 {
393 	if (data == NULL || fw_device_id_record == NULL ||
394 	    applicable_components == NULL ||
395 	    comp_image_set_version_str == NULL || record_descriptors == NULL ||
396 	    fw_device_pkg_data == NULL) {
397 		return PLDM_ERROR_INVALID_DATA;
398 	}
399 
400 	if (length < sizeof(struct pldm_firmware_device_id_record)) {
401 		return PLDM_ERROR_INVALID_LENGTH;
402 	}
403 
404 	if ((component_bitmap_bit_length %
405 	     PLDM_FWUP_COMPONENT_BITMAP_MULTIPLE) != 0) {
406 		return PLDM_ERROR_INVALID_DATA;
407 	}
408 
409 	struct pldm_firmware_device_id_record *data_record =
410 		(struct pldm_firmware_device_id_record *)(data);
411 
412 	if (!is_string_type_valid(
413 		    data_record->comp_image_set_version_string_type) ||
414 	    (data_record->comp_image_set_version_string_length == 0)) {
415 		return PLDM_ERROR_INVALID_DATA;
416 	}
417 
418 	fw_device_id_record->record_length =
419 		le16toh(data_record->record_length);
420 	fw_device_id_record->descriptor_count = data_record->descriptor_count;
421 	fw_device_id_record->device_update_option_flags.value =
422 		le32toh(data_record->device_update_option_flags.value);
423 	fw_device_id_record->comp_image_set_version_string_type =
424 		data_record->comp_image_set_version_string_type;
425 	fw_device_id_record->comp_image_set_version_string_length =
426 		data_record->comp_image_set_version_string_length;
427 	fw_device_id_record->fw_device_pkg_data_length =
428 		le16toh(data_record->fw_device_pkg_data_length);
429 
430 	if (length < fw_device_id_record->record_length) {
431 		return PLDM_ERROR_INVALID_LENGTH;
432 	}
433 
434 	uint16_t applicable_components_length =
435 		component_bitmap_bit_length /
436 		PLDM_FWUP_COMPONENT_BITMAP_MULTIPLE;
437 	uint16_t calc_min_record_length =
438 		sizeof(struct pldm_firmware_device_id_record) +
439 		applicable_components_length +
440 		data_record->comp_image_set_version_string_length +
441 		PLDM_FWUP_DEVICE_DESCRIPTOR_MIN_LEN +
442 		fw_device_id_record->fw_device_pkg_data_length;
443 
444 	if (fw_device_id_record->record_length < calc_min_record_length) {
445 		return PLDM_ERROR_INVALID_LENGTH;
446 	}
447 
448 	applicable_components->ptr =
449 		data + sizeof(struct pldm_firmware_device_id_record);
450 	applicable_components->length = applicable_components_length;
451 
452 	comp_image_set_version_str->ptr =
453 		applicable_components->ptr + applicable_components->length;
454 	comp_image_set_version_str->length =
455 		fw_device_id_record->comp_image_set_version_string_length;
456 
457 	record_descriptors->ptr = comp_image_set_version_str->ptr +
458 				  comp_image_set_version_str->length;
459 	record_descriptors->length =
460 		fw_device_id_record->record_length -
461 		sizeof(struct pldm_firmware_device_id_record) -
462 		applicable_components_length -
463 		fw_device_id_record->comp_image_set_version_string_length -
464 		fw_device_id_record->fw_device_pkg_data_length;
465 
466 	if (fw_device_id_record->fw_device_pkg_data_length) {
467 		fw_device_pkg_data->ptr =
468 			record_descriptors->ptr + record_descriptors->length;
469 		fw_device_pkg_data->length =
470 			fw_device_id_record->fw_device_pkg_data_length;
471 	}
472 
473 	return PLDM_SUCCESS;
474 }
475 
476 LIBPLDM_ABI_TESTING
477 int decode_pldm_descriptor_from_iter(struct pldm_descriptor_iter *iter,
478 				     struct pldm_descriptor *desc)
479 {
480 	struct pldm_msgbuf _buf;
481 	struct pldm_msgbuf *buf = &_buf;
482 	int rc;
483 
484 	if (!iter || !iter->field || !desc) {
485 		return -EINVAL;
486 	}
487 
488 	rc = pldm_msgbuf_init_errno(buf, PLDM_FWUP_DEVICE_DESCRIPTOR_MIN_LEN,
489 				    iter->field->ptr, iter->field->length);
490 	if (rc) {
491 		return rc;
492 	}
493 
494 	pldm_msgbuf_extract(buf, desc->descriptor_type);
495 	rc = pldm_msgbuf_extract(buf, desc->descriptor_length);
496 	if (rc) {
497 		return rc;
498 	}
499 
500 	desc->descriptor_data = NULL;
501 	pldm_msgbuf_span_required(buf, desc->descriptor_length,
502 				  (void **)&desc->descriptor_data);
503 	iter->field->ptr = NULL;
504 	pldm_msgbuf_span_remaining(buf, (void **)&iter->field->ptr,
505 				   &iter->field->length);
506 
507 	return pldm_msgbuf_destroy(buf);
508 }
509 
510 LIBPLDM_ABI_STABLE
511 int decode_descriptor_type_length_value(const uint8_t *data, size_t length,
512 					uint16_t *descriptor_type,
513 					struct variable_field *descriptor_data)
514 {
515 	uint16_t descriptor_length = 0;
516 
517 	if (data == NULL || descriptor_type == NULL ||
518 	    descriptor_data == NULL) {
519 		return PLDM_ERROR_INVALID_DATA;
520 	}
521 
522 	if (length < PLDM_FWUP_DEVICE_DESCRIPTOR_MIN_LEN) {
523 		return PLDM_ERROR_INVALID_LENGTH;
524 	}
525 
526 	struct pldm_descriptor_tlv *entry =
527 		(struct pldm_descriptor_tlv *)(data);
528 
529 	*descriptor_type = le16toh(entry->descriptor_type);
530 	descriptor_length = le16toh(entry->descriptor_length);
531 	if (*descriptor_type != PLDM_FWUP_VENDOR_DEFINED) {
532 		if (descriptor_length !=
533 		    get_descriptor_type_length(*descriptor_type)) {
534 			return PLDM_ERROR_INVALID_LENGTH;
535 		}
536 	}
537 
538 	if (length < (sizeof(*descriptor_type) + sizeof(descriptor_length) +
539 		      descriptor_length)) {
540 		return PLDM_ERROR_INVALID_LENGTH;
541 	}
542 
543 	descriptor_data->ptr = entry->descriptor_data;
544 	descriptor_data->length = descriptor_length;
545 
546 	return PLDM_SUCCESS;
547 }
548 
549 LIBPLDM_ABI_STABLE
550 int decode_vendor_defined_descriptor_value(
551 	const uint8_t *data, size_t length, uint8_t *descriptor_title_str_type,
552 	struct variable_field *descriptor_title_str,
553 	struct variable_field *descriptor_data)
554 {
555 	if (data == NULL || descriptor_title_str_type == NULL ||
556 	    descriptor_title_str == NULL || descriptor_data == NULL) {
557 		return PLDM_ERROR_INVALID_DATA;
558 	}
559 
560 	if (length < sizeof(struct pldm_vendor_defined_descriptor_title_data)) {
561 		return PLDM_ERROR_INVALID_LENGTH;
562 	}
563 
564 	struct pldm_vendor_defined_descriptor_title_data *entry =
565 		(struct pldm_vendor_defined_descriptor_title_data *)(data);
566 	if (!is_string_type_valid(
567 		    entry->vendor_defined_descriptor_title_str_type) ||
568 	    (entry->vendor_defined_descriptor_title_str_len == 0)) {
569 		return PLDM_ERROR_INVALID_DATA;
570 	}
571 
572 	// Assuming at least 1 byte of VendorDefinedDescriptorData
573 	if (length < (sizeof(struct pldm_vendor_defined_descriptor_title_data) +
574 		      entry->vendor_defined_descriptor_title_str_len)) {
575 		return PLDM_ERROR_INVALID_LENGTH;
576 	}
577 
578 	*descriptor_title_str_type =
579 		entry->vendor_defined_descriptor_title_str_type;
580 	descriptor_title_str->ptr = entry->vendor_defined_descriptor_title_str;
581 	descriptor_title_str->length =
582 		entry->vendor_defined_descriptor_title_str_len;
583 
584 	descriptor_data->ptr =
585 		descriptor_title_str->ptr + descriptor_title_str->length;
586 	descriptor_data->length =
587 		length -
588 		sizeof(entry->vendor_defined_descriptor_title_str_type) -
589 		sizeof(entry->vendor_defined_descriptor_title_str_len) -
590 		descriptor_title_str->length;
591 
592 	return PLDM_SUCCESS;
593 }
594 
595 LIBPLDM_ABI_STABLE
596 int decode_pldm_comp_image_info(
597 	const uint8_t *data, size_t length,
598 	struct pldm_component_image_information *pldm_comp_image_info,
599 	struct variable_field *comp_version_str)
600 {
601 	if (data == NULL || pldm_comp_image_info == NULL ||
602 	    comp_version_str == NULL) {
603 		return PLDM_ERROR_INVALID_DATA;
604 	}
605 
606 	if (length < sizeof(struct pldm_component_image_information)) {
607 		return PLDM_ERROR_INVALID_LENGTH;
608 	}
609 
610 	struct pldm_component_image_information *data_header =
611 		(struct pldm_component_image_information *)(data);
612 
613 	if (!is_string_type_valid(data_header->comp_version_string_type) ||
614 	    (data_header->comp_version_string_length == 0)) {
615 		return PLDM_ERROR_INVALID_DATA;
616 	}
617 
618 	if (length < sizeof(struct pldm_component_image_information) +
619 			     data_header->comp_version_string_length) {
620 		return PLDM_ERROR_INVALID_LENGTH;
621 	}
622 
623 	pldm_comp_image_info->comp_classification =
624 		le16toh(data_header->comp_classification);
625 	pldm_comp_image_info->comp_identifier =
626 		le16toh(data_header->comp_identifier);
627 	pldm_comp_image_info->comp_comparison_stamp =
628 		le32toh(data_header->comp_comparison_stamp);
629 	pldm_comp_image_info->comp_options.value =
630 		le16toh(data_header->comp_options.value);
631 	pldm_comp_image_info->requested_comp_activation_method.value =
632 		le16toh(data_header->requested_comp_activation_method.value);
633 	pldm_comp_image_info->comp_location_offset =
634 		le32toh(data_header->comp_location_offset);
635 	pldm_comp_image_info->comp_size = le32toh(data_header->comp_size);
636 	pldm_comp_image_info->comp_version_string_type =
637 		data_header->comp_version_string_type;
638 	pldm_comp_image_info->comp_version_string_length =
639 		data_header->comp_version_string_length;
640 
641 	if ((pldm_comp_image_info->comp_options.bits.bit1 == false &&
642 	     pldm_comp_image_info->comp_comparison_stamp !=
643 		     PLDM_FWUP_INVALID_COMPONENT_COMPARISON_TIMESTAMP)) {
644 		return PLDM_ERROR_INVALID_DATA;
645 	}
646 
647 	if (pldm_comp_image_info->comp_location_offset == 0 ||
648 	    pldm_comp_image_info->comp_size == 0) {
649 		return PLDM_ERROR_INVALID_DATA;
650 	}
651 
652 	comp_version_str->ptr =
653 		data + sizeof(struct pldm_component_image_information);
654 	comp_version_str->length =
655 		pldm_comp_image_info->comp_version_string_length;
656 
657 	return PLDM_SUCCESS;
658 }
659 
660 LIBPLDM_ABI_STABLE
661 int encode_query_device_identifiers_req(uint8_t instance_id,
662 					size_t payload_length,
663 					struct pldm_msg *msg)
664 {
665 	if (msg == NULL) {
666 		return PLDM_ERROR_INVALID_DATA;
667 	}
668 
669 	if (payload_length != PLDM_QUERY_DEVICE_IDENTIFIERS_REQ_BYTES) {
670 		return PLDM_ERROR_INVALID_LENGTH;
671 	}
672 
673 	return encode_pldm_header_only(PLDM_REQUEST, instance_id, PLDM_FWUP,
674 				       PLDM_QUERY_DEVICE_IDENTIFIERS, msg);
675 }
676 
677 LIBPLDM_ABI_STABLE
678 int decode_query_device_identifiers_resp(const struct pldm_msg *msg,
679 					 size_t payload_length,
680 					 uint8_t *completion_code,
681 					 uint32_t *device_identifiers_len,
682 					 uint8_t *descriptor_count,
683 					 uint8_t **descriptor_data)
684 {
685 	if (msg == NULL || completion_code == NULL ||
686 	    device_identifiers_len == NULL || descriptor_count == NULL ||
687 	    descriptor_data == NULL) {
688 		return PLDM_ERROR_INVALID_DATA;
689 	}
690 
691 	*completion_code = msg->payload[0];
692 	if (PLDM_SUCCESS != *completion_code) {
693 		return PLDM_SUCCESS;
694 	}
695 
696 	if (payload_length <
697 	    sizeof(struct pldm_query_device_identifiers_resp)) {
698 		return PLDM_ERROR_INVALID_LENGTH;
699 	}
700 
701 	struct pldm_query_device_identifiers_resp *response =
702 		(struct pldm_query_device_identifiers_resp *)msg->payload;
703 	*device_identifiers_len = le32toh(response->device_identifiers_len);
704 
705 	if (*device_identifiers_len < PLDM_FWUP_DEVICE_DESCRIPTOR_MIN_LEN) {
706 		return PLDM_ERROR_INVALID_LENGTH;
707 	}
708 
709 	if (payload_length !=
710 	    sizeof(struct pldm_query_device_identifiers_resp) +
711 		    *device_identifiers_len) {
712 		return PLDM_ERROR_INVALID_LENGTH;
713 	}
714 	*descriptor_count = response->descriptor_count;
715 
716 	if (*descriptor_count == 0) {
717 		return PLDM_ERROR_INVALID_DATA;
718 	}
719 	*descriptor_data =
720 		(uint8_t *)(msg->payload +
721 			    sizeof(struct pldm_query_device_identifiers_resp));
722 	return PLDM_SUCCESS;
723 }
724 
725 LIBPLDM_ABI_STABLE
726 int encode_get_firmware_parameters_req(uint8_t instance_id,
727 				       size_t payload_length,
728 				       struct pldm_msg *msg)
729 {
730 	if (msg == NULL) {
731 		return PLDM_ERROR_INVALID_DATA;
732 	}
733 
734 	if (payload_length != PLDM_GET_FIRMWARE_PARAMETERS_REQ_BYTES) {
735 		return PLDM_ERROR_INVALID_LENGTH;
736 	}
737 
738 	return encode_pldm_header_only(PLDM_REQUEST, instance_id, PLDM_FWUP,
739 				       PLDM_GET_FIRMWARE_PARAMETERS, msg);
740 }
741 
742 LIBPLDM_ABI_STABLE
743 int decode_get_firmware_parameters_resp(
744 	const struct pldm_msg *msg, size_t payload_length,
745 	struct pldm_get_firmware_parameters_resp *resp_data,
746 	struct variable_field *active_comp_image_set_ver_str,
747 	struct variable_field *pending_comp_image_set_ver_str,
748 	struct variable_field *comp_parameter_table)
749 {
750 	if (msg == NULL || resp_data == NULL ||
751 	    active_comp_image_set_ver_str == NULL ||
752 	    pending_comp_image_set_ver_str == NULL ||
753 	    comp_parameter_table == NULL || !payload_length) {
754 		return PLDM_ERROR_INVALID_DATA;
755 	}
756 
757 	resp_data->completion_code = msg->payload[0];
758 	if (PLDM_SUCCESS != resp_data->completion_code) {
759 		return PLDM_SUCCESS;
760 	}
761 
762 	if (payload_length < sizeof(struct pldm_get_firmware_parameters_resp)) {
763 		return PLDM_ERROR_INVALID_LENGTH;
764 	}
765 
766 	struct pldm_get_firmware_parameters_resp *response =
767 		(struct pldm_get_firmware_parameters_resp *)msg->payload;
768 
769 	if (!is_string_type_valid(
770 		    response->active_comp_image_set_ver_str_type) ||
771 	    (response->active_comp_image_set_ver_str_len == 0)) {
772 		return PLDM_ERROR_INVALID_DATA;
773 	}
774 
775 	if (response->pending_comp_image_set_ver_str_len == 0) {
776 		if (response->pending_comp_image_set_ver_str_type !=
777 		    PLDM_STR_TYPE_UNKNOWN) {
778 			return PLDM_ERROR_INVALID_DATA;
779 		}
780 	} else {
781 		if (!is_string_type_valid(
782 			    response->pending_comp_image_set_ver_str_type)) {
783 			return PLDM_ERROR_INVALID_DATA;
784 		}
785 	}
786 
787 	size_t partial_response_length =
788 		sizeof(struct pldm_get_firmware_parameters_resp) +
789 		response->active_comp_image_set_ver_str_len +
790 		response->pending_comp_image_set_ver_str_len;
791 
792 	if (payload_length < partial_response_length) {
793 		return PLDM_ERROR_INVALID_LENGTH;
794 	}
795 
796 	resp_data->capabilities_during_update.value =
797 		le32toh(response->capabilities_during_update.value);
798 	resp_data->comp_count = le16toh(response->comp_count);
799 	resp_data->active_comp_image_set_ver_str_type =
800 		response->active_comp_image_set_ver_str_type;
801 	resp_data->active_comp_image_set_ver_str_len =
802 		response->active_comp_image_set_ver_str_len;
803 	resp_data->pending_comp_image_set_ver_str_type =
804 		response->pending_comp_image_set_ver_str_type;
805 	resp_data->pending_comp_image_set_ver_str_len =
806 		response->pending_comp_image_set_ver_str_len;
807 
808 	active_comp_image_set_ver_str->ptr =
809 		msg->payload + sizeof(struct pldm_get_firmware_parameters_resp);
810 	active_comp_image_set_ver_str->length =
811 		resp_data->active_comp_image_set_ver_str_len;
812 
813 	if (resp_data->pending_comp_image_set_ver_str_len != 0) {
814 		pending_comp_image_set_ver_str->ptr =
815 			msg->payload +
816 			sizeof(struct pldm_get_firmware_parameters_resp) +
817 			resp_data->active_comp_image_set_ver_str_len;
818 		pending_comp_image_set_ver_str->length =
819 			resp_data->pending_comp_image_set_ver_str_len;
820 	} else {
821 		pending_comp_image_set_ver_str->ptr = NULL;
822 		pending_comp_image_set_ver_str->length = 0;
823 	}
824 
825 	if (payload_length > partial_response_length && resp_data->comp_count) {
826 		comp_parameter_table->ptr =
827 			msg->payload +
828 			sizeof(struct pldm_get_firmware_parameters_resp) +
829 			resp_data->active_comp_image_set_ver_str_len +
830 			resp_data->pending_comp_image_set_ver_str_len;
831 		comp_parameter_table->length =
832 			payload_length - partial_response_length;
833 	} else {
834 		comp_parameter_table->ptr = NULL;
835 		comp_parameter_table->length = 0;
836 	}
837 
838 	return PLDM_SUCCESS;
839 }
840 
841 LIBPLDM_ABI_STABLE
842 int decode_get_firmware_parameters_resp_comp_entry(
843 	const uint8_t *data, size_t length,
844 	struct pldm_component_parameter_entry *component_data,
845 	struct variable_field *active_comp_ver_str,
846 	struct variable_field *pending_comp_ver_str)
847 {
848 	if (data == NULL || component_data == NULL ||
849 	    active_comp_ver_str == NULL || pending_comp_ver_str == NULL) {
850 		return PLDM_ERROR_INVALID_DATA;
851 	}
852 
853 	if (length < sizeof(struct pldm_component_parameter_entry)) {
854 		return PLDM_ERROR_INVALID_LENGTH;
855 	}
856 
857 	struct pldm_component_parameter_entry *entry =
858 		(struct pldm_component_parameter_entry *)(data);
859 
860 	size_t entry_length = sizeof(struct pldm_component_parameter_entry) +
861 			      entry->active_comp_ver_str_len +
862 			      entry->pending_comp_ver_str_len;
863 
864 	if (length < entry_length) {
865 		return PLDM_ERROR_INVALID_LENGTH;
866 	}
867 
868 	component_data->comp_classification =
869 		le16toh(entry->comp_classification);
870 	component_data->comp_identifier = le16toh(entry->comp_identifier);
871 	component_data->comp_classification_index =
872 		entry->comp_classification_index;
873 	component_data->active_comp_comparison_stamp =
874 		le32toh(entry->active_comp_comparison_stamp);
875 	component_data->active_comp_ver_str_type =
876 		entry->active_comp_ver_str_type;
877 	component_data->active_comp_ver_str_len =
878 		entry->active_comp_ver_str_len;
879 	memcpy(component_data->active_comp_release_date,
880 	       entry->active_comp_release_date,
881 	       sizeof(entry->active_comp_release_date));
882 	component_data->pending_comp_comparison_stamp =
883 		le32toh(entry->pending_comp_comparison_stamp);
884 	component_data->pending_comp_ver_str_type =
885 		entry->pending_comp_ver_str_type;
886 	component_data->pending_comp_ver_str_len =
887 		entry->pending_comp_ver_str_len;
888 	memcpy(component_data->pending_comp_release_date,
889 	       entry->pending_comp_release_date,
890 	       sizeof(entry->pending_comp_release_date));
891 	component_data->comp_activation_methods.value =
892 		le16toh(entry->comp_activation_methods.value);
893 	component_data->capabilities_during_update.value =
894 		le32toh(entry->capabilities_during_update.value);
895 
896 	if (entry->active_comp_ver_str_len != 0) {
897 		active_comp_ver_str->ptr =
898 			data + sizeof(struct pldm_component_parameter_entry);
899 		active_comp_ver_str->length = entry->active_comp_ver_str_len;
900 	} else {
901 		active_comp_ver_str->ptr = NULL;
902 		active_comp_ver_str->length = 0;
903 	}
904 
905 	if (entry->pending_comp_ver_str_len != 0) {
906 		pending_comp_ver_str->ptr =
907 			data + sizeof(struct pldm_component_parameter_entry) +
908 			entry->active_comp_ver_str_len;
909 		pending_comp_ver_str->length = entry->pending_comp_ver_str_len;
910 	} else {
911 		pending_comp_ver_str->ptr = NULL;
912 		pending_comp_ver_str->length = 0;
913 	}
914 	return PLDM_SUCCESS;
915 }
916 
917 LIBPLDM_ABI_TESTING
918 int encode_query_downstream_devices_req(uint8_t instance_id,
919 					struct pldm_msg *msg)
920 {
921 	if (msg == NULL) {
922 		return -EINVAL;
923 	}
924 
925 	return encode_pldm_header_only_errno(PLDM_REQUEST, instance_id,
926 					     PLDM_FWUP,
927 					     PLDM_QUERY_DOWNSTREAM_DEVICES,
928 					     msg);
929 }
930 
931 LIBPLDM_ABI_TESTING
932 int decode_query_downstream_devices_resp(
933 	const struct pldm_msg *msg, size_t payload_length,
934 	struct pldm_query_downstream_devices_resp *resp_data)
935 {
936 	struct pldm_msgbuf _buf;
937 	struct pldm_msgbuf *buf = &_buf;
938 	int rc;
939 
940 	if (msg == NULL || resp_data == NULL || !payload_length) {
941 		return -EINVAL;
942 	}
943 
944 	rc = pldm_msgbuf_init_errno(buf, PLDM_OPTIONAL_COMMAND_RESP_MIN_LEN,
945 				    msg->payload, payload_length);
946 	if (rc) {
947 		return rc;
948 	}
949 
950 	rc = pldm_msgbuf_extract(buf, resp_data->completion_code);
951 	if (rc) {
952 		return rc;
953 	}
954 	if (PLDM_SUCCESS != resp_data->completion_code) {
955 		// Return the CC directly without decoding the rest of the payload
956 		return 0;
957 	}
958 
959 	if (payload_length < PLDM_QUERY_DOWNSTREAM_DEVICES_RESP_BYTES) {
960 		return -EBADMSG;
961 	}
962 
963 	rc = pldm_msgbuf_extract(buf,
964 				 resp_data->downstream_device_update_supported);
965 	if (rc) {
966 		return rc;
967 	}
968 
969 	if (!is_downstream_device_update_support_valid(
970 		    resp_data->downstream_device_update_supported)) {
971 		return -EINVAL;
972 	}
973 
974 	pldm_msgbuf_extract(buf, resp_data->number_of_downstream_devices);
975 	pldm_msgbuf_extract(buf, resp_data->max_number_of_downstream_devices);
976 	pldm_msgbuf_extract(buf, resp_data->capabilities.value);
977 
978 	return pldm_msgbuf_destroy_consumed(buf);
979 }
980 
981 LIBPLDM_ABI_TESTING
982 int encode_query_downstream_identifiers_req(
983 	uint8_t instance_id, uint32_t data_transfer_handle,
984 	enum transfer_op_flag transfer_operation_flag, struct pldm_msg *msg,
985 	size_t payload_length)
986 {
987 	struct pldm_msgbuf _buf;
988 	struct pldm_msgbuf *buf = &_buf;
989 	int rc;
990 
991 	if (msg == NULL) {
992 		return -EINVAL;
993 	}
994 
995 	if (!is_transfer_operation_flag_valid(transfer_operation_flag)) {
996 		return -EINVAL;
997 	}
998 
999 	struct pldm_header_info header = { 0 };
1000 	header.instance = instance_id;
1001 	header.msg_type = PLDM_REQUEST;
1002 	header.pldm_type = PLDM_FWUP;
1003 	header.command = PLDM_QUERY_DOWNSTREAM_IDENTIFIERS;
1004 	rc = pack_pldm_header_errno(&header, &(msg->hdr));
1005 	if (rc) {
1006 		return rc;
1007 	}
1008 
1009 	rc = pldm_msgbuf_init_errno(buf,
1010 				    PLDM_QUERY_DOWNSTREAM_IDENTIFIERS_REQ_BYTES,
1011 				    msg->payload, payload_length);
1012 	if (rc) {
1013 		return rc;
1014 	}
1015 
1016 	pldm_msgbuf_insert(buf, data_transfer_handle);
1017 	// Data correctness has been verified, cast it to 1-byte data directly.
1018 	pldm_msgbuf_insert(buf, (uint8_t)transfer_operation_flag);
1019 
1020 	return pldm_msgbuf_destroy(buf);
1021 }
1022 
1023 LIBPLDM_ABI_TESTING
1024 int decode_query_downstream_identifiers_resp(
1025 	const struct pldm_msg *msg, size_t payload_length,
1026 	struct pldm_query_downstream_identifiers_resp *resp_data,
1027 	struct pldm_downstream_device_iter *iter)
1028 {
1029 	struct pldm_msgbuf _buf;
1030 	struct pldm_msgbuf *buf = &_buf;
1031 	void *remaining = NULL;
1032 	int rc = 0;
1033 
1034 	if (msg == NULL || resp_data == NULL || iter == NULL ||
1035 	    !payload_length) {
1036 		return -EINVAL;
1037 	}
1038 
1039 	rc = pldm_msgbuf_init_errno(buf, PLDM_OPTIONAL_COMMAND_RESP_MIN_LEN,
1040 				    msg->payload, payload_length);
1041 	if (rc) {
1042 		return rc;
1043 	}
1044 
1045 	rc = pldm_msgbuf_extract(buf, resp_data->completion_code);
1046 	if (rc) {
1047 		return rc;
1048 	}
1049 	if (PLDM_SUCCESS != resp_data->completion_code) {
1050 		return 0;
1051 	}
1052 
1053 	if (payload_length < PLDM_QUERY_DOWNSTREAM_IDENTIFIERS_RESP_MIN_LEN) {
1054 		return -EBADMSG;
1055 	}
1056 
1057 	pldm_msgbuf_extract(buf, resp_data->next_data_transfer_handle);
1058 	pldm_msgbuf_extract(buf, resp_data->transfer_flag);
1059 
1060 	rc = pldm_msgbuf_extract(buf, resp_data->downstream_devices_length);
1061 	if (rc) {
1062 		return rc;
1063 	}
1064 
1065 	pldm_msgbuf_extract(buf, resp_data->number_of_downstream_devices);
1066 	rc = pldm_msgbuf_span_required(
1067 		buf, resp_data->downstream_devices_length, &remaining);
1068 	if (rc) {
1069 		return rc;
1070 	}
1071 
1072 	rc = pldm_msgbuf_destroy(buf);
1073 	if (rc) {
1074 		return rc;
1075 	}
1076 
1077 	iter->field.ptr = remaining;
1078 	iter->field.length = resp_data->downstream_devices_length;
1079 	iter->devs = resp_data->number_of_downstream_devices;
1080 
1081 	return 0;
1082 }
1083 
1084 LIBPLDM_ABI_TESTING
1085 int decode_pldm_downstream_device_from_iter(
1086 	struct pldm_downstream_device_iter *iter,
1087 	struct pldm_downstream_device *dev)
1088 {
1089 	struct pldm_msgbuf _buf;
1090 	struct pldm_msgbuf *buf = &_buf;
1091 	int rc;
1092 
1093 	if (!iter || !dev) {
1094 		return -EINVAL;
1095 	}
1096 
1097 	rc = pldm_msgbuf_init_errno(buf, 3, iter->field.ptr,
1098 				    iter->field.length);
1099 	if (rc) {
1100 		return rc;
1101 	}
1102 
1103 	pldm_msgbuf_extract(buf, dev->downstream_device_index);
1104 	pldm_msgbuf_extract(buf, dev->downstream_descriptor_count);
1105 	iter->field.ptr = NULL;
1106 	pldm_msgbuf_span_remaining(buf, (void **)&iter->field.ptr,
1107 				   &iter->field.length);
1108 
1109 	return pldm_msgbuf_destroy(buf);
1110 }
1111 
1112 LIBPLDM_ABI_TESTING
1113 int encode_get_downstream_firmware_params_req(
1114 	uint8_t instance_id, uint32_t data_transfer_handle,
1115 	enum transfer_op_flag transfer_operation_flag, struct pldm_msg *msg,
1116 	size_t payload_length)
1117 {
1118 	struct pldm_msgbuf _buf;
1119 	struct pldm_msgbuf *buf = &_buf;
1120 	int rc;
1121 
1122 	if (msg == NULL) {
1123 		return -EINVAL;
1124 	}
1125 
1126 	rc = pldm_msgbuf_init_errno(
1127 		buf, PLDM_GET_DOWNSTREAM_FIRMWARE_PARAMS_REQ_BYTES,
1128 		msg->payload, payload_length);
1129 	if (rc < 0) {
1130 		return rc;
1131 	}
1132 
1133 	if (!is_transfer_operation_flag_valid(transfer_operation_flag)) {
1134 		return -EBADMSG;
1135 	}
1136 
1137 	struct pldm_header_info header = { 0 };
1138 	header.instance = instance_id;
1139 	header.msg_type = PLDM_REQUEST;
1140 	header.pldm_type = PLDM_FWUP;
1141 	header.command = PLDM_QUERY_DOWNSTREAM_FIRMWARE_PARAMETERS;
1142 	rc = pack_pldm_header_errno(&header, &msg->hdr);
1143 	if (rc < 0) {
1144 		return rc;
1145 	}
1146 
1147 	pldm_msgbuf_insert(buf, data_transfer_handle);
1148 	// Data correctness has been verified, cast it to 1-byte data directly.
1149 	pldm_msgbuf_insert(buf, (uint8_t)transfer_operation_flag);
1150 
1151 	return pldm_msgbuf_destroy(buf);
1152 }
1153 
1154 LIBPLDM_ABI_TESTING
1155 int decode_get_downstream_firmware_params_resp(
1156 	const struct pldm_msg *msg, size_t payload_length,
1157 	struct pldm_get_downstream_firmware_params_resp *resp_data,
1158 	struct variable_field *downstream_device_param_table)
1159 {
1160 	struct pldm_msgbuf _buf;
1161 	struct pldm_msgbuf *buf = &_buf;
1162 	int rc;
1163 
1164 	if (msg == NULL || resp_data == NULL ||
1165 	    downstream_device_param_table == NULL) {
1166 		return -EINVAL;
1167 	}
1168 
1169 	rc = pldm_msgbuf_init_errno(buf, PLDM_OPTIONAL_COMMAND_RESP_MIN_LEN,
1170 				    msg->payload, payload_length);
1171 	if (rc < 0) {
1172 		return rc;
1173 	}
1174 
1175 	rc = pldm_msgbuf_extract(buf, resp_data->completion_code);
1176 	if (rc < 0) {
1177 		return rc;
1178 	}
1179 	if (PLDM_SUCCESS != resp_data->completion_code) {
1180 		return 0;
1181 	}
1182 
1183 	if (payload_length < PLDM_GET_DOWNSTREAM_FIRMWARE_PARAMS_RESP_MIN_LEN) {
1184 		return -EBADMSG;
1185 	}
1186 
1187 	pldm_msgbuf_extract(buf, resp_data->next_data_transfer_handle);
1188 	pldm_msgbuf_extract(buf, resp_data->transfer_flag);
1189 	pldm_msgbuf_extract(buf,
1190 			    resp_data->fdp_capabilities_during_update.value);
1191 	pldm_msgbuf_extract(buf, resp_data->downstream_device_count);
1192 
1193 	return pldm_msgbuf_span_remaining(
1194 		buf, (void **)&downstream_device_param_table->ptr,
1195 		&downstream_device_param_table->length);
1196 }
1197 
1198 LIBPLDM_ABI_TESTING
1199 int decode_downstream_device_parameter_table_entry(
1200 	struct variable_field *data,
1201 	struct pldm_downstream_device_parameter_entry *entry,
1202 	struct variable_field *versions)
1203 {
1204 	struct pldm_msgbuf _buf;
1205 	struct pldm_msgbuf *buf = &_buf;
1206 	void *cursor = NULL;
1207 	size_t remaining;
1208 	int rc;
1209 
1210 	if (data == NULL || entry == NULL || versions == NULL) {
1211 		return -EINVAL;
1212 	}
1213 
1214 	rc = pldm_msgbuf_init_errno(
1215 		buf, PLDM_DOWNSTREAM_DEVICE_PARAMETER_ENTRY_MIN_LEN, data->ptr,
1216 		data->length);
1217 	if (rc < 0) {
1218 		return rc;
1219 	}
1220 
1221 	pldm_msgbuf_extract(buf, entry->downstream_device_index);
1222 	pldm_msgbuf_extract(buf, entry->active_comp_comparison_stamp);
1223 	pldm_msgbuf_extract(buf, entry->active_comp_ver_str_type);
1224 	rc = pldm_msgbuf_extract(buf, entry->active_comp_ver_str_len);
1225 	if (rc < 0) {
1226 		return rc;
1227 	}
1228 	rc = pldm_msgbuf_extract_array(buf,
1229 				       PLDM_FWUP_COMPONENT_RELEASE_DATA_LEN,
1230 				       entry->active_comp_release_date,
1231 				       sizeof(entry->active_comp_release_date));
1232 	if (rc < 0) {
1233 		return rc;
1234 	}
1235 
1236 	// Fill the last byte with NULL character
1237 	entry->active_comp_release_date[PLDM_FWUP_COMPONENT_RELEASE_DATA_LEN] =
1238 		'\0';
1239 
1240 	pldm_msgbuf_extract(buf, entry->pending_comp_comparison_stamp);
1241 	pldm_msgbuf_extract(buf, entry->pending_comp_ver_str_type);
1242 	rc = pldm_msgbuf_extract(buf, entry->pending_comp_ver_str_len);
1243 	if (rc < 0) {
1244 		return rc;
1245 	}
1246 
1247 	rc = pldm_msgbuf_extract_array(
1248 		buf, PLDM_FWUP_COMPONENT_RELEASE_DATA_LEN,
1249 		entry->pending_comp_release_date,
1250 		sizeof(entry->pending_comp_release_date));
1251 	if (rc < 0) {
1252 		return rc;
1253 	}
1254 
1255 	// Fill the last byte with NULL character
1256 	entry->pending_comp_release_date[PLDM_FWUP_COMPONENT_RELEASE_DATA_LEN] =
1257 		'\0';
1258 
1259 	pldm_msgbuf_extract(buf, entry->comp_activation_methods.value);
1260 	pldm_msgbuf_extract(buf, entry->capabilities_during_update.value);
1261 	const size_t versions_len = entry->active_comp_ver_str_len +
1262 				    entry->pending_comp_ver_str_len;
1263 	rc = pldm_msgbuf_span_required(buf, versions_len,
1264 				       (void **)&versions->ptr);
1265 	if (rc < 0) {
1266 		return rc;
1267 	}
1268 	versions->length = versions_len;
1269 
1270 	rc = pldm_msgbuf_span_remaining(buf, &cursor, &remaining);
1271 	if (rc < 0) {
1272 		return rc;
1273 	}
1274 
1275 	data->ptr = cursor;
1276 	data->length = remaining;
1277 
1278 	return 0;
1279 }
1280 
1281 LIBPLDM_ABI_TESTING
1282 int decode_downstream_device_parameter_table_entry_versions(
1283 	const struct variable_field *versions,
1284 	struct pldm_downstream_device_parameter_entry *entry, char *active,
1285 	size_t active_len, char *pending, size_t pending_len)
1286 {
1287 	struct pldm_msgbuf _buf;
1288 	struct pldm_msgbuf *buf = &_buf;
1289 	int rc;
1290 
1291 	if (versions == NULL || versions->ptr == NULL || !versions->length ||
1292 	    entry == NULL || active == NULL || pending == NULL) {
1293 		return -EINVAL;
1294 	}
1295 
1296 	if (!active_len || active_len - 1 < entry->active_comp_ver_str_len) {
1297 		return -EOVERFLOW;
1298 	}
1299 
1300 	if (!pending_len || pending_len - 1 < entry->pending_comp_ver_str_len) {
1301 		return -EOVERFLOW;
1302 	}
1303 
1304 	/* This API should be called after decode_downstream_device_parameter_table_entry
1305 	 * has successfully decoded the entry, assume the entry data is valid here.
1306 	 */
1307 	const size_t versions_len = entry->active_comp_ver_str_len +
1308 				    entry->pending_comp_ver_str_len;
1309 	rc = pldm_msgbuf_init_errno(buf, versions_len, versions->ptr,
1310 				    versions->length);
1311 	if (rc < 0) {
1312 		return rc;
1313 	}
1314 
1315 	rc = pldm_msgbuf_extract_array(buf, entry->active_comp_ver_str_len,
1316 				       active, active_len);
1317 	if (rc < 0) {
1318 		return rc;
1319 	}
1320 
1321 	active[entry->active_comp_ver_str_len] = '\0';
1322 	rc = pldm_msgbuf_extract_array(buf, entry->pending_comp_ver_str_len,
1323 				       pending, pending_len);
1324 	if (rc < 0) {
1325 		return rc;
1326 	}
1327 
1328 	pending[entry->pending_comp_ver_str_len] = '\0';
1329 
1330 	entry->active_comp_ver_str = active;
1331 	entry->pending_comp_ver_str = pending;
1332 
1333 	return pldm_msgbuf_destroy_consumed(buf);
1334 }
1335 
1336 LIBPLDM_ABI_STABLE
1337 int encode_request_update_req(uint8_t instance_id, uint32_t max_transfer_size,
1338 			      uint16_t num_of_comp,
1339 			      uint8_t max_outstanding_transfer_req,
1340 			      uint16_t pkg_data_len,
1341 			      uint8_t comp_image_set_ver_str_type,
1342 			      uint8_t comp_image_set_ver_str_len,
1343 			      const struct variable_field *comp_img_set_ver_str,
1344 			      struct pldm_msg *msg, size_t payload_length)
1345 {
1346 	if (comp_img_set_ver_str == NULL || comp_img_set_ver_str->ptr == NULL ||
1347 	    msg == NULL) {
1348 		return PLDM_ERROR_INVALID_DATA;
1349 	}
1350 
1351 	if (payload_length != sizeof(struct pldm_request_update_req) +
1352 				      comp_img_set_ver_str->length) {
1353 		return PLDM_ERROR_INVALID_LENGTH;
1354 	}
1355 
1356 	if ((comp_image_set_ver_str_len == 0) ||
1357 	    (comp_image_set_ver_str_len != comp_img_set_ver_str->length)) {
1358 		return PLDM_ERROR_INVALID_DATA;
1359 	}
1360 
1361 	if ((max_transfer_size < PLDM_FWUP_BASELINE_TRANSFER_SIZE) ||
1362 	    (max_outstanding_transfer_req < PLDM_FWUP_MIN_OUTSTANDING_REQ)) {
1363 		return PLDM_ERROR_INVALID_DATA;
1364 	}
1365 
1366 	if (!is_string_type_valid(comp_image_set_ver_str_type)) {
1367 		return PLDM_ERROR_INVALID_DATA;
1368 	}
1369 
1370 	struct pldm_header_info header = { 0 };
1371 	header.instance = instance_id;
1372 	header.msg_type = PLDM_REQUEST;
1373 	header.pldm_type = PLDM_FWUP;
1374 	header.command = PLDM_REQUEST_UPDATE;
1375 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1376 	if (rc) {
1377 		return rc;
1378 	}
1379 
1380 	struct pldm_request_update_req *request =
1381 		(struct pldm_request_update_req *)msg->payload;
1382 
1383 	request->max_transfer_size = htole32(max_transfer_size);
1384 	request->num_of_comp = htole16(num_of_comp);
1385 	request->max_outstanding_transfer_req = max_outstanding_transfer_req;
1386 	request->pkg_data_len = htole16(pkg_data_len);
1387 	request->comp_image_set_ver_str_type = comp_image_set_ver_str_type;
1388 	request->comp_image_set_ver_str_len = comp_image_set_ver_str_len;
1389 
1390 	memcpy(msg->payload + sizeof(struct pldm_request_update_req),
1391 	       comp_img_set_ver_str->ptr, comp_img_set_ver_str->length);
1392 
1393 	return PLDM_SUCCESS;
1394 }
1395 
1396 LIBPLDM_ABI_STABLE
1397 int decode_request_update_resp(const struct pldm_msg *msg,
1398 			       size_t payload_length, uint8_t *completion_code,
1399 			       uint16_t *fd_meta_data_len,
1400 			       uint8_t *fd_will_send_pkg_data)
1401 {
1402 	if (msg == NULL || completion_code == NULL ||
1403 	    fd_meta_data_len == NULL || fd_will_send_pkg_data == NULL ||
1404 	    !payload_length) {
1405 		return PLDM_ERROR_INVALID_DATA;
1406 	}
1407 
1408 	*completion_code = msg->payload[0];
1409 	if (*completion_code != PLDM_SUCCESS) {
1410 		return PLDM_SUCCESS;
1411 	}
1412 
1413 	if (payload_length != sizeof(struct pldm_request_update_resp)) {
1414 		return PLDM_ERROR_INVALID_LENGTH;
1415 	}
1416 
1417 	struct pldm_request_update_resp *response =
1418 		(struct pldm_request_update_resp *)msg->payload;
1419 
1420 	*fd_meta_data_len = le16toh(response->fd_meta_data_len);
1421 	*fd_will_send_pkg_data = response->fd_will_send_pkg_data;
1422 
1423 	return PLDM_SUCCESS;
1424 }
1425 
1426 LIBPLDM_ABI_STABLE
1427 int encode_pass_component_table_req(uint8_t instance_id, uint8_t transfer_flag,
1428 				    uint16_t comp_classification,
1429 				    uint16_t comp_identifier,
1430 				    uint8_t comp_classification_index,
1431 				    uint32_t comp_comparison_stamp,
1432 				    uint8_t comp_ver_str_type,
1433 				    uint8_t comp_ver_str_len,
1434 				    const struct variable_field *comp_ver_str,
1435 				    struct pldm_msg *msg, size_t payload_length)
1436 {
1437 	if (comp_ver_str == NULL || comp_ver_str->ptr == NULL || msg == NULL) {
1438 		return PLDM_ERROR_INVALID_DATA;
1439 	}
1440 
1441 	if (payload_length != sizeof(struct pldm_pass_component_table_req) +
1442 				      comp_ver_str->length) {
1443 		return PLDM_ERROR_INVALID_LENGTH;
1444 	}
1445 
1446 	if ((comp_ver_str_len == 0) ||
1447 	    (comp_ver_str_len != comp_ver_str->length)) {
1448 		return PLDM_ERROR_INVALID_DATA;
1449 	}
1450 
1451 	if (!is_transfer_flag_valid(transfer_flag)) {
1452 		return PLDM_INVALID_TRANSFER_OPERATION_FLAG;
1453 	}
1454 
1455 	if (!is_string_type_valid(comp_ver_str_type)) {
1456 		return PLDM_ERROR_INVALID_DATA;
1457 	}
1458 
1459 	struct pldm_header_info header = { 0 };
1460 	header.instance = instance_id;
1461 	header.msg_type = PLDM_REQUEST;
1462 	header.pldm_type = PLDM_FWUP;
1463 	header.command = PLDM_PASS_COMPONENT_TABLE;
1464 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1465 	if (rc) {
1466 		return rc;
1467 	}
1468 
1469 	struct pldm_pass_component_table_req *request =
1470 		(struct pldm_pass_component_table_req *)msg->payload;
1471 
1472 	request->transfer_flag = transfer_flag;
1473 	request->comp_classification = htole16(comp_classification);
1474 	request->comp_identifier = htole16(comp_identifier);
1475 	request->comp_classification_index = comp_classification_index;
1476 	request->comp_comparison_stamp = htole32(comp_comparison_stamp);
1477 	request->comp_ver_str_type = comp_ver_str_type;
1478 	request->comp_ver_str_len = comp_ver_str_len;
1479 
1480 	memcpy(msg->payload + sizeof(struct pldm_pass_component_table_req),
1481 	       comp_ver_str->ptr, comp_ver_str->length);
1482 
1483 	return PLDM_SUCCESS;
1484 }
1485 
1486 LIBPLDM_ABI_STABLE
1487 int decode_pass_component_table_resp(const struct pldm_msg *msg,
1488 				     const size_t payload_length,
1489 				     uint8_t *completion_code,
1490 				     uint8_t *comp_resp,
1491 				     uint8_t *comp_resp_code)
1492 {
1493 	if (msg == NULL || completion_code == NULL || comp_resp == NULL ||
1494 	    comp_resp_code == NULL || !payload_length) {
1495 		return PLDM_ERROR_INVALID_DATA;
1496 	}
1497 
1498 	*completion_code = msg->payload[0];
1499 	if (*completion_code != PLDM_SUCCESS) {
1500 		return PLDM_SUCCESS;
1501 	}
1502 
1503 	if (payload_length != sizeof(struct pldm_pass_component_table_resp)) {
1504 		return PLDM_ERROR_INVALID_LENGTH;
1505 	}
1506 
1507 	struct pldm_pass_component_table_resp *response =
1508 		(struct pldm_pass_component_table_resp *)msg->payload;
1509 
1510 	if (!is_comp_resp_valid(response->comp_resp)) {
1511 		return PLDM_ERROR_INVALID_DATA;
1512 	}
1513 
1514 	if (!is_comp_resp_code_valid(response->comp_resp_code)) {
1515 		return PLDM_ERROR_INVALID_DATA;
1516 	}
1517 
1518 	*comp_resp = response->comp_resp;
1519 	*comp_resp_code = response->comp_resp_code;
1520 
1521 	return PLDM_SUCCESS;
1522 }
1523 
1524 LIBPLDM_ABI_STABLE
1525 int encode_update_component_req(
1526 	uint8_t instance_id, uint16_t comp_classification,
1527 	uint16_t comp_identifier, uint8_t comp_classification_index,
1528 	uint32_t comp_comparison_stamp, uint32_t comp_image_size,
1529 	bitfield32_t update_option_flags, uint8_t comp_ver_str_type,
1530 	uint8_t comp_ver_str_len, const struct variable_field *comp_ver_str,
1531 	struct pldm_msg *msg, size_t payload_length)
1532 {
1533 	if (comp_ver_str == NULL || comp_ver_str->ptr == NULL || msg == NULL) {
1534 		return PLDM_ERROR_INVALID_DATA;
1535 	}
1536 
1537 	if (payload_length !=
1538 	    sizeof(struct pldm_update_component_req) + comp_ver_str->length) {
1539 		return PLDM_ERROR_INVALID_LENGTH;
1540 	}
1541 
1542 	if (!comp_image_size) {
1543 		return PLDM_ERROR_INVALID_DATA;
1544 	}
1545 
1546 	if ((comp_ver_str_len == 0) ||
1547 	    (comp_ver_str_len != comp_ver_str->length)) {
1548 		return PLDM_ERROR_INVALID_DATA;
1549 	}
1550 
1551 	if (!is_string_type_valid(comp_ver_str_type)) {
1552 		return PLDM_ERROR_INVALID_DATA;
1553 	}
1554 
1555 	struct pldm_header_info header = { 0 };
1556 	header.instance = instance_id;
1557 	header.msg_type = PLDM_REQUEST;
1558 	header.pldm_type = PLDM_FWUP;
1559 	header.command = PLDM_UPDATE_COMPONENT;
1560 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1561 	if (rc) {
1562 		return rc;
1563 	}
1564 
1565 	struct pldm_update_component_req *request =
1566 		(struct pldm_update_component_req *)msg->payload;
1567 
1568 	request->comp_classification = htole16(comp_classification);
1569 	request->comp_identifier = htole16(comp_identifier);
1570 	request->comp_classification_index = comp_classification_index;
1571 	request->comp_comparison_stamp = htole32(comp_comparison_stamp);
1572 	request->comp_image_size = htole32(comp_image_size);
1573 	request->update_option_flags.value = htole32(update_option_flags.value);
1574 	request->comp_ver_str_type = comp_ver_str_type;
1575 	request->comp_ver_str_len = comp_ver_str_len;
1576 
1577 	memcpy(msg->payload + sizeof(struct pldm_update_component_req),
1578 	       comp_ver_str->ptr, comp_ver_str->length);
1579 
1580 	return PLDM_SUCCESS;
1581 }
1582 
1583 LIBPLDM_ABI_STABLE
1584 int decode_update_component_resp(const struct pldm_msg *msg,
1585 				 size_t payload_length,
1586 				 uint8_t *completion_code,
1587 				 uint8_t *comp_compatibility_resp,
1588 				 uint8_t *comp_compatibility_resp_code,
1589 				 bitfield32_t *update_option_flags_enabled,
1590 				 uint16_t *time_before_req_fw_data)
1591 {
1592 	if (msg == NULL || completion_code == NULL ||
1593 	    comp_compatibility_resp == NULL ||
1594 	    comp_compatibility_resp_code == NULL ||
1595 	    update_option_flags_enabled == NULL ||
1596 	    time_before_req_fw_data == NULL || !payload_length) {
1597 		return PLDM_ERROR_INVALID_DATA;
1598 	}
1599 
1600 	*completion_code = msg->payload[0];
1601 	if (*completion_code != PLDM_SUCCESS) {
1602 		return PLDM_SUCCESS;
1603 	}
1604 
1605 	if (payload_length != sizeof(struct pldm_update_component_resp)) {
1606 		return PLDM_ERROR_INVALID_LENGTH;
1607 	}
1608 
1609 	struct pldm_update_component_resp *response =
1610 		(struct pldm_update_component_resp *)msg->payload;
1611 
1612 	if (!is_comp_compatibility_resp_valid(
1613 		    response->comp_compatibility_resp)) {
1614 		return PLDM_ERROR_INVALID_DATA;
1615 	}
1616 
1617 	if (!is_comp_compatibility_resp_code_valid(
1618 		    response->comp_compatibility_resp_code)) {
1619 		return PLDM_ERROR_INVALID_DATA;
1620 	}
1621 
1622 	*comp_compatibility_resp = response->comp_compatibility_resp;
1623 	*comp_compatibility_resp_code = response->comp_compatibility_resp_code;
1624 	update_option_flags_enabled->value =
1625 		le32toh(response->update_option_flags_enabled.value);
1626 	*time_before_req_fw_data = le16toh(response->time_before_req_fw_data);
1627 
1628 	return PLDM_SUCCESS;
1629 }
1630 
1631 LIBPLDM_ABI_STABLE
1632 int decode_request_firmware_data_req(const struct pldm_msg *msg,
1633 				     size_t payload_length, uint32_t *offset,
1634 				     uint32_t *length)
1635 {
1636 	if (msg == NULL || offset == NULL || length == NULL) {
1637 		return PLDM_ERROR_INVALID_DATA;
1638 	}
1639 	if (payload_length != sizeof(struct pldm_request_firmware_data_req)) {
1640 		return PLDM_ERROR_INVALID_LENGTH;
1641 	}
1642 	struct pldm_request_firmware_data_req *request =
1643 		(struct pldm_request_firmware_data_req *)msg->payload;
1644 	*offset = le32toh(request->offset);
1645 	*length = le32toh(request->length);
1646 
1647 	if (*length < PLDM_FWUP_BASELINE_TRANSFER_SIZE) {
1648 		return PLDM_FWUP_INVALID_TRANSFER_LENGTH;
1649 	}
1650 
1651 	return PLDM_SUCCESS;
1652 }
1653 
1654 LIBPLDM_ABI_STABLE
1655 int encode_request_firmware_data_resp(uint8_t instance_id,
1656 				      uint8_t completion_code,
1657 				      struct pldm_msg *msg,
1658 				      size_t payload_length)
1659 {
1660 	if (msg == NULL || !payload_length) {
1661 		return PLDM_ERROR_INVALID_DATA;
1662 	}
1663 
1664 	struct pldm_header_info header = { 0 };
1665 	header.instance = instance_id;
1666 	header.msg_type = PLDM_RESPONSE;
1667 	header.pldm_type = PLDM_FWUP;
1668 	header.command = PLDM_REQUEST_FIRMWARE_DATA;
1669 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1670 	if (rc) {
1671 		return rc;
1672 	}
1673 
1674 	msg->payload[0] = completion_code;
1675 
1676 	return PLDM_SUCCESS;
1677 }
1678 
1679 LIBPLDM_ABI_STABLE
1680 int decode_transfer_complete_req(const struct pldm_msg *msg,
1681 				 size_t payload_length,
1682 				 uint8_t *transfer_result)
1683 {
1684 	if (msg == NULL || transfer_result == NULL) {
1685 		return PLDM_ERROR_INVALID_DATA;
1686 	}
1687 
1688 	if (payload_length != sizeof(*transfer_result)) {
1689 		return PLDM_ERROR_INVALID_LENGTH;
1690 	}
1691 
1692 	*transfer_result = msg->payload[0];
1693 	return PLDM_SUCCESS;
1694 }
1695 
1696 LIBPLDM_ABI_STABLE
1697 int encode_transfer_complete_resp(uint8_t instance_id, uint8_t completion_code,
1698 				  struct pldm_msg *msg, size_t payload_length)
1699 {
1700 	if (msg == NULL) {
1701 		return PLDM_ERROR_INVALID_DATA;
1702 	}
1703 
1704 	if (payload_length != sizeof(completion_code)) {
1705 		return PLDM_ERROR_INVALID_LENGTH;
1706 	}
1707 
1708 	struct pldm_header_info header = { 0 };
1709 	header.instance = instance_id;
1710 	header.msg_type = PLDM_RESPONSE;
1711 	header.pldm_type = PLDM_FWUP;
1712 	header.command = PLDM_TRANSFER_COMPLETE;
1713 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1714 	if (rc) {
1715 		return rc;
1716 	}
1717 
1718 	msg->payload[0] = completion_code;
1719 
1720 	return PLDM_SUCCESS;
1721 }
1722 
1723 LIBPLDM_ABI_STABLE
1724 int decode_verify_complete_req(const struct pldm_msg *msg,
1725 			       size_t payload_length, uint8_t *verify_result)
1726 {
1727 	if (msg == NULL || verify_result == NULL) {
1728 		return PLDM_ERROR_INVALID_DATA;
1729 	}
1730 
1731 	if (payload_length != sizeof(*verify_result)) {
1732 		return PLDM_ERROR_INVALID_LENGTH;
1733 	}
1734 
1735 	*verify_result = msg->payload[0];
1736 	return PLDM_SUCCESS;
1737 }
1738 
1739 LIBPLDM_ABI_STABLE
1740 int encode_verify_complete_resp(uint8_t instance_id, uint8_t completion_code,
1741 				struct pldm_msg *msg, size_t payload_length)
1742 {
1743 	if (msg == NULL) {
1744 		return PLDM_ERROR_INVALID_DATA;
1745 	}
1746 
1747 	if (payload_length != sizeof(completion_code)) {
1748 		return PLDM_ERROR_INVALID_LENGTH;
1749 	}
1750 
1751 	struct pldm_header_info header = { 0 };
1752 	header.instance = instance_id;
1753 	header.msg_type = PLDM_RESPONSE;
1754 	header.pldm_type = PLDM_FWUP;
1755 	header.command = PLDM_VERIFY_COMPLETE;
1756 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1757 	if (rc) {
1758 		return rc;
1759 	}
1760 
1761 	msg->payload[0] = completion_code;
1762 
1763 	return PLDM_SUCCESS;
1764 }
1765 
1766 LIBPLDM_ABI_STABLE
1767 int decode_apply_complete_req(const struct pldm_msg *msg, size_t payload_length,
1768 			      uint8_t *apply_result,
1769 			      bitfield16_t *comp_activation_methods_modification)
1770 {
1771 	if (msg == NULL || apply_result == NULL ||
1772 	    comp_activation_methods_modification == NULL) {
1773 		return PLDM_ERROR_INVALID_DATA;
1774 	}
1775 
1776 	if (payload_length != sizeof(struct pldm_apply_complete_req)) {
1777 		return PLDM_ERROR_INVALID_LENGTH;
1778 	}
1779 
1780 	struct pldm_apply_complete_req *request =
1781 		(struct pldm_apply_complete_req *)msg->payload;
1782 
1783 	*apply_result = request->apply_result;
1784 	comp_activation_methods_modification->value =
1785 		le16toh(request->comp_activation_methods_modification.value);
1786 
1787 	if ((*apply_result != PLDM_FWUP_APPLY_SUCCESS_WITH_ACTIVATION_METHOD) &&
1788 	    comp_activation_methods_modification->value) {
1789 		return PLDM_ERROR_INVALID_DATA;
1790 	}
1791 
1792 	return PLDM_SUCCESS;
1793 }
1794 
1795 LIBPLDM_ABI_STABLE
1796 int encode_apply_complete_resp(uint8_t instance_id, uint8_t completion_code,
1797 			       struct pldm_msg *msg, size_t payload_length)
1798 {
1799 	if (msg == NULL) {
1800 		return PLDM_ERROR_INVALID_DATA;
1801 	}
1802 
1803 	if (payload_length != sizeof(completion_code)) {
1804 		return PLDM_ERROR_INVALID_LENGTH;
1805 	}
1806 
1807 	struct pldm_header_info header = { 0 };
1808 	header.instance = instance_id;
1809 	header.msg_type = PLDM_RESPONSE;
1810 	header.pldm_type = PLDM_FWUP;
1811 	header.command = PLDM_APPLY_COMPLETE;
1812 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1813 	if (rc) {
1814 		return rc;
1815 	}
1816 
1817 	msg->payload[0] = completion_code;
1818 
1819 	return PLDM_SUCCESS;
1820 }
1821 
1822 LIBPLDM_ABI_STABLE
1823 int encode_activate_firmware_req(uint8_t instance_id,
1824 				 bool8_t self_contained_activation_req,
1825 				 struct pldm_msg *msg, size_t payload_length)
1826 {
1827 	if (msg == NULL) {
1828 		return PLDM_ERROR_INVALID_DATA;
1829 	}
1830 
1831 	if (payload_length != sizeof(struct pldm_activate_firmware_req)) {
1832 		return PLDM_ERROR_INVALID_LENGTH;
1833 	}
1834 
1835 	if (!is_self_contained_activation_req_valid(
1836 		    self_contained_activation_req)) {
1837 		return PLDM_ERROR_INVALID_DATA;
1838 	}
1839 
1840 	struct pldm_header_info header = { 0 };
1841 	header.instance = instance_id;
1842 	header.msg_type = PLDM_REQUEST;
1843 	header.pldm_type = PLDM_FWUP;
1844 	header.command = PLDM_ACTIVATE_FIRMWARE;
1845 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1846 	if (rc) {
1847 		return rc;
1848 	}
1849 
1850 	struct pldm_activate_firmware_req *request =
1851 		(struct pldm_activate_firmware_req *)msg->payload;
1852 
1853 	request->self_contained_activation_req = self_contained_activation_req;
1854 
1855 	return PLDM_SUCCESS;
1856 }
1857 
1858 LIBPLDM_ABI_STABLE
1859 int decode_activate_firmware_resp(const struct pldm_msg *msg,
1860 				  size_t payload_length,
1861 				  uint8_t *completion_code,
1862 				  uint16_t *estimated_time_activation)
1863 {
1864 	if (msg == NULL || completion_code == NULL ||
1865 	    estimated_time_activation == NULL || !payload_length) {
1866 		return PLDM_ERROR_INVALID_DATA;
1867 	}
1868 
1869 	*completion_code = msg->payload[0];
1870 	if (*completion_code != PLDM_SUCCESS) {
1871 		return PLDM_SUCCESS;
1872 	}
1873 
1874 	if (payload_length != sizeof(struct pldm_activate_firmware_resp)) {
1875 		return PLDM_ERROR_INVALID_LENGTH;
1876 	}
1877 
1878 	struct pldm_activate_firmware_resp *response =
1879 		(struct pldm_activate_firmware_resp *)msg->payload;
1880 
1881 	*estimated_time_activation =
1882 		le16toh(response->estimated_time_activation);
1883 
1884 	return PLDM_SUCCESS;
1885 }
1886 
1887 LIBPLDM_ABI_STABLE
1888 int encode_get_status_req(uint8_t instance_id, struct pldm_msg *msg,
1889 			  size_t payload_length)
1890 {
1891 	if (msg == NULL) {
1892 		return PLDM_ERROR_INVALID_DATA;
1893 	}
1894 
1895 	if (payload_length != PLDM_GET_STATUS_REQ_BYTES) {
1896 		return PLDM_ERROR_INVALID_LENGTH;
1897 	}
1898 
1899 	struct pldm_header_info header = { 0 };
1900 	header.instance = instance_id;
1901 	header.msg_type = PLDM_REQUEST;
1902 	header.pldm_type = PLDM_FWUP;
1903 	header.command = PLDM_GET_STATUS;
1904 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1905 	if (rc) {
1906 		return rc;
1907 	}
1908 
1909 	return PLDM_SUCCESS;
1910 }
1911 
1912 LIBPLDM_ABI_STABLE
1913 int decode_get_status_resp(const struct pldm_msg *msg, size_t payload_length,
1914 			   uint8_t *completion_code, uint8_t *current_state,
1915 			   uint8_t *previous_state, uint8_t *aux_state,
1916 			   uint8_t *aux_state_status, uint8_t *progress_percent,
1917 			   uint8_t *reason_code,
1918 			   bitfield32_t *update_option_flags_enabled)
1919 {
1920 	if (msg == NULL || completion_code == NULL || current_state == NULL ||
1921 	    previous_state == NULL || aux_state == NULL ||
1922 	    aux_state_status == NULL || progress_percent == NULL ||
1923 	    reason_code == NULL || update_option_flags_enabled == NULL ||
1924 	    !payload_length) {
1925 		return PLDM_ERROR_INVALID_DATA;
1926 	}
1927 
1928 	*completion_code = msg->payload[0];
1929 	if (*completion_code != PLDM_SUCCESS) {
1930 		return PLDM_SUCCESS;
1931 	}
1932 
1933 	if (payload_length != sizeof(struct pldm_get_status_resp)) {
1934 		return PLDM_ERROR_INVALID_LENGTH;
1935 	}
1936 	struct pldm_get_status_resp *response =
1937 		(struct pldm_get_status_resp *)msg->payload;
1938 
1939 	if (!is_state_valid(response->current_state)) {
1940 		return PLDM_ERROR_INVALID_DATA;
1941 	}
1942 	if (!is_state_valid(response->previous_state)) {
1943 		return PLDM_ERROR_INVALID_DATA;
1944 	}
1945 	if (!is_aux_state_valid(response->aux_state)) {
1946 		return PLDM_ERROR_INVALID_DATA;
1947 	}
1948 	if (!is_aux_state_status_valid(response->aux_state_status)) {
1949 		return PLDM_ERROR_INVALID_DATA;
1950 	}
1951 	if (response->progress_percent > PLDM_FWUP_MAX_PROGRESS_PERCENT) {
1952 		return PLDM_ERROR_INVALID_DATA;
1953 	}
1954 	if (!is_reason_code_valid(response->reason_code)) {
1955 		return PLDM_ERROR_INVALID_DATA;
1956 	}
1957 
1958 	if ((response->current_state == PLDM_FD_STATE_IDLE) ||
1959 	    (response->current_state == PLDM_FD_STATE_LEARN_COMPONENTS) ||
1960 	    (response->current_state == PLDM_FD_STATE_READY_XFER)) {
1961 		if (response->aux_state !=
1962 		    PLDM_FD_IDLE_LEARN_COMPONENTS_READ_XFER) {
1963 			return PLDM_ERROR_INVALID_DATA;
1964 		}
1965 	}
1966 
1967 	*current_state = response->current_state;
1968 	*previous_state = response->previous_state;
1969 	*aux_state = response->aux_state;
1970 	*aux_state_status = response->aux_state_status;
1971 	*progress_percent = response->progress_percent;
1972 	*reason_code = response->reason_code;
1973 	update_option_flags_enabled->value =
1974 		le32toh(response->update_option_flags_enabled.value);
1975 
1976 	return PLDM_SUCCESS;
1977 }
1978 
1979 LIBPLDM_ABI_STABLE
1980 int encode_cancel_update_component_req(uint8_t instance_id,
1981 				       struct pldm_msg *msg,
1982 				       size_t payload_length)
1983 {
1984 	if (msg == NULL) {
1985 		return PLDM_ERROR_INVALID_DATA;
1986 	}
1987 
1988 	if (payload_length != PLDM_CANCEL_UPDATE_COMPONENT_REQ_BYTES) {
1989 		return PLDM_ERROR_INVALID_LENGTH;
1990 	}
1991 
1992 	struct pldm_header_info header = { 0 };
1993 	header.instance = instance_id;
1994 	header.msg_type = PLDM_REQUEST;
1995 	header.pldm_type = PLDM_FWUP;
1996 	header.command = PLDM_CANCEL_UPDATE_COMPONENT;
1997 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
1998 	if (rc) {
1999 		return rc;
2000 	}
2001 
2002 	return PLDM_SUCCESS;
2003 }
2004 
2005 LIBPLDM_ABI_STABLE
2006 int decode_cancel_update_component_resp(const struct pldm_msg *msg,
2007 					size_t payload_length,
2008 					uint8_t *completion_code)
2009 {
2010 	if (msg == NULL || completion_code == NULL) {
2011 		return PLDM_ERROR_INVALID_DATA;
2012 	}
2013 
2014 	if (payload_length != sizeof(*completion_code)) {
2015 		return PLDM_ERROR_INVALID_LENGTH;
2016 	}
2017 
2018 	*completion_code = msg->payload[0];
2019 	return PLDM_SUCCESS;
2020 }
2021 
2022 LIBPLDM_ABI_STABLE
2023 int encode_cancel_update_req(uint8_t instance_id, struct pldm_msg *msg,
2024 			     size_t payload_length)
2025 {
2026 	if (msg == NULL) {
2027 		return PLDM_ERROR_INVALID_DATA;
2028 	}
2029 
2030 	if (payload_length != PLDM_CANCEL_UPDATE_REQ_BYTES) {
2031 		return PLDM_ERROR_INVALID_LENGTH;
2032 	}
2033 
2034 	struct pldm_header_info header = { 0 };
2035 	header.instance = instance_id;
2036 	header.msg_type = PLDM_REQUEST;
2037 	header.pldm_type = PLDM_FWUP;
2038 	header.command = PLDM_CANCEL_UPDATE;
2039 	uint8_t rc = pack_pldm_header(&header, &(msg->hdr));
2040 	if (rc) {
2041 		return rc;
2042 	}
2043 
2044 	return PLDM_SUCCESS;
2045 }
2046 
2047 LIBPLDM_ABI_STABLE
2048 int decode_cancel_update_resp(const struct pldm_msg *msg, size_t payload_length,
2049 			      uint8_t *completion_code,
2050 			      bool8_t *non_functioning_component_indication,
2051 			      bitfield64_t *non_functioning_component_bitmap)
2052 {
2053 	if (msg == NULL || completion_code == NULL ||
2054 	    non_functioning_component_indication == NULL ||
2055 	    non_functioning_component_bitmap == NULL || !payload_length) {
2056 		return PLDM_ERROR_INVALID_DATA;
2057 	}
2058 
2059 	*completion_code = msg->payload[0];
2060 	if (*completion_code != PLDM_SUCCESS) {
2061 		return PLDM_SUCCESS;
2062 	}
2063 
2064 	if (payload_length != sizeof(struct pldm_cancel_update_resp)) {
2065 		return PLDM_ERROR_INVALID_LENGTH;
2066 	}
2067 	struct pldm_cancel_update_resp *response =
2068 		(struct pldm_cancel_update_resp *)msg->payload;
2069 
2070 	if (!is_non_functioning_component_indication_valid(
2071 		    response->non_functioning_component_indication)) {
2072 		return PLDM_ERROR_INVALID_DATA;
2073 	}
2074 
2075 	*non_functioning_component_indication =
2076 		response->non_functioning_component_indication;
2077 
2078 	if (*non_functioning_component_indication) {
2079 		non_functioning_component_bitmap->value =
2080 			le64toh(response->non_functioning_component_bitmap);
2081 	}
2082 
2083 	return PLDM_SUCCESS;
2084 }
2085