1e41f4b71Sopenharmony_ci# OpenHarmony 4.0.2 Release 2e41f4b71Sopenharmony_ci 3e41f4b71Sopenharmony_ci 4e41f4b71Sopenharmony_ci## Version Overview 5e41f4b71Sopenharmony_ci 6e41f4b71Sopenharmony_ciOpenHarmony 4.0.2 Release provides enhanced system security over OpenHarmony 4.0.1 Release by rectifying memory leak issues, certain known vulnerabilities in open-source components such as Linux kernel, and system stability issues. 7e41f4b71Sopenharmony_ci 8e41f4b71Sopenharmony_ci 9e41f4b71Sopenharmony_ci## Version Mapping 10e41f4b71Sopenharmony_ci 11e41f4b71Sopenharmony_ci**Table 1** Version mapping of software and tools 12e41f4b71Sopenharmony_ci 13e41f4b71Sopenharmony_ci| Software/Tool| Version| Remarks| 14e41f4b71Sopenharmony_ci| -------- | -------- | -------- | 15e41f4b71Sopenharmony_ci| OpenHarmony | 4.0.2 Release | NA | 16e41f4b71Sopenharmony_ci| Public SDK | Ohos_sdk_public 4.0.11.4 (API Version 10 Release) | This toolkit is intended for application developers and does not contain system APIs that require system permissions. It is provided as standard in DevEco Studio.| 17e41f4b71Sopenharmony_ci| (Optional) HUAWEI DevEco Studio| 4.0 Release | Recommended for developing OpenHarmony applications How to obtain:<br><br>SHA-256 checksum: 2c88cf43e1ef6ba722aac31eccc8ef92f07a9b72e43a9c1df127017828a22137<br><br>SHA-256 checksum: 25e491458eec50b4abddf5bed6aa85893801d70afbce02958f17bd904619405a<br><br>SHA-256 checksum: 284cb01f7b819e0da1d4fcacbbbbe8017ba220b5e3b9b1d5e4cc59ea30456acc | 18e41f4b71Sopenharmony_ci| (Optional) HUAWEI DevEco Device Tool| 4.0 Release | Recommended for developing OpenHarmony smart devices<br>[Click here](https://device.harmonyos.com/cn/develop/ide#download).| 19e41f4b71Sopenharmony_ci 20e41f4b71Sopenharmony_ci 21e41f4b71Sopenharmony_ci## Source Code Acquisition 22e41f4b71Sopenharmony_ci 23e41f4b71Sopenharmony_ci 24e41f4b71Sopenharmony_ci### Prerequisites 25e41f4b71Sopenharmony_ci 26e41f4b71Sopenharmony_ci1. Register your account with Gitee. 27e41f4b71Sopenharmony_ci 28e41f4b71Sopenharmony_ci2. Register an SSH public key for access to Gitee. 29e41f4b71Sopenharmony_ci 30e41f4b71Sopenharmony_ci3. Install the [git client](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure user information. 31e41f4b71Sopenharmony_ci ``` 32e41f4b71Sopenharmony_ci git config --global user.name "yourname" 33e41f4b71Sopenharmony_ci git config --global user.email "your-email-address" 34e41f4b71Sopenharmony_ci git config --global credential.helper store 35e41f4b71Sopenharmony_ci ``` 36e41f4b71Sopenharmony_ci 37e41f4b71Sopenharmony_ci4. Run the following commands to install the **repo** tool: 38e41f4b71Sopenharmony_ci ``` 39e41f4b71Sopenharmony_ci curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo # If you do not have the permission, download the tool to another directory and configure it as an environment variable by running the chmod a+x /usr/local/bin/repo command. 40e41f4b71Sopenharmony_ci pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests 41e41f4b71Sopenharmony_ci ``` 42e41f4b71Sopenharmony_ci 43e41f4b71Sopenharmony_ci 44e41f4b71Sopenharmony_ci### Acquiring Source Code Using the repo Tool 45e41f4b71Sopenharmony_ci 46e41f4b71Sopenharmony_ci**Method 1 (recommended)** 47e41f4b71Sopenharmony_ci 48e41f4b71Sopenharmony_ciUse the **repo** tool to download the source code over SSH. (You must have an SSH public key for access to Gitee.) 49e41f4b71Sopenharmony_ci 50e41f4b71Sopenharmony_ci- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands: 51e41f4b71Sopenharmony_ci ``` 52e41f4b71Sopenharmony_ci repo init -u git@gitee.com:openharmony/manifest.git -b OpenHarmony-4.0.2-Release --no-repo-verify 53e41f4b71Sopenharmony_ci repo sync -c 54e41f4b71Sopenharmony_ci repo forall -c 'git lfs pull' 55e41f4b71Sopenharmony_ci ``` 56e41f4b71Sopenharmony_ci 57e41f4b71Sopenharmony_ci- Obtain the source code from the version tag, which is the same as that released with the version. 58e41f4b71Sopenharmony_ci ``` 59e41f4b71Sopenharmony_ci repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-v4.0.2-Release --no-repo-verify 60e41f4b71Sopenharmony_ci repo sync -c 61e41f4b71Sopenharmony_ci repo forall -c 'git lfs pull' 62e41f4b71Sopenharmony_ci ``` 63e41f4b71Sopenharmony_ci 64e41f4b71Sopenharmony_ci**Method 2** 65e41f4b71Sopenharmony_ci 66e41f4b71Sopenharmony_ciUse the **repo** tool to download the source code over HTTPS. 67e41f4b71Sopenharmony_ci 68e41f4b71Sopenharmony_ci- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands: 69e41f4b71Sopenharmony_ci ``` 70e41f4b71Sopenharmony_ci repo init -u https://gitee.com/openharmony/manifest -b OpenHarmony-4.0.2-Release --no-repo-verify 71e41f4b71Sopenharmony_ci repo sync -c 72e41f4b71Sopenharmony_ci repo forall -c 'git lfs pull' 73e41f4b71Sopenharmony_ci ``` 74e41f4b71Sopenharmony_ci 75e41f4b71Sopenharmony_ci- Obtain the source code from the version tag, which is the same as that released with the version. 76e41f4b71Sopenharmony_ci ``` 77e41f4b71Sopenharmony_ci repo init -u https://gitee.com/openharmony/manifest -b refs/tags/OpenHarmony-v4.0.2-Release --no-repo-verify 78e41f4b71Sopenharmony_ci repo sync -c 79e41f4b71Sopenharmony_ci repo forall -c 'git lfs pull' 80e41f4b71Sopenharmony_ci ``` 81e41f4b71Sopenharmony_ci 82e41f4b71Sopenharmony_ci 83e41f4b71Sopenharmony_ci### Acquiring Source Code from Mirrors 84e41f4b71Sopenharmony_ci 85e41f4b71Sopenharmony_ci 86e41f4b71Sopenharmony_ci**Table 2** Mirrors for acquiring source code 87e41f4b71Sopenharmony_ci 88e41f4b71Sopenharmony_ci| Source Code | Version| Mirror | SHA-256 Checksum | Software Package Size| 89e41f4b71Sopenharmony_ci| --------------------------------------- | ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -------- | 90e41f4b71Sopenharmony_ci| Full code base (for mini, small, and standard systems) | 4.0.2Release | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/code-v4.0.2-Release.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/code-v4.0.2-Release.tar.gz.sha256) | 30.5 GB | 91e41f4b71Sopenharmony_ci| Hi3861 solution (binary) | 4.0.2Release | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_pegasus.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_pegasus.tar.gz.sha256) | 27.3 MB | 92e41f4b71Sopenharmony_ci| Hi3516 solution-LiteOS (binary)| 4.0.2Release | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_taurus_LiteOS.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_taurus_LiteOS.tar.gz.sha256) | 302.5 MB | 93e41f4b71Sopenharmony_ci| Hi3516 solution-Linux (binary) | 4.0.2Release | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_taurus_Linux.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/hispark_taurus_Linux.tar.gz.sha256) | 193.2 MB | 94e41f4b71Sopenharmony_ci| RK3568 standard system solution (binary) | 4.0.2Release | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/dayu200_standard_arm32.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/dayu200_standard_arm32.tar.gz.sha256) | 5.2 GB | 95e41f4b71Sopenharmony_ci| Public SDK package for the standard system (macOS) | 4.0.11.4 | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/ohos-sdk-mac-public.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/ohos-sdk-mac-public.tar.gz.sha256) | 2.0 GB | 96e41f4b71Sopenharmony_ci| Public SDK package for the standard system (macOS-M1) | 4.0.11.4 | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/L2-SDK-MAC-M1-PUBLIC.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/L2-SDK-MAC-M1-PUBLIC.tar.gz.sha256) | 800.7 MB | 97e41f4b71Sopenharmony_ci| Public SDK package for the standard system (Windows/Linux) | 4.0.11.4 | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/ohos-sdk-windows_linux-public.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.2-Release/ohos-sdk-windows_linux-public.tar.gz.sha256) | 1.1 GB | 98e41f4b71Sopenharmony_ci 99e41f4b71Sopenharmony_ci## What's New 100e41f4b71Sopenharmony_ci 101e41f4b71Sopenharmony_ciThis version has the following updates to OpenHarmony 4.0.1 Release. 102e41f4b71Sopenharmony_ci 103e41f4b71Sopenharmony_ci 104e41f4b71Sopenharmony_ci### API Changes 105e41f4b71Sopenharmony_ci 106e41f4b71Sopenharmony_ciN/A 107e41f4b71Sopenharmony_ci 108e41f4b71Sopenharmony_ci 109e41f4b71Sopenharmony_ci### Chip and Development Board Adaptation 110e41f4b71Sopenharmony_ci 111e41f4b71Sopenharmony_ciFor details about the adaptation status, see [SIG_DevBoard](https://gitee.com/openharmony/community/blob/master/sig/sig_devboard/sig_devboard.md). 112e41f4b71Sopenharmony_ci 113e41f4b71Sopenharmony_ci 114e41f4b71Sopenharmony_ci## Resolved Issues 115e41f4b71Sopenharmony_ci 116e41f4b71Sopenharmony_ci**Table 4** Resolved issues 117e41f4b71Sopenharmony_ci 118e41f4b71Sopenharmony_ci| Issue No.| Description| 119e41f4b71Sopenharmony_ci| -------- | -------- | 120e41f4b71Sopenharmony_ci| [IA7RFU](https://e.gitee.com/open_harmony/issues/table?issue=IA7RFU) | [OpenHarmony 4.0.11.3] A C++ crash occurs on libhdf_host.z.so due to an error of the IPC_0_583 thread of the composer_host process. This issue occurs 263 times.| 121e41f4b71Sopenharmony_ci| [IA50TF](https://e.gitee.com/open_harmony/issues/table?issue=IA50TF) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_vdi_impl.z.so due to an error of the IPC_0_600 thread of the composer_host process. This issue occurs 98 times.| 122e41f4b71Sopenharmony_ci| [IA4VWD](https://e.gitee.com/open_harmony/issues/table?issue=IA4VWD) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_service_1.0.z.so due to an error of the IPC_0_651 thread of the composer_host process. This issue occurs 99 times.| 123e41f4b71Sopenharmony_ci| [IA4VOG](https://e.gitee.com/open_harmony/issues/table?issue=IA4VOG) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_service_1.0.z.so due to an error of the IPC_0_611 thread of the composer_host process. This issue occurs 1207 times.| 124e41f4b71Sopenharmony_ci| [I9UD63](https://e.gitee.com/open_harmony/issues/table?issue=I9UD63) | [OpenHarmony 4.0.11.1] App freezing occurs on getTimeDetailByCallTime of the com.ohos.contacts process. This issue occurs 11 times.| 125e41f4b71Sopenharmony_ci| [I9D96I](https://e.gitee.com/open_harmony/issues/table?issue=I9D96I) | [OpenHarmony 4.0.10.18] The input method is not automatically displayed when a user touches the search box. | 126e41f4b71Sopenharmony_ci| [I9BN09](https://e.gitee.com/open_harmony/issues/table?issue=I9BN09) | [OpenHarmony 4.0.10.18] App freezing occurs due to THREAD_BLOCK_6S in the com.ohos.photos process. This issue occurs 10 times.| 127e41f4b71Sopenharmony_ci| [I97K8F](https://e.gitee.com/open_harmony/issues/table?issue=I97K8F) | [OpenHarmony 4.0.10.16] The LiteOS DSoftBus process cannot be started. | 128e41f4b71Sopenharmony_ci| [IA8XY1](https://e.gitee.com/open_harmony/issues/table?issue=IA8XY1) | [OpenHarmony 4.0.11.4] A JS crash occurs on isFolderMoveIn of the com.ohos.note process. This issue occurs once.| 129e41f4b71Sopenharmony_ci| [IA8ORN](https://e.gitee.com/open_harmony/issues/table?issue=IA8ORN) | [OpenHarmony 4.0.11.4] A C++ crash occurs on libipc_core.z.so due to an error of the IPC_0_625 thread of the softbus_server process. This issue occurs 17 times.| 130e41f4b71Sopenharmony_ci| [IA8HPZ](https://e.gitee.com/open_harmony/issues/table?issue=IA8HPZ) | [OpenHarmony 4.0.11.3] The WLAN status cannot be synchronized on the Settings screen after WLAN is enabled and disabled on the Settings screen.| 131e41f4b71Sopenharmony_ci| [IA56NT](https://e.gitee.com/open_harmony/issues/table?issue=IA56NT) | [OpenHarmony 4.0.11.2] A JS crash occurs on unregisterObserver of the com.ohos.settings process. This issue occurs once.| 132e41f4b71Sopenharmony_ci| [IA52Z3](https://e.gitee.com/open_harmony/issues/table?issue=IA52Z3) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libclang_rt.ubsan_minimal.so due to an error of the IPC_0_623 thread of the composer_host process. This issue occurs 5 times.| 133e41f4b71Sopenharmony_ci| [IA52VP](https://e.gitee.com/open_harmony/issues/table?issue=IA52VP) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_stub_1.0.z.so due to an error of the IPC_0_610 thread of the composer_host process. This issue occurs 22 times.| 134e41f4b71Sopenharmony_ci| [IA52OZ](https://e.gitee.com/open_harmony/issues/table?issue=IA52OZ) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_vdi_impl.z.so due to an error of the OS_IPC_1_635 thread of the composer_host process. This issue occurs twice.| 135e41f4b71Sopenharmony_ci| [IA52FF](https://e.gitee.com/open_harmony/issues/table?issue=IA52FF) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_vendor.z.so due to an error of the IPC_1_613 thread of the composer_host process. This issue occurs once.| 136e41f4b71Sopenharmony_ci| [IA5292](https://e.gitee.com/open_harmony/issues/table?issue=IA5292) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libhdf_ipc_adapter.z.so due to an error of the IPC_0_628 thread of the composer_host process. This issue occurs 45 times.| 137e41f4b71Sopenharmony_ci| [IA521D](https://e.gitee.com/open_harmony/issues/table?issue=IA521D) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libhilog.so due to an error of the IPC_1_588 thread of the composer_host process. This issue occurs 13 times.| 138e41f4b71Sopenharmony_ci| [IA51QG](https://e.gitee.com/open_harmony/issues/table?issue=IA51QG) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libipc_single.z.so due to an error of the IPC_1_592 thread of the composer_host process. This issue occurs 3 times.| 139e41f4b71Sopenharmony_ci| [IA51KP](https://e.gitee.com/open_harmony/issues/table?issue=IA51KP) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libnative_rdb.z.so due to an error of the os.settingsdata thread of the com.ohos.settingsdata process.| 140e41f4b71Sopenharmony_ci| [IA51AZ](https://e.gitee.com/open_harmony/issues/table?issue=IA51AZ) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libdisplay_composer_vdi_impl.z.so due to an error of the OS_IPC_1_626 thread of the composer_host process. This issue occurs 11 times.| 141e41f4b71Sopenharmony_ci| [IA513N](https://e.gitee.com/open_harmony/issues/table?issue=IA513N) | [OpenHarmony 4.0.11.2] A C++ crash occurs on libnative_appdatafwk.z.so due to an error of the os.settingsdata thread of the com.ohos.settingsdata process. This issue occurs 18 times.| 142e41f4b71Sopenharmony_ci| [I9UF1I](https://e.gitee.com/open_harmony/issues/table?issue=I9UF1I) | [OpenHarmony 4.0.11.1] A C++ crash occurs on libhdifd_parcelable.z.so due to an error of the IPC_1_625 thread of the composer_host process.| 143e41f4b71Sopenharmony_ci| [I9UESA](https://e.gitee.com/open_harmony/issues/table?issue=I9UESA) | [OpenHarmony 4.0.11.1] A C++ crash occurs on libdlp_permission_sdk.z.so due to an error of the ffrtwk/CPU-2-0 thread of the foundation process. This issue occurs once.| 144e41f4b71Sopenharmony_ci| [I9TPH7](https://e.gitee.com/open_harmony/issues/table?issue=I9TPH7) | [OpenHarmony 4.0.11.1] A JS crash occurs on updateActionBar of the com.ohos.photos process. This issue occurs once.| 145e41f4b71Sopenharmony_ci| [I9TNOU](https://e.gitee.com/open_harmony/issues/table?issue=I9TNOU) | [OpenHarmony 4.0.11.1] The inForm parameter of the hap-sign-tool.jar tool is case insensitive.| 146e41f4b71Sopenharmony_ci| [I9PITC](https://e.gitee.com/open_harmony/issues/table?issue=I9PITC) | [OpenHarmony 4.0.10.18] When the indentation of the text in a memo is adjusted, saved, and the application is closed, the text appears without indentation upon reopening.| 147e41f4b71Sopenharmony_ci| [I9K8ZD](https://e.gitee.com/open_harmony/issues/table?issue=I9K8ZD) | [OpenHarmony 4.0.10.18] A C++ crash occurs on libdevicemanagerserviceimpl.z.so due to an error of the TimerRunning thread of the device_manager process. This issue occurs once.| 148e41f4b71Sopenharmony_ci| [I96SJG](https://e.gitee.com/open_harmony/issues/table?issue=I96SJG) | [OpenHarmony 4.0.10.17] A JS crash occurs on unregisterObserver of the com.ohos.settings process. This issue occurs once.| 149e41f4b71Sopenharmony_ci| [I920DA](https://e.gitee.com/open_harmony/issues/table?issue=I920DA) | [OpenHarmony 4.0.10.16] A JS crash occurs on AirplaneVM of the com.ohos.systemui process. This issue occurs once.| 150e41f4b71Sopenharmony_ci 151e41f4b71Sopenharmony_ci## Fixed Security Vulnerabilities 152e41f4b71Sopenharmony_ci 153e41f4b71Sopenharmony_ci**Table 4** Fixed security vulnerabilities 154e41f4b71Sopenharmony_ci 155e41f4b71Sopenharmony_ci| Issue No. | Description | 156e41f4b71Sopenharmony_ci| ------------------------------------------------------------ | -------------------------------------------------- | 157e41f4b71Sopenharmony_ci| [IA9LC2](https://e.gitee.com/open_harmony/issues/table?issue=IA9LC2) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36939| 158e41f4b71Sopenharmony_ci| [I9PJJN](https://e.gitee.com/open_harmony/issues/table?issue=I9PJJN) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26733| 159e41f4b71Sopenharmony_ci| [I9QZR5](https://e.gitee.com/open_harmony/issues/table?issue=I9QZR5) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-27004| 160e41f4b71Sopenharmony_ci| [I9QZC7](https://e.gitee.com/open_harmony/issues/table?issue=I9QZC7) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52467| 161e41f4b71Sopenharmony_ci| [I9QZB8](https://e.gitee.com/open_harmony/issues/table?issue=I9QZB8) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26903| 162e41f4b71Sopenharmony_ci| [I9QZ9J](https://e.gitee.com/open_harmony/issues/table?issue=I9QZ9J) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-27399| 163e41f4b71Sopenharmony_ci| [I9QW5Y](https://e.gitee.com/open_harmony/issues/table?issue=I9QW5Y) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-51794 | 164e41f4b71Sopenharmony_ci| [I9QW30](https://e.gitee.com/open_harmony/issues/table?issue=I9QW30) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2017-14058| 165e41f4b71Sopenharmony_ci| [I9Q65G](https://e.gitee.com/open_harmony/issues/table?issue=I9Q65G) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-51793| 166e41f4b71Sopenharmony_ci| [I9Q1NE](https://e.gitee.com/open_harmony/issues/table?issue=I9Q1NE) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26862| 167e41f4b71Sopenharmony_ci| [I9Q1MT](https://e.gitee.com/open_harmony/issues/table?issue=I9Q1MT) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52462| 168e41f4b71Sopenharmony_ci| [I9OGPC](https://e.gitee.com/open_harmony/issues/table?issue=I9OGPC) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-24863| 169e41f4b71Sopenharmony_ci| [I9OEZF](https://e.gitee.com/open_harmony/issues/table?issue=I9OEZF) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-46887| 170e41f4b71Sopenharmony_ci| [I9NQVB](https://e.gitee.com/open_harmony/issues/table?issue=I9NQVB) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26601| 171e41f4b71Sopenharmony_ci| [I9JE1E](https://e.gitee.com/open_harmony/issues/table?issue=I9JE1E) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2022-2078 | 172e41f4b71Sopenharmony_ci| [I9JDLS](https://e.gitee.com/open_harmony/issues/table?issue=I9JDLS) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-4001 | 173e41f4b71Sopenharmony_ci| [I9H4QZ](https://e.gitee.com/open_harmony/issues/table?issue=I9H4QZ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-0450 | 174e41f4b71Sopenharmony_ci| [I9FXHF](https://e.gitee.com/open_harmony/issues/table?issue=I9FXHF) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52160| 175e41f4b71Sopenharmony_ci| [I9COE3](https://e.gitee.com/open_harmony/issues/table?issue=I9COE3) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52498| 176e41f4b71Sopenharmony_ci| [I9BU69](https://e.gitee.com/open_harmony/issues/table?issue=I9BU69) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-25739| 177e41f4b71Sopenharmony_ci| [I952TO](https://e.gitee.com/open_harmony/issues/table?issue=I952TO) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-24858| 178e41f4b71Sopenharmony_ci| [I950WP](https://e.gitee.com/open_harmony/issues/table?issue=I950WP) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-24857| 179e41f4b71Sopenharmony_ci| [IA7RSP](https://e.gitee.com/open_harmony/issues/table?issue=IA7RSP) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47469| 180e41f4b71Sopenharmony_ci| [IA7RR1](https://e.gitee.com/open_harmony/issues/table?issue=IA7RR1) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52835| 181e41f4b71Sopenharmony_ci| [IA7RQS](https://e.gitee.com/open_harmony/issues/table?issue=IA7RQS) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52879| 182e41f4b71Sopenharmony_ci| [IA7RQM](https://e.gitee.com/open_harmony/issues/table?issue=IA7RQM) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52868| 183e41f4b71Sopenharmony_ci| [IA7RQC](https://e.gitee.com/open_harmony/issues/table?issue=IA7RQC) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52739| 184e41f4b71Sopenharmony_ci| [IA7ROX](https://e.gitee.com/open_harmony/issues/table?issue=IA7ROX) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52869| 185e41f4b71Sopenharmony_ci| [IA7AZ7](https://e.gitee.com/open_harmony/issues/table?issue=IA7AZ7) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35896| 186e41f4b71Sopenharmony_ci| [IA7AVQ](https://e.gitee.com/open_harmony/issues/table?issue=IA7AVQ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52781| 187e41f4b71Sopenharmony_ci| [IA7AUA](https://e.gitee.com/open_harmony/issues/table?issue=IA7AUA) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52832| 188e41f4b71Sopenharmony_ci| [IA7A6Q](https://e.gitee.com/open_harmony/issues/table?issue=IA7A6Q) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36017| 189e41f4b71Sopenharmony_ci| [IA7A60](https://e.gitee.com/open_harmony/issues/table?issue=IA7A60) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35822| 190e41f4b71Sopenharmony_ci| [IA74VS](https://e.gitee.com/open_harmony/issues/table?issue=IA74VS) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52881 | 191e41f4b71Sopenharmony_ci| [IA74RP](https://e.gitee.com/open_harmony/issues/table?issue=IA74RP) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36883| 192e41f4b71Sopenharmony_ci| [IA49BH](https://e.gitee.com/open_harmony/issues/table?issue=IA49BH) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-39375| 193e41f4b71Sopenharmony_ci| [I9UNOT](https://e.gitee.com/open_harmony/issues/table?issue=I9UNOT) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-4906 | 194e41f4b71Sopenharmony_ci| [I9QZQO](https://e.gitee.com/open_harmony/issues/table?issue=I9QZQO) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-27038| 195e41f4b71Sopenharmony_ci| [I9QZQB](https://e.gitee.com/open_harmony/issues/table?issue=I9QZQB) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26801| 196e41f4b71Sopenharmony_ci| [I9QZCJ](https://e.gitee.com/open_harmony/issues/table?issue=I9QZCJ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26923| 197e41f4b71Sopenharmony_ci| [I9PJK7](https://e.gitee.com/open_harmony/issues/table?issue=I9PJK7) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26735| 198e41f4b71Sopenharmony_ci| [I9PJJT](https://e.gitee.com/open_harmony/issues/table?issue=I9PJJT) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26805| 199e41f4b71Sopenharmony_ci| [IA4BSA](https://e.gitee.com/open_harmony/issues/table?issue=IA4BSA) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36899| 200e41f4b71Sopenharmony_ci| [IA47RY](https://e.gitee.com/open_harmony/issues/table?issue=IA47RY) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36904| 201e41f4b71Sopenharmony_ci| [I9TCEQ](https://e.gitee.com/open_harmony/issues/table?issue=I9TCEQ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26934| 202e41f4b71Sopenharmony_ci| [I9TCE6](https://e.gitee.com/open_harmony/issues/table?issue=I9TCE6) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47479 | 203e41f4b71Sopenharmony_ci| [I9TCBI](https://e.gitee.com/open_harmony/issues/table?issue=I9TCBI) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47506| 204e41f4b71Sopenharmony_ci| [I9TCAM](https://e.gitee.com/open_harmony/issues/table?issue=I9TCAM) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47485| 205e41f4b71Sopenharmony_ci| [I9TC9P](https://e.gitee.com/open_harmony/issues/table?issue=I9TC9P) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47483| 206e41f4b71Sopenharmony_ci| [I9TC7F](https://e.gitee.com/open_harmony/issues/table?issue=I9TC7F) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-47474| 207e41f4b71Sopenharmony_ci| [I9OU4P](https://e.gitee.com/open_harmony/issues/table?issue=I9OU4P) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26885| 208e41f4b71Sopenharmony_ci| [I9OU4C](https://e.gitee.com/open_harmony/issues/table?issue=I9OU4C) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26883| 209e41f4b71Sopenharmony_ci| [I9OU42](https://e.gitee.com/open_harmony/issues/table?issue=I9OU42) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26884| 210e41f4b71Sopenharmony_ci| [I9OU3J](https://e.gitee.com/open_harmony/issues/table?issue=I9OU3J) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2022-48655| 211e41f4b71Sopenharmony_ci| [I9O3RW](https://e.gitee.com/open_harmony/issues/table?issue=I9O3RW) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-31578| 212e41f4b71Sopenharmony_ci| [I9JNCO](https://e.gitee.com/open_harmony/issues/table?issue=I9JNCO) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52436| 213e41f4b71Sopenharmony_ci| [I9H4LS](https://e.gitee.com/open_harmony/issues/table?issue=I9H4LS) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-6597 | 214e41f4b71Sopenharmony_ci| [IA7RS0](https://e.gitee.com/open_harmony/issues/table?issue=IA7RS0) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36929| 215e41f4b71Sopenharmony_ci| [IA7RRT](https://e.gitee.com/open_harmony/issues/table?issue=IA7RRT) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36941| 216e41f4b71Sopenharmony_ci| [IA7RPQ](https://e.gitee.com/open_harmony/issues/table?issue=IA7RPQ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35984 | 217e41f4b71Sopenharmony_ci| [IA7RPD](https://e.gitee.com/open_harmony/issues/table?issue=IA7RPD) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52730| 218e41f4b71Sopenharmony_ci| [IA7ROQ](https://e.gitee.com/open_harmony/issues/table?issue=IA7ROQ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36008| 219e41f4b71Sopenharmony_ci| [IA7RO9](https://e.gitee.com/open_harmony/issues/table?issue=IA7RO9) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35997| 220e41f4b71Sopenharmony_ci| [IA7BIZ](https://e.gitee.com/open_harmony/issues/table?issue=IA7BIZ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36901| 221e41f4b71Sopenharmony_ci| [IA7B91](https://e.gitee.com/open_harmony/issues/table?issue=IA7B91) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36903| 222e41f4b71Sopenharmony_ci| [IA7B81](https://e.gitee.com/open_harmony/issues/table?issue=IA7B81) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35904| 223e41f4b71Sopenharmony_ci| [IA7B1I](https://e.gitee.com/open_harmony/issues/table?issue=IA7B1I) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-27414| 224e41f4b71Sopenharmony_ci| [IA7B0N](https://e.gitee.com/open_harmony/issues/table?issue=IA7B0N) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35955| 225e41f4b71Sopenharmony_ci| [IA7AY5](https://e.gitee.com/open_harmony/issues/table?issue=IA7AY5) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35969| 226e41f4b71Sopenharmony_ci| [IA7AXC](https://e.gitee.com/open_harmony/issues/table?issue=IA7AXC) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35962| 227e41f4b71Sopenharmony_ci| [IA7AV3](https://e.gitee.com/open_harmony/issues/table?issue=IA7AV3) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-35789| 228e41f4b71Sopenharmony_ci| [IA7AT2](https://e.gitee.com/open_harmony/issues/table?issue=IA7AT2) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36940| 229e41f4b71Sopenharmony_ci| [IA7A45](https://e.gitee.com/open_harmony/issues/table?issue=IA7A45) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52803| 230e41f4b71Sopenharmony_ci| [IA7A3F](https://e.gitee.com/open_harmony/issues/table?issue=IA7A3F) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52791| 231e41f4b71Sopenharmony_ci| [IA74SA](https://e.gitee.com/open_harmony/issues/table?issue=IA74SA) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36938| 232e41f4b71Sopenharmony_ci| [IA74RC](https://e.gitee.com/open_harmony/issues/table?issue=IA74RC) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36905| 233e41f4b71Sopenharmony_ci| [IA74QZ](https://e.gitee.com/open_harmony/issues/table?issue=IA74QZ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-36902| 234e41f4b71Sopenharmony_ci| [IA6W5Z](https://e.gitee.com/open_harmony/issues/table?issue=IA6W5Z) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-48514| 235e41f4b71Sopenharmony_ci| [I9RKKZ](https://e.gitee.com/open_harmony/issues/table?issue=I9RKKZ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-31755| 236e41f4b71Sopenharmony_ci| [I9QZSH](https://e.gitee.com/open_harmony/issues/table?issue=I9QZSH) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26852| 237e41f4b71Sopenharmony_ci| [I9QZS8](https://e.gitee.com/open_harmony/issues/table?issue=I9QZS8) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-26901| 238e41f4b71Sopenharmony_ci 239e41f4b71Sopenharmony_ci## Known Issues 240e41f4b71Sopenharmony_ci 241e41f4b71Sopenharmony_ci**Table 5** Known issues 242e41f4b71Sopenharmony_ci 243e41f4b71Sopenharmony_ci| Issue No.| Description| Impact| To Be Resolved By| 244e41f4b71Sopenharmony_ci| -------- | -------- | -------- | -------- | 245e41f4b71Sopenharmony_ci| / | / | / | / | 246e41f4b71Sopenharmony_ci 247e41f4b71Sopenharmony_ci <!--no_check-->