PT-2026-90203 · Linux · Linux
CVE-2026-89487
·
Publicado
2026-09-11
·
Atualizado
2026-09-11
Nenhuma
Não há classificações de severidade ou métricas disponíveis. Quando houver, atualizaremos as informações correspondentes na página.
In the Linux kernel, the following vulnerability has been resolved:
openvswitch: only skb tx error() a packet we are about to drop
queue userspace packet() borrows the packet skb -- it only copies it into
a private netlink message (user skb) and does not own it; on return
do execute actions() keeps forwarding it through the flow's remaining
actions. Its error path nevertheless calls skb tx error(skb), which via
skb zcopy clear() does skb shinfo(skb)->flags &= ~SKBFL ALL ZEROCOPY,
stripping SKBFL SHARED FRAG from that live skb (skb tx error()'s kerneldoc
says "skb must be freed afterwards").
For a MSG ZEROCOPY skb carrying page-cache frags, SKBFL SHARED FRAG is
what makes esp input() skb cow data() before in-place AEAD; once it is
stripped a later local ESP-in-UDP delivery decrypts in place over pages
the sender does not own -- an unprivileged page-cache write (the
"Fragnesia" primitive).
do execute actions() ignores output userspace()'s return value, so any
action after a failed USERSPACE upcall inherits the stripped skb.
Move the skb tx error() to the flow-miss drop path - the "default"
branch of ovs dp process packet()'s switch(error), before kfree skb().
The call has been here since commit 36d5fe6a0007 ("core, nfqueue,
openvswitch: Orphan frags in skb zerocopy and handle errors") but was
harmless until esp input() began relying on SKBFL SHARED FRAG to gate
in-place decrypt; only then did stripping it on a still-forwarded skb
become a page-cache write primitive.
Encontrou algum problema na descrição? Tem algo a acrescentar? Fique à vontade para nos escrever 👾
Identificadores relacionados
Produtos afetados
Linux