Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1393796
| From | Kangjie Lu <kangjielu@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] fix infoleak in llc |
| Date | 2016-05-03 22:40 +0200 |
| Message-ID | <ruPgS-6BH-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The stack object “info” has a total size of 12 bytes. Its last byte
is padding which is not initialized and leaked via “put_cmsg”.
Signed-off-by: Kangjie Lu <kjlu@gatech.edu>
---
net/llc/af_llc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c
index b3c52e3..8ae3ed9 100644
--- a/net/llc/af_llc.c
+++ b/net/llc/af_llc.c
@@ -626,6 +626,7 @@ static void llc_cmsg_rcv(struct msghdr *msg, struct sk_buff *skb)
if (llc->cmsg_flags & LLC_CMSG_PKTINFO) {
struct llc_pktinfo info;
+ memset(&info, 0, sizeof(info));
info.lpi_ifindex = llc_sk(skb->sk)->dev->ifindex;
llc_pdu_decode_dsap(skb, &info.lpi_sap);
llc_pdu_decode_da(skb, info.lpi_mac);
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] fix infoleak in llc Kangjie Lu <kangjielu@gmail.com> - 2016-05-03 22:40 +0200 Re: [PATCH] fix infoleak in llc David Miller <davem@davemloft.net> - 2016-05-04 22:30 +0200
csiph-web