Revision 9a564bccb78a76740ea9d75a259942df8143d02c authored by Haimin Zhang on 08 March 2022, 03:20:28 UTC, committed by Steffen Klassert on 10 March 2022, 06:39:47 UTC
Add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register
to initialize the buffer of supp_skb to fix a kernel-info-leak issue.
1) Function pfkey_register calls compose_sadb_supported to request
a sk_buff. 2) compose_sadb_supported calls alloc_sbk to allocate
a sk_buff, but it doesn't zero it. 3) If auth_len is greater 0, then
compose_sadb_supported treats the memory as a struct sadb_supported and
begins to initialize. But it just initializes the field sadb_supported_len
and field sadb_supported_exttype without field sadb_supported_reserved.

Reported-by: TCS Robot <tcs_robot@tencent.com>
Signed-off-by: Haimin Zhang <tcs_kernel@tencent.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
1 parent 5f14747
History
File Mode Size
Kconfig -rw-r--r-- 6.2 KB
Makefile -rw-r--r-- 598 bytes
uio.c -rw-r--r-- 22.9 KB
uio_aec.c -rw-r--r-- 3.4 KB
uio_cif.c -rw-r--r-- 3.2 KB
uio_dfl.c -rw-r--r-- 1.5 KB
uio_dmem_genirq.c -rw-r--r-- 9.2 KB
uio_fsl_elbc_gpcm.c -rw-r--r-- 11.9 KB
uio_hv_generic.c -rw-r--r-- 10.3 KB
uio_mf624.c -rw-r--r-- 5.2 KB
uio_netx.c -rw-r--r-- 4.3 KB
uio_pci_generic.c -rw-r--r-- 4.1 KB
uio_pdrv_genirq.c -rw-r--r-- 8.0 KB
uio_pruss.c -rw-r--r-- 6.8 KB
uio_sercos3.c -rw-r--r-- 6.1 KB

back to top