VYPR

linux package

kernel

pkg:linux/kernel

Vulnerabilities (14,254)

  • CVE-2024-49912MedOct 21, 2024
    affected >= 4.15.0, < 6.1.113fixed 6.1.113

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Handle null 'stream_status' in 'planes_changed_for_existing_stream' This commit adds a null check for 'stream_status' in the function 'planes_changed_for_existing_stream'. Previously, the code

  • CVE-2024-49911MedOct 21, 2024
    affected >= 4.15.0, < 6.1.120fixed 6.1.120

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func This commit adds a null check for the set_output_gamma function pointer in the dcn20_set_output_transfer_func function. Pre

  • CVE-2024-49910MedOct 21, 2024
    affected >= 4.15.0, < 6.11.3fixed 6.11.3

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn401_set_output_transfer_func This commit adds a null check for the set_output_gamma function pointer in the dcn401_set_output_transfer_func function. P

  • CVE-2024-49909MedOct 21, 2024
    affected >= 6.0.0, < 6.1.120fixed 6.1.120

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func This commit adds a null check for the set_output_gamma function pointer in the dcn32_set_output_transfer_func function. Pre

  • CVE-2024-49908MedOct 21, 2024
    affected >= 4.15.0, < 6.11.3fixed 6.11.3

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add null check for 'afb' in amdgpu_dm_update_cursor (v2) This commit adds a null check for the 'afb' variable in the amdgpu_dm_update_cursor function. Previously, 'afb' was assumed to be null a

  • CVE-2024-49907MedOct 21, 2024
    affected >= 4.15.0, < 5.10.227fixed 5.10.227

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null pointers before using dc->clk_mgr [WHY & HOW] dc->clk_mgr is null checked previously in the same function, indicating it might be null. Passing "dc" to "dc->hwss.apply_idle_power_op

  • CVE-2024-49906MedOct 21, 2024
    affected >= 4.15.0, < 6.6.64fixed 6.6.64

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null pointer before try to access it [why & how] Change the order of the pipe_ctx->plane_state check to ensure that plane_state is not null before accessing it.

  • CVE-2024-49905MedOct 21, 2024
    affected >= 4.15.0, < 6.1.113fixed 6.1.113

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Add null check for 'afb' in amdgpu_dm_plane_handle_cursor_update (v2) This commit adds a null check for the 'afb' variable in the amdgpu_dm_plane_handle_cursor_update function. Previously, 'afb

  • CVE-2024-49904MedOct 21, 2024
    affected >= 6.9.0, < 6.10.14fixed 6.10.14

    In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: add list empty check to avoid null pointer issue Add list empty check to avoid null pointer issues in some corner cases. - list_for_each_entry_safe()

  • CVE-2024-49903HigOct 21, 2024
    affected >= 3.7.0, < 4.19.323fixed 4.19.323

    In the Linux kernel, the following vulnerability has been resolved: jfs: Fix uaf in dbFreeBits [syzbot reported] ================================================================== BUG: KASAN: slab-use-after-free in __mutex_lock_common kernel/locking/mutex.c:587 [inline] BUG: KA

  • CVE-2024-49902HigOct 21, 2024
    affected >= 2.6.12, < 4.19.323fixed 4.19.323

    In the Linux kernel, the following vulnerability has been resolved: jfs: check if leafidx greater than num leaves per dmap tree syzbot report a out of bounds in dbSplit, it because dmt_leafidx greater than num leaves per dmap tree, add a checking for dmt_leafidx in dbFindLeaf.

  • CVE-2024-49901MedOct 21, 2024
    affected >= 3.12.0, < 6.6.55fixed 6.6.55

    In the Linux kernel, the following vulnerability has been resolved: drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs There are some cases, such as the one uncovered by Commit 46d4efcccc68 ("drm/msm/a6xx: Avoid a nullptr dereference when speedbin setting fails") wh

  • CVE-2024-49900HigOct 21, 2024
    affected >= 2.6.12, < 4.19.323fixed 4.19.323

    In the Linux kernel, the following vulnerability has been resolved: jfs: Fix uninit-value access of new_ea in ea_buffer syzbot reports that lzo1x_1_do_compress is using uninit-value: ===================================================== BUG: KMSAN: uninit-value in lzo1x_1_do_c

  • CVE-2024-49899MedOct 21, 2024
    affected >= 4.15.0, < 6.1.120fixed 6.1.120

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Initialize denominators' default to 1 [WHAT & HOW] Variables used as denominators and maybe not assigned to other values, should not be 0. Change their default to 1 so they are never 0. This f

  • CVE-2024-49898MedOct 21, 2024
    affected >= 4.15.0, < 6.1.120fixed 6.1.120

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check null-initialized variables [WHAT & HOW] drr_timing and subvp_pipe are initialized to null and they are not always assigned new values. It is necessary to check for null before dereferenci

  • CVE-2024-49897MedOct 21, 2024
    affected >= 4.15.0, < 6.1.120fixed 6.1.120

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check phantom_stream before it is used dcn32_enable_phantom_stream can return null, so returned value must be checked before used. This fixes 1 NULL_RETURNS issue reported by Coverity.

  • CVE-2024-49896MedOct 21, 2024
    affected >= 4.15.0, < 4.19.323fixed 4.19.323

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check stream before comparing them [WHAT & HOW] amdgpu_dm can pass a null stream to dc_is_stream_unchanged. It is necessary to check for null before dereferencing them. This fixes 1 FORWARD_NU

  • CVE-2024-49895HigOct 21, 2024
    affected >= 4.15.0, < 5.10.227fixed 5.10.227

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation This commit addresses a potential index out of bounds issue in the `cm3_helper_translate_curve_to_degamma_hw_format` functio

  • CVE-2024-49894HigOct 21, 2024
    affected >= 4.15.0, < 4.19.323fixed 4.19.323

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Fix index out of bounds in degamma hardware format translation Fixes index out of bounds issue in `cm_helper_translate_curve_to_degamma_hw_format` function. The issue could occur when the index

  • CVE-2024-49893MedOct 21, 2024
    affected >= 4.15.0, < 6.11.3fixed 6.11.3

    In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check stream_status before it is used [WHAT & HOW] dc_state_get_stream_status can return null, and therefore null must be checked before stream_status is used. This fixes 1 NULL_RETURNS issue

Page 579 of 713