xref: /openbmc/libpldm/CHANGELOG.md (revision 2332e057)
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to
7[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
9Change categories:
10
11- Added
12- Changed
13- Deprecated
14- Removed
15- Fixed
16- Security
17
18## [Unreleased]
19
20### Added
21
221. oem: meta: Add decode_oem_meta_file_io_write_req()
232. oem: meta: Add decode_oem_meta_file_io_read_req()
243. oem: meta: Add encode_oem_meta_file_io_read_resp()
254. pdr: Add pldm_entity_association_pdr_remove_contained_entity()
265. pdr: Add pldm_pdr_remove_fru_record_set_by_rsi()
276. pldm_entity_association_tree_copy_root_check()
287. oem: ibm: Add topology related state set and enum
29
308. base: Add size and buffer macros for struct pldm_msg
31
32   Together these macros reduce the need for use of reinterpret_cast<>() in C++.
33
34### Changed
35
361. dsp: bios_table: Null check for pldm_bios_table_iter_is_end()
37
38   pldm_bios_table_iter_is_end() now returns true if the provided argument is
39   NULL.
40
412. ABI break for pldm_pdr_find_record()
42
43   Register assignment for function parameters was changed with the removal of
44   some asserts in related implementations.
45
463. ABI break for pldm_pdr_get_next_record()
47
48   Register assignment for function parameters was changed with the removal of
49   some asserts in related implementations.
50
514. platform: Support PLDM_CPER_EVENT in encode_platform_event_message_req()
52
53### Deprecated
54
551. oem: meta: Deprecate `decode_oem_meta_file_io_req()`
56
57   Users should switch to `decode_oem_meta_file_io_write_req()`. Modify this
58   function to make it safer.
59
60   Modification:
61
62   - The meaning of the returned result.
63   - Change parameters from individual pointers to a struct.
64   - Check the length provided in the message won't exceed the buffer.
65
662. pldm_entity_association_tree_copy_root()
67
68   The implementation allocates, but gives no indication to the caller if an
69   allocation (and hence the copy) has failed. Users should migrate to
70   pldm_entity_association_tree_copy_root_check().
71
72### Removed
73
741. Deprecated functions with the `_check` suffix
75
76   - `get_fru_record_by_option_check()`
77   - `pldm_bios_table_append_pad_checksum_check()`
78   - `pldm_bios_table_attr_entry_enum_decode_def_num_check()`
79   - `pldm_bios_table_attr_entry_enum_decode_pv_hdls_check()`
80   - `pldm_bios_table_attr_entry_enum_decode_pv_num_check()`
81   - `pldm_bios_table_attr_entry_enum_encode_check()`
82   - `pldm_bios_table_attr_entry_integer_encode_check()`
83   - `pldm_bios_table_attr_entry_string_decode_def_string_length_check()`
84   - `pldm_bios_table_attr_entry_string_encode_check()`
85   - `pldm_bios_table_attr_value_entry_encode_enum_check()`
86   - `pldm_bios_table_attr_value_entry_encode_integer_check()`
87   - `pldm_bios_table_attr_value_entry_encode_string_check()`
88   - `pldm_bios_table_string_entry_decode_string_check()`
89   - `pldm_bios_table_string_entry_encode_check()`
90   - `pldm_entity_association_pdr_add_check()`
91   - `pldm_entity_association_pdr_add_from_node_check()`
92   - `pldm_pdr_add_check()`
93   - `pldm_pdr_add_fru_record_set_check()`
94
95### Fixed
96
971. dsp: bios_table: Null check for pldm_bios_table_iter_is_end()
98
99   Avoid a caller-controlled NULL pointer dereference in the library
100   implementation.
101
1022. platform: fix encode/decode_poll_for_platform_event_message_req
103
104   Update checking of `TransferOperationFlag` and `eventIDToAcknowledge` to
105   follow spec.
106
1073. platform: Fix checking `eventIDToAcknowledge`
108
109   As the event receiver sends `PollForPlatformEventMessage` with the
110   `tranferFlag` is `AcknowledgementOnly`, the value `eventIDToAcknowledge`
111   should be the previously retrieved eventID (from the PLDM terminus).
112
113## [0.9.1] - 2024-09-07
114
115### Changed
116
1171. Moved evolutions intended for v0.9.0 into place
118
119   Evolutions for the release have been moved from `evolutions/current` to
120   `evolutions/v0.9.1`. Library users can apply them to migrate off of
121   deprecated APIs.
122
123## [0.9.0] - 2024-09-07
124
125### Added
126
1271. base: Define macros for reserved TIDs
1282. pdr: Add pldm_entity_association_pdr_add_contained_entity_to_remote_pdr()
1293. pdr: Add pldm_entity_association_pdr_create_new()
1304. platform: Define macros for the responded transferflags
1315. pdr: Add pldm_pdr_get_terminus_handle() API
1326. pdr: Add related decode_entity_auxiliary_names_pdr() APIs
1337. fw_update: Add encode req & decode resp for get_downstream_fw_params
1348. platform: Add decode_pldm_platform_cper_event() API
1359. decode_get_pdr_repository_info_resp_safe()
136
137   Replaces decode_get_pdr_repository_info_resp() as discussed in the
138   `Deprecated` section below
139
14010. decode_get_pdr_resp_safe()
141
142    Replaces decode_get_pdr_resp() as discussed in the `Deprecated` section
143    below
144
145### Changed
146
1471. pdr: Stabilise related decode_entity_auxiliary_names_pdr() APIs
1482. platform: Rework decode/encode_pldm_message_poll_event_data() APIs
1493. platform: Stabilise decode_pldm_message_poll_event_data() APIs
1504. ABI break for decode_sensor_op_data()
151
152   Applying LIBPLDM_CC_NONNULL to the internal msgbuf APIs caused
153   abi-compliance-checker to flag a change in the register containing the
154   parameter `previous_op_state`.
155
1565. platform: Stabilise decode_pldm_platform_cper_event() API
1576. oem: meta: Stabilise decode_oem_meta_file_io_write_req() API
1587. oem: meta: Stabilise decode_oem_meta_file_io_read_req() API
1598. oem: meta: Stabilise encode_oem_meta_file_io_read_resp() API
160
161### Deprecated
162
1631. Rename and deprecate functions with the `_check` suffix
164
165   All library function return values always need to be checked. The `_check`
166   suffix is redundant, so remove it. Migration to the non-deprecated
167   equivalents without the `_check` suffix can be performed using
168   `scripts/ apply-renames` and the [clang-rename][] configurations under
169   `evolutions/`
170
171   The deprecated functions:
172
173   - `get_fru_record_by_option_check()`
174   - `pldm_bios_table_append_pad_checksum_check()`
175   - `pldm_bios_table_attr_entry_enum_decode_def_num_check()`
176   - `pldm_bios_table_attr_entry_enum_decode_pv_hdls_check()`
177   - `pldm_bios_table_attr_entry_enum_decode_pv_num_check()`
178   - `pldm_bios_table_attr_entry_enum_encode_check()`
179   - `pldm_bios_table_attr_entry_integer_encode_check()`
180   - `pldm_bios_table_attr_entry_string_decode_def_string_length_check()`
181   - `pldm_bios_table_attr_entry_string_encode_check()`
182   - `pldm_bios_table_attr_value_entry_encode_enum_check()`
183   - `pldm_bios_table_attr_value_entry_encode_integer_check()`
184   - `pldm_bios_table_attr_value_entry_encode_string_check()`
185   - `pldm_bios_table_string_entry_decode_string_check()`
186   - `pldm_bios_table_string_entry_encode_check()`
187   - `pldm_entity_association_pdr_add_check()`
188   - `pldm_entity_association_pdr_add_from_node_check()`
189   - `pldm_pdr_add_check()`
190   - `pldm_pdr_add_fru_record_set_check()`
191
192[clang-rename]: https://clang.llvm.org/extra/clang-rename.html
193
1942. `decode_get_pdr_repository_info_resp()`
195
196   Users should move to `decode_get_pdr_repository_info_resp_safe()` which
197   eliminates the opportunity for buffer overruns when extracting objects from
198   the message.
199
2003. `decode_get_pdr_resp()`
201
202   Users should move to `decode_get_pdr_resp_safe()` which reduces the
203   invocation tedium and improves memory safety over `decode_get_pdr_resp()`.
204
205### Removed
206
2071. IBM OEM header compatibility symlinks.
208
209   Anyone left using the deprecated paths can migrate using the coccinelle patch
210   at `evolutions/current/oem-ibm-header-compat.cocci`.
211
212### Fixed
213
2141. requester: instance-id: Release read lock on conflict
2152. pdr: Error propagation for
216   pldm_entity_association_pdr_add_from_node_with_record_handle()
217
218## [0.8.0] - 2024-05-23
219
220### Added
221
2221. base: Provide pldm_msg_hdr_correlate_response()
2232. transport: af-mctp: Add pldm_transport_af_mctp_bind()
2243. oem: ibm: Add chapdata file type support
2254. base: Added PLDM_SMBIOS & PLDM_RDE message types
2265. oem: meta: Add decode_oem_meta_file_io_req()
2276. state-set: Add all state set values to system power state enum as per DSP0249
2287. platform: Add alias members to the enum
229   pldm_pdr_repository_chg_event_change_record_event_data_operation.
230
231   enum constants with inconsistent names are deprecated with this change.
232   remove old inconsistent enum members after backward compatibility cleanup is
233   done
234
2358. oem-ibm: Alias `pldm_oem_ibm_fru_field_type` members as `PLDM_OEM_IBM_*`
2369. oem: ibm: Add Firmware Update Access Key(UAK) as a FRU field type
23710. platform: Add 3 PDR type enum for Redfish Device Enablement per
238    DSP0248_1.2.0
23911. state_set: Add CONNECTED and DISCONNECTED enum for Link State set
24012. entity: Add enum for Network Interface Connectors and Network Ports
241    Connection Types
24213. pdr: Add decode_numeric_effecter_pdr_data()
24314. oem: ibm: Support for the Real SAI entity id
24415. fw_update: Add encode req & decode resp for query_downstream_devices
24516. fw_update: Add encode req & decode resp for query_downstream_identifiers
24617. platform: Add support for GetStateEffecterStates command
247
248### Changed
249
2501. base: Stabilise pldm_msg_hdr_correlate_response()
2512. transport: af-mctp: Stabilise pldm_transport_af_mctp_bind()
2523. libpldm: Fix header use
2534. libpldm: More fixes for header use
2545. pdr: Stabilise pldm_pdr_find_last_in_range() API
2556. pdr: Stabilise pldm_entity_association_pdr_add_from_node_with_record_handle()
2567. oem: meta: stabilise decode_oem_meta_file_io_req()
2578. pdr: pldm_entity_association_tree_copy_root(): Document preconditions
258
259### Deprecated
260
2611. Deprecate `pldm_oem_ibm_fru_field_type` members that that are not prefixed
262   with `PLDM_OEM_IBM_`
263
264### Fixed
265
2661. libpldm: Rationalise the local and installed path of pldm.h
2672. pdr: Assign record_handle in entity_association_pdr_add_children()
2683. msgbuf: Require sensor data enum in pldm_msgbuf_extract_sensor_value()
2694. pdr: Remove redundant constant for minimum numeric sensor PDR length
2705. tests: oem: meta: Fix fileio use of msgbuf
271
272## [0.7.0] - 2023-08-29
273
274### Added
275
2761. state-set: Add new enum for Operational Fault Status enum
277
278### Changed
279
2801. transport: Match specified metadata in pldm_transport_send_recv_msg()
2812. transport: mctp-demux: Drop ABI annotation for internal symbols
2823. transport: Stabilise core transport and implementation APIs
283
284   This stabilisation covers the following headers and functions:
285
286   - libpldm/transport.h
287
288     - pldm_transport_poll()
289     - pldm_transport_send_msg()
290     - pldm_transport_recv_msg()
291     - pldm_transport_send_recv_msg()
292
293   - libpldm/transport/af-mctp.h
294
295     - pldm_transport_af_mctp_init()
296     - pldm_transport_af_mctp_destroy()
297     - pldm_transport_af_mctp_core()
298     - pldm_transport_af_mctp_init_pollfd()
299     - pldm_transport_af_mctp_map_tid()
300     - pldm_transport_af_mctp_unmap_tid()
301
302   - libpldm/transport/mctp-demux.h
303     - pldm_transport_mctp_demux_init()
304     - pldm_transport_mctp_demux_destroy()
305     - pldm_transport_mctp_demux_core()
306     - pldm_transport_mctp_demux_init_pollfd()
307     - pldm_transport_mctp_demux_map_tid()
308     - pldm_transport_mctp_demux_unmap_tid()
309
310### Deprecated
311
3121. All the existing "requester" APIs from `libpldm/pldm.h` (also known as
313   `libpldm/requester/pldm.h`):
314
315   - pldm_open()
316   - pldm_send_recv()
317   - pldm_send()
318   - pldm_recv()
319   - pldm_recv_any()
320   - pldm_close()
321
322   Users should migrate to the newer "transport" APIs instead.
323
324## Fixed
325
3261. tests: Exclude transport tests when build excludes testing ABIs
3272. abi: Capture deprecation of pldm_close()
328
329## [0.6.0] - 2023-08-22
330
331### Changed
332
3331. pdr: Avoid ID overflow in pldm_entity_association_tree_add_entity()
3342. meson: Apply `b_ndebug=if-release` by default
3353. pdr : Stabilize pldm_entity_association_tree_add_entity()
3364. pdr: Stabilise pldm_entity_association_tree_find_with_locality()
3375. pdr: Stabilize pldm_entity_node_get_remote_container_id()
3386. transport: af-mctp: Assign out-params on success in \*\_recv()
3397. transport: Generalise the pldm_transport_recv_msg() API
340
341### Removed
342
3431. pdr: Remove pldm_entity_association_pdr_add()
3442. state-set: Remove enum pldm_state_set_operational_fault_status_values
345
346### Fixed
347
3481. transport: register init_pollfd callback for af-mctp
3492. transport: fix init_pollfd function parameter
3503. transport: Fix doxygen and variables for send and recv functions
3514. transport: af-mctp: Ensure malloc() succeeds in \*\_recv()
352
353## [0.5.0] - 2023-08-09
354
355### Added
356
3571. pdr: Introduce pldm_entity_association_pdr_add_check()
358
359### Changed
360
3611. pdr: Allow record_handle to be NULL for pldm_pdr_add_check()
3622. transport: pldm_transport_poll(): Adjust return value semantics
3633. transport: free un-wanted responses in pldm_transport_send_recv_msg()
364
365### Deprecated
366
3671. state-set: Enum pldm_state_set_operational_fault_status_values
368
369   The enum operational_fault_status is defined with wrong members and will
370   eventually be replaced with the correct members. Any uses of
371   pldm_state_set_operational_fault_status_values members should move to
372   equivalent pldm_state_set_operational_stress_status_values members if needed.
373
3742. platform: Struct field name in fru_record_set PDR
375
376   References to entity_instance_num should be changed to entity_instance
377
3783. platform: Struct field name in numeric sensor value PDR
379
380   References to entity_instance_num should be changed to entity_instance
381
382### Removed
383
3841. bios_table: Remove pldm_bios_table_attr_entry_integer_encode_length()
3852. bios_table: Remove pldm_bios_table_attr_value_entry_encode_enum()
3863. bios_table: Remove pldm_bios_table_attr_value_entry_encode_string()
3874. bios_table: Remove pldm_bios_table_attr_value_entry_encode_integer()
3885. bios_table: Remove pldm_bios_table_append_pad_checksum()
3896. fru: Remove get_fru_record_by_option()
3907. pdr: Make is_present() static
3918. pdr: Remove pldm_pdr_add()
3929. pdr: Remove pldm_pdr_add_fru_record_set()
39310. pdr: Remove pldm_entity_association_pdr_add_from_node()
39411. pdr: Make find_entity_ref_in_tree() static
39512. pdr: Make entity_association_tree_find() static
396
397### Fixed
398
3991. requester: Fix response buffer cast in pldm_send_recv()
4002. pdr: Hoist record handle overflow test to avoid memory leak
4013. transport: Correct comparison in while loop condition
402
403## [0.4.0] - 2023-07-14
404
405### Added
406
4071. bios_table: Introduce pldm_bios_table_append_pad_checksum_check()
4082. fru: Introduce get_fru_record_by_option_check()
4093. pdr: Introduce pldm_entity_association_pdr_add_from_node_check()
4104. pdr: Introduce pldm_pdr_add_check()
4115. pdr: Introduce pldm_pdr_add_fru_record_set_check()
412
413### Changed
414
4151. requester: Mark pldm_close() as LIBPLDM_ABI_TESTING
4162. requester: Expose pldm_close() in header
4173. bios_table: pldm_bios_table_string_entry_encode_check(): Handle overflow
4184. bios_table: pldm_bios_table_iter_create(): Return NULL on failed alloc
4195. bios_table: pldm_bios_table_iter_next(): Invalid entry halts iteration
4206. pdr: pldm_pdr_init(): Return NULL on allocation failure
4217. pdr: pldm_pdr_destroy(): Exit early if repo is NULL
4228. pdr: Document preconditions for trivial accessor functions
423
424   A trivial accessor function is one that exposes properties of an object in a
425   way can't result in an error, beyond passing an invalid argument to the
426   function. For APIs meeting this definition we define a precondition that
427   struct pointers must point to valid objects to avoid polluting the function
428   prototypes. The following APIs now have this precondition explicitly defined:
429
430   - pldm_entity_extract()
431   - pldm_entity_get_parent()
432   - pldm_entity_is_exist_parent()
433   - pldm_entity_is_node_parent()
434   - pldm_is_current_parent_child
435   - pldm_is_empty_entity_assoc_tree()
436   - pldm_pdr_get_record_count()
437   - pldm_pdr_get_record_handle()
438   - pldm_pdr_get_repo_size()
439   - pldm_pdr_record_is_remote()
440
4419. pdr: pldm_entity_node_get_remote_container_id() is a trivial accessor
44210. pdr: pldm_pdr_fru_record_set_find_by_rsi(): Exit early on NULL arguments
44311. pdr: pldm_entity_association_tree_init(): Return NULL on failed alloc
44412. pdr: pldm_entity_association_tree_visit(): Document preconditions
44513. pdr: pldm_entity_association_tree_visit(): Exit early on failure
44614. pdr: pldm_entity_association_tree_destroy(): Exit early on bad argument
44715. pdr: pldm_entity_get_num_children(): Return zero for invalid arguments
44816. pdr: pldm_is_current_parent_child(): Return false for invalid arguments
44917. pdr: pldm_entity_association_pdr_add(): Exit early on bad arguments
45018. pdr: pldm_find_entity_ref_in_tree(): Exit early on bad arguments
45119. pdr: pldm_entity_association_tree_find(): Early exit on bad arguments
45220. pdr: pldm_entity_association_tree_destroy_root(): Exit early on bad arg
45321. pdr: pldm_entity_association_pdr_extract(): Early exit on bad arguments
45422. pdr: pldm_entity_association_pdr_extract(): Assign out params at exit
45523. pdr: pldm_entity_get_num_children(): Don't return invalid values
45624. libpldm: Lift or remove asserts where a subsequent check exists
457
458### Deprecated
459
4601. pldm_bios_table_attr_entry_integer_encode()
461
462   Migrate to pldm_bios_table_attr_entry_integer_encode_check()
463
4642. bios_table: Deprecate pldm_bios_table_attr_value_entry_encode_enum()
465
466   Migrate to pldm_bios_table_attr_value_entry_encode_enum_check()
467
4683. bios_table: Deprecate pldm_bios_table_attr_value_entry_encode_string()
469
470   Migrate to pldm_bios_table_attr_value_entry_encode_string_check()
471
4724. bios_table: Deprecate pldm_bios_table_attr_value_entry_encode_integer()
473
474   Migrate to pldm_bios_table_attr_value_entry_encode_integer_check()
475
4765. pdr: Deprecate is_present()
477
478   There should be no users of this symbol. If you are a user, you should figure
479   out how to stop, or get in touch. This symbol will be marked static the
480   release after deprecation.
481
4826. pdr: Deprecate find_entity_ref_in_tree()
483
484   There should be no users of this symbol. If you are a user, you should figure
485   out how to stop, or get in touch. This symbol will be marked static the
486   release after deprecation.
487
4887. pdr: Deprecate entity_association_tree_find()
489
490   There should be no users of this symbol. If you are a user, you should figure
491   out how to stop, or get in touch. This symbol will be marked static the
492   release after deprecation.
493
4948. bios_table: Stabilise pldm_bios_table_append_pad_checksum_check()
495
496   pldm_bios_table_append_pad_checksum() is deprecated by this change. Users of
497   pldm_bios_table_append_pad_checksum() should migrate to
498   pldm_bios_table_append_pad_checksum_check()
499
5009. fru: Stabilise get_fru_record_by_option_check()
501
502   get_fru_record_by_option() is deprecated by this change. Users of
503   get_fru_record_by_option() should migrate to get_fru_record_by_option_check()
504
50510. pdr: Stabilise pldm_entity_association_pdr_add_from_node_check()
506
507    pldm_entity_association_pdr_add_from_node() is deprecated by this change.
508    Users of pldm_entity_association_pdr_add_from_node() should migrate to
509    pldm_entity_association_pdr_add_from_node_check()
510
51111. pdr: Stabilise pldm_pdr_add_check()
512
513    pldm_pdr_add() is deprecated by this change. Users of pldm_pdr_add() should
514    migrate to pldm_pdr_add_check()
515
51612. pdr: Stabilise pldm_pdr_add_fru_record_set_check()
517
518    pldm_pdr_add_fru_record_set() is deprecated by this change. Users of
519    pldm_pdr_add_fru_record_set() should migrate to
520    pldm_pdr_add_fru_record_set_check()
521
522### Removed
523
5241. bios_table: Remove deprecated APIs sanitized by assert():
525
526   - pldm_bios_table_string_entry_encode()
527   - pldm_bios_table_string_entry_decode_string()
528   - pldm_bios_table_attr_entry_enum_encode()
529   - pldm_bios_table_attr_entry_enum_decode_pv_num()
530   - pldm_bios_table_attr_entry_enum_decode_def_num()
531   - pldm_bios_table_attr_entry_enum_decode_pv_hdls()
532   - pldm_bios_table_attr_entry_string_encode()
533   - pldm_bios_table_attr_entry_string_decode_def_string_length()
534
535### Fixed
536
5371. pdr: Return success for pldm_pdr_find_child_container_id_range_exclude() API
5382. pdr: Rework pldm_pdr_find_container_id_range_exclude() API
5393. transport: mctp-demux: Don't test socket for non-zero value
5404. requester: Return PLDM_REQUESTER_OPEN_FAIL from pldm_open() on error
5415. pdr: pldm_pdr_fru_record_set_find_by_rsi(): Document reality of return
5426. transport: Fix possible NULL ptr deref in pldm_socket_sndbuf_init()
5437. abi: Update to remove pldm_close() from reference dumps
5448. bios_table: Annotate pldm_bios_table_attr_value_entry_encode_integer()
545
546## [0.3.0] - 2023-06-23
547
548### Added
549
5501. Add encode/decode pldmMessagePollEvent data
5512. README: Add a section on working with libpldm
5523. pdr: Introduce remote_container_id and associated APIs
5534. pdr: Add APIs for creating and locating remote PDRs
5545. pdr: Add pldm_pdr_find_last_in_range()
5556. pdr: Add pldm_entity_association_pdr_add_from_node_with_record_handle()
5567. pdr: Add pldm_pdr_find_container_id_range_exclude()
557
558### Changed
559
5601. include: Move installed transport.h under libpldm/
5612. libpldm: Explicit deprecated, stable and testing ABI classes
5623. meson: Reduce strength of oem-ibm requirements from enabled to allowed
563
564   The `oem-ibm` feature is now enabled by the default meson configuration, for
565   CI purposes. `oem-ibm` is still disabled by default in the `libpldm` bitbake
566   recipe:
567
568   <https://github.com/openbmc/openbmc/blob/master/meta-phosphor/recipes-phosphor/libpldm/libpldm_git.bb#L10>
569
570   To disable `oem-ibm` in your development builds, pass `-Doem-ibm=disabled`
571   when invoking `meson setup`
572
5734. bios_table: Relax pldm_bios_table_string_entry_decode_string_check()
5745. bios_table: Relax pldm_bios_table_attr_entry_enum_decode_pv_hdls_check()
575
576### Deprecated
577
5781. bios_table: Deprecate APIs with arguments sanitized using assert()
579
580   C provides enough foot-guns without us encoding them into library APIs.
581   Specifically, deprecate the following in favour of their `*_check()` variants
582   which ensure assertions won't fail or otherwise invoke UB:
583
584   - pldm_bios_table_string_entry_encode()
585   - pldm_bios_table_string_entry_decode_string()
586   - pldm_bios_table_attr_entry_enum_encode()
587   - pldm_bios_table_attr_entry_enum_decode_pv_num()
588   - pldm_bios_table_attr_entry_enum_decode_def_num()
589   - pldm_bios_table_attr_entry_enum_decode_pv_hdls()
590   - pldm_bios_table_attr_entry_string_encode()
591   - pldm_bios_table_attr_entry_string_decode_def_string_length()
592
593### Removed
594
5951. libpldm: Remove the requester-api option
596
597### Fixed
598
5991. requester: Make pldm_open() return existing fd
6002. transport: Prevent sticking in waiting for response
6013. transport: Match on response in pldm_transport_send_recv_msg()
6024. requester: Add check before accessing hdr in pldm_recv()
6035. bios_table: pldm_bios_table_attr_entry_string_info_check() NULL deref
604