{
  "affected": [
    {
      "ranges": [
        {
          "events": [
            {
              "introduced": "6fa45a22689722dac9f0e90c0931d4b34b334ede"
            },
            {
              "fixed": "f3378b0d7bd4605de89b083b2900788157a181cc"
            },
            {
              "fixed": "290f515c5e3b3900bc2fe24f179999fd08d23bfa"
            },
            {
              "fixed": "d16548be2ea5058227d79799e81dab61c9bca8ec"
            },
            {
              "fixed": "15b1723c1472e802f9f7e69ae4e64f7dbf588848"
            },
            {
              "fixed": "51026cff1f4f3b762a0b5a07c727bd59cef45320"
            },
            {
              "fixed": "74d6aae1df45d3414178986be743f946988fddf6"
            },
            {
              "fixed": "a1e81b58da0179531bedf0b9f2811f5f992d5c4b"
            },
            {
              "fixed": "ef15ccbb3e8640a723c42ad90eaf81d66ae02017"
            }
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "type": "GIT"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Linux",
        "name": "Kernel"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "4.2.0"
            },
            {
              "fixed": "5.10.259"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "5.11.0"
            },
            {
              "fixed": "5.15.210"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "5.16.0"
            },
            {
              "fixed": "6.1.176"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.2.0"
            },
            {
              "fixed": "6.6.143"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.7.0"
            },
            {
              "fixed": "6.12.93"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.13.0"
            },
            {
              "fixed": "6.18.35"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.19.0"
            },
            {
              "fixed": "7.0.12"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "database_specific": {
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/63xxx/CVE-2026-63942.json"
  },
  "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nparport: Fix race between port and client registration\n\nThe parport subsystem registers port devices before they are fully\ninitialised, resulting in a race condition where client drivers such\nas lp can attach to ports that are not completely initialised or even\nbeing torn down.\n\nWhen the port and client drivers are built as modules and loaded\naround the same time during boot, this occasionally results in a\ncrash.  I was able to make this happen reliably in a VM with a\nPC-style parallel port by patching parport_pc to fail probing:\n\n\u003e --- a/drivers/parport/parport_pc.c\n\u003e +++ b/drivers/parport/parport_pc.c\n\u003e @@ -2069,7 +2069,7 @@ static struct parport *__parport_pc_probe_port(unsigned long int base,\n\u003e  \tif (!p)\n\u003e  \t\tgoto out3;\n\u003e\n\u003e -\tbase_res = request_region(base, 3, p-\u003ename);\n\u003e +\tbase_res = NULL;\n\u003e  \tif (!base_res)\n\u003e  \t\tgoto out4;\n\u003e\n\nand then running:\n\n    while true; do\n        modprobe lp \u0026 modprobe parport_pc\n\twait\n\trmmod lp parport_pc\n    done\n\nfor a few seconds.\n\nIn the long term I think port registration should be changed to put\nthe call to device_add() inside parport_announce_port(), but since the\nlatter currently cannot fail this will require changing all port\ndrivers.\n\nFor now, add a flag to indicate whether a port has been \"announced\"\nand only try to attach client drivers to ports when the flag is set.",
  "id": "CVE-2026-63942",
  "modified": "2026-07-22T05:29:37.113641288Z",
  "published": "2026-07-19T14:55:37.717Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/15b1723c1472e802f9f7e69ae4e64f7dbf588848"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/290f515c5e3b3900bc2fe24f179999fd08d23bfa"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/51026cff1f4f3b762a0b5a07c727bd59cef45320"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/74d6aae1df45d3414178986be743f946988fddf6"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/a1e81b58da0179531bedf0b9f2811f5f992d5c4b"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/d16548be2ea5058227d79799e81dab61c9bca8ec"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/ef15ccbb3e8640a723c42ad90eaf81d66ae02017"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/f3378b0d7bd4605de89b083b2900788157a181cc"
    },
    {
      "type": "ADVISORY",
      "url": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/63xxx/CVE-2026-63942.json"
    },
    {
      "type": "ADVISORY",
      "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63942"
    },
    {
      "type": "PACKAGE",
      "url": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"
    }
  ],
  "schema_version": "1.8.0",
  "severity": [
    {
      "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
      "type": "CVSS_V3"
    }
  ],
  "summary": "parport: Fix race between port and client registration"
}