Answer in brief
CVE-2026-63836 records a Unknown severity vulnerability in batman-adv: tp_meter: avoid divide-by-zero for dec_cwnd. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
Answer in brief
CVE-2026-63836 records a Unknown severity vulnerability in batman-adv: tp_meter: avoid divide-by-zero for dec_cwnd. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <35264c4d46067d6312871488c810cef387f8c1f6 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <1381b021bf886b793fa5ffb895a8efae7ba0318f || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <d08b69da40a101df1e28bfe1e8fa7a09ffa41107 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <cd74176cf1685f35a2e5f212d15748bbfecb53b6 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <ac229c86e49fdb96d91f51bc2fa37a9c4f58c44f || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <7d2a44bc6bbe39aed03c68864aa0e54e04a50278 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <585616dab0aa9c45bc11b2c8082ca78533bc00e9 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <33ccd52f3cc9ed46ce395199f89aa3234dc83314 | 35264c4d46067d6312871488c810cef387f8c1f6, 1381b021bf886b793fa5ffb895a8efae7ba0318f, d08b69da40a101df1e28bfe1e8fa7a09ffa41107, cd74176cf1685f35a2e5f212d15748bbfecb53b6, ac229c86e49fdb96d91f51bc2fa37a9c4f58c44f, 7d2a44bc6bbe39aed03c68864aa0e54e04a50278, 585616dab0aa9c45bc11b2c8082ca78533bc00e9, 33ccd52f3cc9ed46ce395199f89aa3234dc83314 |
| Linux/Linuxgeneric | 4.8 | Not reported |
Published upstream
Jul 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 17, 2026
In the Linux kernel, the following vulnerability has been resolved: batman-adv: tp_meter: avoid divide-by-zero for dec_cwnd The cwnd is always MSS <= cwnd <= 0x20000000. But the calculation in batadv_tp_update_cwnd() assumes unsigned 32 bit arithmetics. ((mss * 8) ** 2) / (cwnd * 8) In case cwnd is actually 0x20000000, it will be shifted by 3 bit to the left end up at 0x100000000 or U32_MAX + 1. It will therefore wrap around and be 0 - resulting in: ((mss * 8) ** 2) / 0 This is of course invalid and cannot be calculated. The calculation should must be simplified to avoid this overflow: (mss ** 2) * 8 / cwnd It will keep the precision enhancement from the scaling (by 8) but avoid the overflow in the divisor. In theory, there could still be an overflow in the dividend. It is at the moment fixed to BATADV_TP_PLEN in batadv_tp_recv_ack() - so it is not an imminent problem. But allowing it to use the whole u32 bit range, would mean that it can still use up to 67 bits. To keep this calculation safe for 32 bit arithmetic, mss must never use more than floor((32 - 3) / 2) bits - or in other words: must never be larger than 16383.
Quoted source text, attributed separately from HOL analysis.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <35264c4d46067d6312871488c810cef387f8c1f6 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <1381b021bf886b793fa5ffb895a8efae7ba0318f || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <d08b69da40a101df1e28bfe1e8fa7a09ffa41107 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <cd74176cf1685f35a2e5f212d15748bbfecb53b6 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <ac229c86e49fdb96d91f51bc2fa37a9c4f58c44f || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <7d2a44bc6bbe39aed03c68864aa0e54e04a50278 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <585616dab0aa9c45bc11b2c8082ca78533bc00e9 || >=33a3bb4a3345bb511f9c69c913da95d4693e2a4e <33ccd52f3cc9ed46ce395199f89aa3234dc83314 | 35264c4d46067d6312871488c810cef387f8c1f6, 1381b021bf886b793fa5ffb895a8efae7ba0318f, d08b69da40a101df1e28bfe1e8fa7a09ffa41107, cd74176cf1685f35a2e5f212d15748bbfecb53b6, ac229c86e49fdb96d91f51bc2fa37a9c4f58c44f, 7d2a44bc6bbe39aed03c68864aa0e54e04a50278, 585616dab0aa9c45bc11b2c8082ca78533bc00e9, 33ccd52f3cc9ed46ce395199f89aa3234dc83314 |
| Linux/Linuxgeneric | 4.8 | Not reported |
Published upstream
Jul 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 17, 2026
In the Linux kernel, the following vulnerability has been resolved: batman-adv: tp_meter: avoid divide-by-zero for dec_cwnd The cwnd is always MSS <= cwnd <= 0x20000000. But the calculation in batadv_tp_update_cwnd() assumes unsigned 32 bit arithmetics. ((mss * 8) ** 2) / (cwnd * 8) In case cwnd is actually 0x20000000, it will be shifted by 3 bit to the left end up at 0x100000000 or U32_MAX + 1. It will therefore wrap around and be 0 - resulting in: ((mss * 8) ** 2) / 0 This is of course invalid and cannot be calculated. The calculation should must be simplified to avoid this overflow: (mss ** 2) * 8 / cwnd It will keep the precision enhancement from the scaling (by 8) but avoid the overflow in the divisor. In theory, there could still be an overflow in the dividend. It is at the moment fixed to BATADV_TP_PLEN in batadv_tp_recv_ack() - so it is not an imminent problem. But allowing it to use the whole u32 bit range, would mean that it can still use up to 67 bits. To keep this calculation safe for 32 bit arithmetic, mss must never use more than floor((32 - 3) / 2) bits - or in other words: must never be larger than 16383.
Quoted source text, attributed separately from HOL analysis.