mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 16:06:16 +07:00
pfkey: fix SADB_X_EXT_FILTER length check
This patch fixes commit d3623099d3
("ipsec: add support of limited SA dump").
sadb_ext_min_len array should be updated with the new type (SADB_X_EXT_FILTER).
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
1a1ccc96ab
commit
d2c5f65825
@ -365,6 +365,7 @@ static const u8 sadb_ext_min_len[] = {
|
||||
[SADB_X_EXT_NAT_T_OA] = (u8) sizeof(struct sadb_address),
|
||||
[SADB_X_EXT_SEC_CTX] = (u8) sizeof(struct sadb_x_sec_ctx),
|
||||
[SADB_X_EXT_KMADDRESS] = (u8) sizeof(struct sadb_x_kmaddress),
|
||||
[SADB_X_EXT_FILTER] = (u8) sizeof(struct sadb_x_filter),
|
||||
};
|
||||
|
||||
/* Verify sadb_address_{len,prefixlen} against sa_family. */
|
||||
|
Loading…
Reference in New Issue
Block a user