CVE-2022-48652

Source
https://nvd.nist.gov/vuln/detail/CVE-2022-48652
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-48652.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2022-48652
Downstream
Related
Published
2024-04-28T13:00:47Z
Modified
2025-10-14T20:02:46.385770Z
Summary
ice: Fix crash by keep old cfg when update TCs more than queues
Details

In the Linux kernel, the following vulnerability has been resolved:

ice: Fix crash by keep old cfg when update TCs more than queues

There are problems if allocated queues less than Traffic Classes.

Commit a632b2a4c920 ("ice: ethtool: Prohibit improper channel config for DCB") already disallow setting less queues than TCs.

Another case is if we first set less queues, and later update more TCs config due to LLDP, icevsicfgtc() will failed but left dirty numtxq/rxq and tc_cfg in vsi, that will cause invalid pointer access.

[ 95.968089] ice 0000:3b:00.1: More TCs defined than queues/rings allocated. [ 95.968092] ice 0000:3b:00.1: Trying to use more Rx queues (8), than were allocated (1)! [ 95.968093] ice 0000:3b:00.1: Failed to config TC for VSI index: 0 [ 95.969621] general protection fault: 0000 [#1] SMP NOPTI [ 95.969705] CPU: 1 PID: 58405 Comm: lldpad Kdump: loaded Tainted: G U W O --------- -t - 4.18.0 #1 [ 95.969867] Hardware name: O.E.M/BC11SPSCB10, BIOS 8.23 12/30/2021 [ 95.969992] RIP: 0010:devmkmalloc+0xa/0x60 [ 95.970052] Code: 5c ff ff ff 31 c0 5b 5d 41 5c c3 b8 f4 ff ff ff eb f4 0f 1f 40 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 89 d1 <8b> 97 60 02 00 00 48 8d 7e 18 48 39 f7 72 3f 55 89 ce 53 48 8b 4c [ 95.970344] RSP: 0018:ffffc9003f553888 EFLAGS: 00010206 [ 95.970425] RAX: dead000000000200 RBX: ffffea003c425b00 RCX: 00000000006080c0 [ 95.970536] RDX: 00000000006080c0 RSI: 0000000000000200 RDI: dead000000000200 [ 95.970648] RBP: dead000000000200 R08: 00000000000463c0 R09: ffff888ffa900000 [ 95.970760] R10: 0000000000000000 R11: 0000000000000002 R12: ffff888ff6b40100 [ 95.970870] R13: ffff888ff6a55018 R14: 0000000000000000 R15: ffff888ff6a55460 [ 95.970981] FS: 00007f51b7d24700(0000) GS:ffff88903ee80000(0000) knlGS:0000000000000000 [ 95.971108] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 95.971197] CR2: 00007fac5410d710 CR3: 0000000f2c1de002 CR4: 00000000007606e0 [ 95.971309] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 95.971419] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 95.971530] PKRU: 55555554 [ 95.971573] Call Trace: [ 95.971622] icesetuprxring+0x39/0x110 [ice] [ 95.971695] icevsisetuprxrings+0x54/0x90 [ice] [ 95.971774] icevsiopen+0x25/0x120 [ice] [ 95.971843] iceopeninternal+0xb8/0x1f0 [ice] [ 95.971919] iceenavsi+0x4f/0xd0 [ice] [ 95.971987] icedcbenadisvsi.constprop.5+0x29/0x90 [ice] [ 95.972082] icepfdcbcfg+0x29a/0x380 [ice] [ 95.972154] icedcbnlsetets+0x174/0x1b0 [ice] [ 95.972220] dcbnlieeeset+0x89/0x230 [ 95.972279] ? dcbnlieeedel+0x150/0x150 [ 95.972341] dcbdoit+0x124/0x1b0 [ 95.972392] rtnetlinkrcvmsg+0x243/0x2f0 [ 95.972457] ? dcbdoit+0x14d/0x1b0 [ 95.972510] ? kmallocnodetrackcaller+0x1d3/0x280 [ 95.972591] ? rtnlcalcit.isra.31+0x100/0x100 [ 95.972661] netlinkrcvskb+0xcf/0xf0 [ 95.972720] netlinkunicast+0x16d/0x220 [ 95.972781] netlinksendmsg+0x2ba/0x3a0 [ 95.975891] socksendmsg+0x4c/0x50 [ 95.979032] syssendmsg+0x2e4/0x300 [ 95.982147] ? kmemcachealloc+0x13e/0x190 [ 95.985242] ? _wakeupcommonlock+0x79/0x90 [ 95.988338] ? _checkobjectsize+0xac/0x1b0 [ 95.991440] ? _copytouser+0x22/0x30 [ 95.994539] ? moveaddrtouser+0xbb/0xd0 [ 95.997619] ? _syssendmsg+0x53/0x80 [ 96.000664] _syssendmsg+0x53/0x80 [ 96.003747] dosyscall64+0x5b/0x1d0 [ 96.006862] entrySYSCALL64afterhwframe+0x65/0xca

Only update numtxq/rxq when passed check, and restore tccfg if setup queue map failed.

References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
a632b2a4c920ce5af29410fb091f7ee6d2e77dc6
Fixed
7c945e5b4787db47d728120b56c934ba05f99864
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
a632b2a4c920ce5af29410fb091f7ee6d2e77dc6
Fixed
a509702cac95a8b450228a037c8542f57e538e5b
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
4520c4bf4dca7aa285f30cb1ca8c08c531bbf0e9

Affected versions

v5.*

v5.10.1
v5.10.10
v5.10.11
v5.10.12
v5.10.13
v5.10.14
v5.10.15
v5.10.16
v5.10.17
v5.10.18
v5.10.19
v5.10.2
v5.10.3
v5.10.4
v5.10.5
v5.10.6
v5.10.7
v5.10.8
v5.10.9
v5.11.1
v5.11.10
v5.11.11
v5.11.12
v5.11.13
v5.11.14
v5.11.15
v5.11.16
v5.11.17
v5.11.18
v5.11.19
v5.11.2
v5.11.20
v5.11.21
v5.11.3
v5.11.4
v5.11.5
v5.11.6
v5.11.7
v5.11.8
v5.11.9
v5.12.1
v5.12.10
v5.12.11
v5.12.12
v5.12.13
v5.12.14
v5.12.15
v5.12.16
v5.12.17
v5.12.18
v5.12.19
v5.12.2
v5.12.3
v5.12.4
v5.12.5
v5.12.6
v5.12.7
v5.12.8
v5.12.9
v5.13.1
v5.13.10
v5.13.11
v5.13.12
v5.13.13
v5.13.14
v5.13.15
v5.13.16
v5.13.17
v5.13.18
v5.13.2
v5.13.3
v5.13.4
v5.13.5
v5.13.6
v5.13.7
v5.13.8
v5.13.9
v5.14.1
v5.14.10
v5.14.11
v5.14.12
v5.14.13
v5.14.14
v5.14.15
v5.14.16
v5.14.17
v5.14.18
v5.14.19
v5.14.2
v5.14.20
v5.14.3
v5.14.4
v5.14.5
v5.14.6
v5.14.7
v5.14.8
v5.14.9
v5.15.1
v5.15.10
v5.15.11
v5.15.12
v5.15.13
v5.15.14
v5.15.15
v5.15.16
v5.15.17
v5.15.18
v5.15.19
v5.15.2
v5.15.3
v5.15.4
v5.15.5
v5.15.6
v5.15.7
v5.15.8
v5.15.9
v5.16.1
v5.16.10
v5.16.11
v5.16.12
v5.16.13
v5.16.14
v5.16.15
v5.16.16
v5.16.17
v5.16.18
v5.16.19
v5.16.2
v5.16.20
v5.16.3
v5.16.4
v5.16.5
v5.16.6
v5.16.7
v5.16.8
v5.16.9
v5.17.1
v5.17.10
v5.17.11
v5.17.12
v5.17.13
v5.17.14
v5.17.2
v5.17.3
v5.17.4
v5.17.5
v5.17.6
v5.17.7
v5.17.8
v5.17.9
v5.18.10
v5.18.11
v5.18.12
v5.18.13
v5.18.14
v5.18.15
v5.18.16
v5.18.17
v5.18.18
v5.18.19
v5.18.8
v5.18.9
v5.19
v5.19-rc1
v5.19-rc2
v5.19-rc3
v5.19-rc4
v5.19-rc5
v5.19-rc6
v5.19-rc7
v5.19-rc8
v5.19.1
v5.19.10
v5.19.11
v5.19.12
v5.19.13
v5.19.14
v5.19.15
v5.19.16
v5.19.2
v5.19.3
v5.19.4
v5.19.5
v5.19.6
v5.19.7
v5.19.8
v5.19.9
v5.6.1
v5.6.10
v5.6.11
v5.6.12
v5.6.13
v5.6.14
v5.6.15
v5.6.16
v5.6.17
v5.6.18
v5.6.2
v5.6.3
v5.6.4
v5.6.5
v5.6.6
v5.6.7
v5.6.8
v5.6.9
v5.7.1
v5.7.10
v5.7.11
v5.7.12
v5.7.13
v5.7.14
v5.7.15
v5.7.16
v5.7.2
v5.7.3
v5.7.4
v5.7.5
v5.7.6
v5.7.7
v5.7.8
v5.7.9
v5.8.1
v5.8.10
v5.8.11
v5.8.12
v5.8.13
v5.8.14
v5.8.15
v5.8.16
v5.8.17
v5.8.18
v5.8.2
v5.8.3
v5.8.4
v5.8.5
v5.8.6
v5.8.7
v5.8.8
v5.8.9
v5.9.1
v5.9.10
v5.9.11
v5.9.12
v5.9.13
v5.9.14
v5.9.15
v5.9.16
v5.9.2
v5.9.3
v5.9.4
v5.9.5
v5.9.6
v5.9.7
v5.9.8
v5.9.9

v6.*

v6.0
v6.0-rc1
v6.0-rc2
v6.0-rc3
v6.0-rc4
v6.0-rc5
v6.0-rc6
v6.0-rc7
v6.0.1
v6.0.10
v6.0.11
v6.0.12
v6.0.13
v6.0.14
v6.0.15
v6.0.16
v6.0.17
v6.0.18
v6.0.2
v6.0.3
v6.0.4
v6.0.5
v6.0.6
v6.0.7
v6.0.8
v6.0.9
v6.1
v6.1-rc1
v6.1-rc2
v6.1-rc3
v6.1-rc4
v6.1-rc5
v6.1-rc6
v6.1-rc7
v6.1-rc8
v6.1.1
v6.1.10
v6.1.11
v6.1.12
v6.1.13
v6.1.14
v6.1.15
v6.1.2
v6.1.3
v6.1.4
v6.1.5
v6.1.6
v6.1.7
v6.1.8
v6.1.9
v6.10
v6.10-rc1
v6.10-rc2
v6.10-rc3
v6.10-rc4
v6.10-rc5
v6.10-rc6
v6.10-rc7
v6.10.1
v6.10.10
v6.10.11
v6.10.12
v6.10.13
v6.10.2
v6.10.3
v6.10.4
v6.10.5
v6.10.6
v6.10.7
v6.10.8
v6.10.9
v6.11
v6.11-rc1
v6.11-rc2
v6.11-rc3
v6.11-rc4
v6.11-rc5
v6.11-rc6
v6.11-rc7
v6.11.1
v6.11.10
v6.11.11
v6.11.2
v6.11.3
v6.11.4
v6.11.5
v6.11.6
v6.11.7
v6.11.8
v6.11.9
v6.12
v6.12-rc1
v6.12-rc2
v6.12-rc3
v6.12-rc4
v6.12-rc5
v6.12-rc6
v6.12-rc7
v6.12.1
v6.12.10
v6.12.11
v6.12.12
v6.12.13
v6.12.14
v6.12.2
v6.12.3
v6.12.4
v6.12.5
v6.12.6
v6.12.7
v6.12.8
v6.12.9
v6.13
v6.13-rc1
v6.13-rc2
v6.13-rc3
v6.13-rc4
v6.13-rc5
v6.13-rc6
v6.13-rc7
v6.13.1
v6.13.10
v6.13.11
v6.13.12
v6.13.2
v6.13.3
v6.13.4
v6.13.5
v6.13.6
v6.13.7
v6.13.8
v6.13.9
v6.14
v6.14-rc1
v6.14-rc2
v6.14-rc3
v6.14-rc4
v6.14-rc5
v6.14-rc6
v6.14-rc7
v6.14.1
v6.14.10
v6.14.11
v6.14.2
v6.14.3
v6.14.4
v6.14.5
v6.14.6
v6.14.7
v6.14.8
v6.14.9
v6.15
v6.15-rc1
v6.15-rc2
v6.15-rc3
v6.15-rc4
v6.15-rc5
v6.15-rc6
v6.15-rc7
v6.15.1
v6.15.10
v6.15.11
v6.15.2
v6.15.3
v6.15.4
v6.15.5
v6.15.6
v6.15.7
v6.15.8
v6.15.9
v6.16
v6.16-rc1
v6.16-rc2
v6.16-rc3
v6.16-rc4
v6.16-rc5
v6.16-rc6
v6.16-rc7
v6.16.1
v6.16.10
v6.16.11
v6.16.12
v6.16.2
v6.16.3
v6.16.4
v6.16.5
v6.16.6
v6.16.7
v6.16.8
v6.16.9
v6.17
v6.17-rc1
v6.17-rc2
v6.17-rc3
v6.17-rc4
v6.17-rc5
v6.17-rc6
v6.17-rc7
v6.17.1
v6.17.2
v6.2
v6.2-rc1
v6.2-rc2
v6.2-rc3
v6.2-rc4
v6.2-rc5
v6.2-rc6
v6.2-rc7
v6.2-rc8
v6.2.1
v6.2.10
v6.2.11
v6.2.12
v6.2.13
v6.2.14
v6.2.15
v6.2.2
v6.2.3
v6.2.4
v6.2.5
v6.2.6
v6.2.7
v6.2.8
v6.2.9
v6.3
v6.3-rc1
v6.3-rc2
v6.3-rc3
v6.3-rc4
v6.3-rc5
v6.3-rc6
v6.3-rc7
v6.3.1
v6.3.10
v6.3.11
v6.3.12
v6.3.2
v6.3.3
v6.3.4
v6.3.5
v6.3.6
v6.3.7
v6.3.8
v6.3.9
v6.4
v6.4-rc1
v6.4-rc2
v6.4-rc3
v6.4-rc4
v6.4-rc5
v6.4-rc6
v6.4-rc7
v6.4.1
v6.4.10
v6.4.11
v6.4.12
v6.4.13
v6.4.14
v6.4.15
v6.4.16
v6.4.2
v6.4.3
v6.4.4
v6.4.5
v6.4.6
v6.4.7
v6.4.8
v6.4.9
v6.5
v6.5-rc1
v6.5-rc2
v6.5-rc3
v6.5-rc4
v6.5-rc5
v6.5-rc6
v6.5-rc7
v6.5.1
v6.5.10
v6.5.11
v6.5.12
v6.5.13
v6.5.2
v6.5.3
v6.5.4
v6.5.5
v6.5.6
v6.5.7
v6.5.8
v6.5.9
v6.6
v6.6-rc1
v6.6-rc2
v6.6-rc3
v6.6-rc4
v6.6-rc5
v6.6-rc6
v6.6-rc7
v6.6.1
v6.6.10
v6.6.11
v6.6.12
v6.6.13
v6.6.14
v6.6.2
v6.6.3
v6.6.4
v6.6.5
v6.6.6
v6.6.7
v6.6.8
v6.6.9
v6.7
v6.7-rc1
v6.7-rc2
v6.7-rc3
v6.7-rc4
v6.7-rc5
v6.7-rc6
v6.7-rc7
v6.7-rc8
v6.7.1
v6.7.10
v6.7.11
v6.7.2
v6.7.3
v6.7.4
v6.7.5
v6.7.6
v6.7.7
v6.7.8
v6.7.9
v6.8
v6.8-rc1
v6.8-rc2
v6.8-rc3
v6.8-rc4
v6.8-rc5
v6.8-rc6
v6.8-rc7
v6.8.1
v6.8.10
v6.8.11
v6.8.2
v6.8.3
v6.8.4
v6.8.5
v6.8.6
v6.8.7
v6.8.8
v6.8.9
v6.9
v6.9-rc1
v6.9-rc2
v6.9-rc3
v6.9-rc4
v6.9-rc5
v6.9-rc6
v6.9-rc7
v6.9.1
v6.9.10
v6.9.11
v6.9.12
v6.9.2
v6.9.3
v6.9.4
v6.9.5
v6.9.6
v6.9.7
v6.9.8
v6.9.9

Database specific

{
    "vanir_signatures": [
        {
            "digest": {
                "length": 2625.0,
                "function_hash": "44733054403693956872205331048884440331"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_setup_q_map_mqprio"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c945e5b4787db47d728120b56c934ba05f99864",
            "signature_version": "v1",
            "id": "CVE-2022-48652-299eef49",
            "signature_type": "Function"
        },
        {
            "digest": {
                "length": 2259.0,
                "function_hash": "46225019398713253699518834841862600862"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_setup_q_map"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c945e5b4787db47d728120b56c934ba05f99864",
            "signature_version": "v1",
            "id": "CVE-2022-48652-3434cebd",
            "signature_type": "Function"
        },
        {
            "digest": {
                "length": 2259.0,
                "function_hash": "46225019398713253699518834841862600862"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_setup_q_map"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@a509702cac95a8b450228a037c8542f57e538e5b",
            "signature_version": "v1",
            "id": "CVE-2022-48652-772e41a3",
            "signature_type": "Function"
        },
        {
            "digest": {
                "length": 2625.0,
                "function_hash": "44733054403693956872205331048884440331"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_setup_q_map_mqprio"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@a509702cac95a8b450228a037c8542f57e538e5b",
            "signature_version": "v1",
            "id": "CVE-2022-48652-7f27abcd",
            "signature_type": "Function"
        },
        {
            "digest": {
                "threshold": 0.9,
                "line_hashes": [
                    "238095959266857400747098002225393569895",
                    "136537250171353374534469406331632279910",
                    "235819969088507760282182384872817591212",
                    "192029180563709193927876242047495175711",
                    "156820272380950653871160684190301521723",
                    "3038998559734277812088875672933114874",
                    "212566839467111452799680285134283150028",
                    "138581803455156246382208303253338392440",
                    "102870758599470880372194096538798628265",
                    "281001514846301631797209785671001092694",
                    "187332057894880133478735772322923902765",
                    "69176019304638754899960575121729553015",
                    "68315945554903177723301378188908848527",
                    "102170597029444178309108401201163222402",
                    "43639659681626006849772087300060358884",
                    "119822462961472787767783871944252998520",
                    "177150299372290266546148517705176546083",
                    "166432673767576075871876632048690392156",
                    "231661488794270425778566316777853210042",
                    "226949025690187708933788282842837483551",
                    "310132519182394066437631437908204529130",
                    "287059336298895120066258269948763169529",
                    "175106011650295939198182602347833958030",
                    "73446347200351349600313872789583654607",
                    "65200820892640149205874491270647863901",
                    "144889849338249196041601837201347016822",
                    "16035756406753661043660617907197131342",
                    "38701248194113455840724308172131077689",
                    "134707118804902404295260309047607092509",
                    "177150299372290266546148517705176546083",
                    "166432673767576075871876632048690392156",
                    "320405356201824593049928268492198568224",
                    "18834790742849013969687734727434432494",
                    "169202699137233289186075294730562646295",
                    "325513750028358917966132041927291971683",
                    "187332057894880133478735772322923902765",
                    "69176019304638754899960575121729553015",
                    "309702102986401802242211952835217796344",
                    "80358195002643622747812765840845888833",
                    "306023144475887816552300043562947648913",
                    "292928433565345968856330540812058430902",
                    "88498331829487816199315315477689317692",
                    "336588662861273223506561015232385381750",
                    "300786125475811523892098742707024763772",
                    "177539550751668455430608928016646582590",
                    "61957484415848932980840727160400637495",
                    "155584951626034531535380179030404777384",
                    "21298766899416732611436022604687755026",
                    "247235011025769610557018630956630752843",
                    "39637677100367391267386135945084544258",
                    "220698931707284313831370374632757479807",
                    "84811839065780929714910758829485925542"
                ]
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@a509702cac95a8b450228a037c8542f57e538e5b",
            "signature_version": "v1",
            "id": "CVE-2022-48652-82c187db",
            "signature_type": "Line"
        },
        {
            "digest": {
                "threshold": 0.9,
                "line_hashes": [
                    "238095959266857400747098002225393569895",
                    "136537250171353374534469406331632279910",
                    "235819969088507760282182384872817591212",
                    "192029180563709193927876242047495175711",
                    "156820272380950653871160684190301521723",
                    "3038998559734277812088875672933114874",
                    "212566839467111452799680285134283150028",
                    "138581803455156246382208303253338392440",
                    "102870758599470880372194096538798628265",
                    "281001514846301631797209785671001092694",
                    "187332057894880133478735772322923902765",
                    "69176019304638754899960575121729553015",
                    "68315945554903177723301378188908848527",
                    "102170597029444178309108401201163222402",
                    "43639659681626006849772087300060358884",
                    "119822462961472787767783871944252998520",
                    "177150299372290266546148517705176546083",
                    "166432673767576075871876632048690392156",
                    "231661488794270425778566316777853210042",
                    "226949025690187708933788282842837483551",
                    "310132519182394066437631437908204529130",
                    "287059336298895120066258269948763169529",
                    "175106011650295939198182602347833958030",
                    "73446347200351349600313872789583654607",
                    "65200820892640149205874491270647863901",
                    "144889849338249196041601837201347016822",
                    "16035756406753661043660617907197131342",
                    "38701248194113455840724308172131077689",
                    "134707118804902404295260309047607092509",
                    "177150299372290266546148517705176546083",
                    "166432673767576075871876632048690392156",
                    "320405356201824593049928268492198568224",
                    "18834790742849013969687734727434432494",
                    "169202699137233289186075294730562646295",
                    "325513750028358917966132041927291971683",
                    "187332057894880133478735772322923902765",
                    "69176019304638754899960575121729553015",
                    "309702102986401802242211952835217796344",
                    "80358195002643622747812765840845888833",
                    "306023144475887816552300043562947648913",
                    "292928433565345968856330540812058430902",
                    "88498331829487816199315315477689317692",
                    "336588662861273223506561015232385381750",
                    "300786125475811523892098742707024763772",
                    "177539550751668455430608928016646582590",
                    "61957484415848932980840727160400637495",
                    "155584951626034531535380179030404777384",
                    "21298766899416732611436022604687755026",
                    "247235011025769610557018630956630752843",
                    "39637677100367391267386135945084544258",
                    "220698931707284313831370374632757479807",
                    "84811839065780929714910758829485925542"
                ]
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c945e5b4787db47d728120b56c934ba05f99864",
            "signature_version": "v1",
            "id": "CVE-2022-48652-8e0fd564",
            "signature_type": "Line"
        },
        {
            "digest": {
                "length": 1635.0,
                "function_hash": "227660009730512075987277168216007851852"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_cfg_tc"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@a509702cac95a8b450228a037c8542f57e538e5b",
            "signature_version": "v1",
            "id": "CVE-2022-48652-b6cf2326",
            "signature_type": "Function"
        },
        {
            "digest": {
                "length": 1635.0,
                "function_hash": "227660009730512075987277168216007851852"
            },
            "target": {
                "file": "drivers/net/ethernet/intel/ice/ice_lib.c",
                "function": "ice_vsi_cfg_tc"
            },
            "deprecated": false,
            "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c945e5b4787db47d728120b56c934ba05f99864",
            "signature_version": "v1",
            "id": "CVE-2022-48652-c9f9b2d7",
            "signature_type": "Function"
        }
    ]
}

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.19.0
Fixed
5.19.12