cve-2021-4439
Vulnerability from cvelistv5
Published
2024-06-20 12:07
Modified
2024-11-04 11:55
Severity ?
EPSS score ?
Summary
isdn: cpai: check ctr->cnr to avoid array index out of bound
References
Impacted products
{ "containers": { "adp": [ { "metrics": [ { "other": { "content": { "id": "CVE-2021-4439", "options": [ { "Exploitation": "none" }, { "Automatable": "no" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-06-20T14:46:11.140255Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2024-06-20T14:46:30.065Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" }, { "providerMetadata": { "dateUpdated": "2024-08-03T17:30:07.335Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/e8b8de17e164c9f1b7777f1c6f99d05539000036" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/24219a977bfe3d658687e45615c70998acdbac5a" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/9b6b2db77bc3121fe435f1d4b56e34de443bec75" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/7d91adc0ccb060ce564103315189466eb822cc6a" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/285e9210b1fab96a11c0be3ed5cea9dd48b6ac54" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/7f221ccbee4ec662e2292d490a43ce6c314c4594" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/cc20226e218a2375d50dd9ac14fb4121b43375ff" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/1f3e2e97c003f80c4b087092b225c8787ff91e4d" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "Linux", "programFiles": [ "drivers/isdn/capi/kcapi.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThan": "e8b8de17e164", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "24219a977bfe", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "9b6b2db77bc3", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "7d91adc0ccb0", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "285e9210b1fa", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "7f221ccbee4e", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "cc20226e218a", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" }, { "lessThan": "1f3e2e97c003", "status": "affected", "version": "1da177e4c3f4", "versionType": "git" } ] }, { "defaultStatus": "affected", "product": "Linux", "programFiles": [ "drivers/isdn/capi/kcapi.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThanOrEqual": "4.4.*", "status": "unaffected", "version": "4.4.290", "versionType": "semver" }, { "lessThanOrEqual": "4.9.*", "status": "unaffected", "version": "4.9.288", "versionType": "semver" }, { "lessThanOrEqual": "4.14.*", "status": "unaffected", "version": "4.14.253", "versionType": "semver" }, { "lessThanOrEqual": "4.19.*", "status": "unaffected", "version": "4.19.214", "versionType": "semver" }, { "lessThanOrEqual": "5.4.*", "status": "unaffected", "version": "5.4.156", "versionType": "semver" }, { "lessThanOrEqual": "5.10.*", "status": "unaffected", "version": "5.10.76", "versionType": "semver" }, { "lessThanOrEqual": "5.14.*", "status": "unaffected", "version": "5.14.15", "versionType": "semver" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "5.15", "versionType": "original_commit_for_fix" } ] } ], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nisdn: cpai: check ctr-\u003ecnr to avoid array index out of bound\n\nThe cmtp_add_connection() would add a cmtp session to a controller\nand run a kernel thread to process cmtp.\n\n\t__module_get(THIS_MODULE);\n\tsession-\u003etask = kthread_run(cmtp_session, session, \"kcmtpd_ctr_%d\",\n\t\t\t\t\t\t\t\tsession-\u003enum);\n\nDuring this process, the kernel thread would call detach_capi_ctr()\nto detach a register controller. if the controller\nwas not attached yet, detach_capi_ctr() would\ntrigger an array-index-out-bounds bug.\n\n[ 46.866069][ T6479] UBSAN: array-index-out-of-bounds in\ndrivers/isdn/capi/kcapi.c:483:21\n[ 46.867196][ T6479] index -1 is out of range for type \u0027capi_ctr *[32]\u0027\n[ 46.867982][ T6479] CPU: 1 PID: 6479 Comm: kcmtpd_ctr_0 Not tainted\n5.15.0-rc2+ #8\n[ 46.869002][ T6479] Hardware name: QEMU Standard PC (i440FX + PIIX,\n1996), BIOS 1.14.0-2 04/01/2014\n[ 46.870107][ T6479] Call Trace:\n[ 46.870473][ T6479] dump_stack_lvl+0x57/0x7d\n[ 46.870974][ T6479] ubsan_epilogue+0x5/0x40\n[ 46.871458][ T6479] __ubsan_handle_out_of_bounds.cold+0x43/0x48\n[ 46.872135][ T6479] detach_capi_ctr+0x64/0xc0\n[ 46.872639][ T6479] cmtp_session+0x5c8/0x5d0\n[ 46.873131][ T6479] ? __init_waitqueue_head+0x60/0x60\n[ 46.873712][ T6479] ? cmtp_add_msgpart+0x120/0x120\n[ 46.874256][ T6479] kthread+0x147/0x170\n[ 46.874709][ T6479] ? set_kthread_struct+0x40/0x40\n[ 46.875248][ T6479] ret_from_fork+0x1f/0x30\n[ 46.875773][ T6479]" } ], "providerMetadata": { "dateUpdated": "2024-11-04T11:55:32.923Z", "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "shortName": "Linux" }, "references": [ { "url": "https://git.kernel.org/stable/c/e8b8de17e164c9f1b7777f1c6f99d05539000036" }, { "url": "https://git.kernel.org/stable/c/24219a977bfe3d658687e45615c70998acdbac5a" }, { "url": "https://git.kernel.org/stable/c/9b6b2db77bc3121fe435f1d4b56e34de443bec75" }, { "url": "https://git.kernel.org/stable/c/7d91adc0ccb060ce564103315189466eb822cc6a" }, { "url": "https://git.kernel.org/stable/c/285e9210b1fab96a11c0be3ed5cea9dd48b6ac54" }, { "url": "https://git.kernel.org/stable/c/7f221ccbee4ec662e2292d490a43ce6c314c4594" }, { "url": "https://git.kernel.org/stable/c/cc20226e218a2375d50dd9ac14fb4121b43375ff" }, { "url": "https://git.kernel.org/stable/c/1f3e2e97c003f80c4b087092b225c8787ff91e4d" } ], "title": "isdn: cpai: check ctr-\u003ecnr to avoid array index out of bound", "x_generator": { "engine": "bippy-9e1c9544281a" } } }, "cveMetadata": { "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "assignerShortName": "Linux", "cveId": "CVE-2021-4439", "datePublished": "2024-06-20T12:07:57.944Z", "dateReserved": "2024-06-20T12:07:18.155Z", "dateUpdated": "2024-11-04T11:55:32.923Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2021-4439\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-06-20T12:15:10.447\",\"lastModified\":\"2024-09-18T16:34:18.960\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nisdn: cpai: check ctr-\u003ecnr to avoid array index out of bound\\n\\nThe cmtp_add_connection() would add a cmtp session to a controller\\nand run a kernel thread to process cmtp.\\n\\n\\t__module_get(THIS_MODULE);\\n\\tsession-\u003etask = kthread_run(cmtp_session, session, \\\"kcmtpd_ctr_%d\\\",\\n\\t\\t\\t\\t\\t\\t\\t\\tsession-\u003enum);\\n\\nDuring this process, the kernel thread would call detach_capi_ctr()\\nto detach a register controller. if the controller\\nwas not attached yet, detach_capi_ctr() would\\ntrigger an array-index-out-bounds bug.\\n\\n[ 46.866069][ T6479] UBSAN: array-index-out-of-bounds in\\ndrivers/isdn/capi/kcapi.c:483:21\\n[ 46.867196][ T6479] index -1 is out of range for type \u0027capi_ctr *[32]\u0027\\n[ 46.867982][ T6479] CPU: 1 PID: 6479 Comm: kcmtpd_ctr_0 Not tainted\\n5.15.0-rc2+ #8\\n[ 46.869002][ T6479] Hardware name: QEMU Standard PC (i440FX + PIIX,\\n1996), BIOS 1.14.0-2 04/01/2014\\n[ 46.870107][ T6479] Call Trace:\\n[ 46.870473][ T6479] dump_stack_lvl+0x57/0x7d\\n[ 46.870974][ T6479] ubsan_epilogue+0x5/0x40\\n[ 46.871458][ T6479] __ubsan_handle_out_of_bounds.cold+0x43/0x48\\n[ 46.872135][ T6479] detach_capi_ctr+0x64/0xc0\\n[ 46.872639][ T6479] cmtp_session+0x5c8/0x5d0\\n[ 46.873131][ T6479] ? __init_waitqueue_head+0x60/0x60\\n[ 46.873712][ T6479] ? cmtp_add_msgpart+0x120/0x120\\n[ 46.874256][ T6479] kthread+0x147/0x170\\n[ 46.874709][ T6479] ? set_kthread_struct+0x40/0x40\\n[ 46.875248][ T6479] ret_from_fork+0x1f/0x30\\n[ 46.875773][ T6479]\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se resolvi\u00f3 la siguiente vulnerabilidad: isdn: cpai: verifique ctr-\u0026gt;cnr para evitar que el \u00edndice de matriz est\u00e9 fuera de l\u00edmite. cmtp_add_connection() agregar\u00eda una sesi\u00f3n cmtp a un controlador y ejecutar\u00eda un subproceso del kernel para procesar cmtp. __module_get(ESTE_M\u00d3DULO); sesi\u00f3n-\u0026gt;tarea = kthread_run(cmtp_session, sesi\u00f3n, \\\"kcmtpd_ctr_%d\\\", sesi\u00f3n-\u0026gt;num); Durante este proceso, el hilo del n\u00facleo llamar\u00eda a detach_capi_ctr() para desconectar un controlador de registro. Si el controlador a\u00fan no estaba conectado, detach_capi_ctr() desencadenar\u00eda un error de los l\u00edmites de \u00edndice de matriz. [ 46.866069][ T6479] UBSAN: \u00edndice de matriz fuera de los l\u00edmites en drivers/isdn/capi/kcapi.c:483:21 [ 46.867196][ T6479] el \u00edndice -1 est\u00e1 fuera de rango para el tipo \u0027capi_ctr *[ 32]\u0027 [ 46.867982][ T6479] CPU: 1 PID: 6479 Comm: kcmtpd_ctr_0 No contaminado 5.15.0-rc2+ #8 [ 46.869002][ T6479] Nombre de hardware: PC est\u00e1ndar QEMU (i440FX + PIIX, 1996), BIOS 1.14. 0-2 01/04/2014 [ 46.870107][ T6479] Seguimiento de llamadas: [ 46.870473][ T6479] dump_stack_lvl+0x57/0x7d [ 46.870974][ T6479] ubsan_epilogue+0x5/0x40 [ 46.871458][ T6479 ] __ubsan_handle_out_of_bounds.cold+0x43 /0x48 [ 46.872135][ T6479] detach_capi_ctr+0x64/0xc0 [ 46.872639][ T6479] cmtp_session+0x5c8/0x5d0 [ 46.873131][ T6479] ? __init_waitqueue_head+0x60/0x60 [ 46.873712][ T6479] ? cmtp_add_msgpart+0x120/0x120 [ 46.874256][ T6479] kthread+0x147/0x170 [ 46.874709][ T6479] ? set_kthread_struct+0x40/0x40 [ 46.875248][ T6479] ret_from_fork+0x1f/0x30 [ 46.875773][ T6479]\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\",\"baseScore\":7.8,\"baseSeverity\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.9}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-129\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionEndExcluding\":\"4.4.290\",\"matchCriteriaId\":\"C56A8089-600C-4D13-B0BD-0B3B87CAAAEC\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.5\",\"versionEndExcluding\":\"4.9.288\",\"matchCriteriaId\":\"F99C0BFE-2803-4525-BA2B-EA4F42F8CADE\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.10\",\"versionEndExcluding\":\"4.14.253\",\"matchCriteriaId\":\"1830428A-CB40-4E7F-A4F9-177A0B9614D2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.15\",\"versionEndExcluding\":\"4.19.214\",\"matchCriteriaId\":\"8491C8F9-93D0-4314-BD59-65E3038494EA\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.20\",\"versionEndExcluding\":\"5.4.156\",\"matchCriteriaId\":\"03015A9C-56AA-4210-9491-CF2FB0F45B9A\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.5\",\"versionEndExcluding\":\"5.10.76\",\"matchCriteriaId\":\"E61528CE-9083-425B-AE36-3791232BF780\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.11\",\"versionEndExcluding\":\"5.14.15\",\"matchCriteriaId\":\"63BD46C4-473F-45F9-93E9-F67D955321D8\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.15:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"E46C74C6-B76B-4C94-A6A4-FD2FFF62D644\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.15:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"60134C3A-06E4-48C1-B04F-2903732A4E56\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.15:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"0460DA88-8FE1-46A2-9DDA-1F1ABA552E71\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.15:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"AF55383D-4DF2-45DC-93F7-571F4F978EAB\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:5.15:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"9E9481B2-8AA6-4CBD-B5D3-C10F51FF6D01\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/1f3e2e97c003f80c4b087092b225c8787ff91e4d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/24219a977bfe3d658687e45615c70998acdbac5a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/285e9210b1fab96a11c0be3ed5cea9dd48b6ac54\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/7d91adc0ccb060ce564103315189466eb822cc6a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/7f221ccbee4ec662e2292d490a43ce6c314c4594\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/9b6b2db77bc3121fe435f1d4b56e34de443bec75\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/cc20226e218a2375d50dd9ac14fb4121b43375ff\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/e8b8de17e164c9f1b7777f1c6f99d05539000036\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}" } }
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.