From: patchwork-bot+netdevbpf@kernel.org
To: Bui Quang Minh <minhquangbui99@gmail.com>
Cc: sbhatta@marvell.com, linux-kernel@vger.kernel.org,
James.Bottomley@HansenPartnership.com, edumazet@google.com,
anthony.l.nguyen@intel.com, vneethv@linux.ibm.com,
linux-scsi@vger.kernel.org, saurav.kashyap@cavium.com,
agordeev@linux.ibm.com, lcherian@marvell.com,
linux-s390@vger.kernel.org, sudarsana.kalluru@qlogic.com,
przemyslaw.kitszel@intel.com, intel-wired-lan@lists.osuosl.org,
paul.m.stillwell.jr@intel.com, kuba@kernel.org,
pabeni@redhat.com, sgoutham@marvell.com,
borntraeger@linux.ibm.com, gor@linux.ibm.com, gakula@marvell.com,
arun.easi@cavium.com, hca@linux.ibm.com, fabf@skynet.be,
manish.rangankar@cavium.com, axboe@kernel.dk,
nilesh.javali@cavium.com, GR-Linux-NIC-Dev@marvell.com,
martin.petersen@oracle.com, skashyap@marvell.com,
rmody@marvell.com, netdev@vger.kernel.org,
anil.gurumurthy@qlogic.com, oberpar@linux.ibm.com,
davem@davemloft.net, GR-QLogic-Storage-Upstream@marvell.com,
hkelam@marvell.com, svens@linux.ibm.com, jerinj@marvell.com,
skalluru@marvell.com
Subject: Re: [Intel-wired-lan] [PATCH v2 0/6] Ensure the copied buf is NUL terminated
Date: Fri, 26 Apr 2024 02:30:28 +0000 [thread overview]
Message-ID: <171409862809.13456.12723948130853178022.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20240424-fix-oob-read-v2-0-f1f1b53a10f4@gmail.com>
Hello:
This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 24 Apr 2024 21:44:17 +0700 you wrote:
> Hi everyone,
>
> I found that some drivers contains an out-of-bound read pattern like this
>
> kern_buf = memdup_user(user_buf, count);
> ...
> sscanf(kern_buf, ...);
>
> [...]
Here is the summary with links:
- [v2,1/6] ice: ensure the copied buf is NUL terminated
https://git.kernel.org/netdev/net/c/666854ea9cad
- [v2,2/6] bna: ensure the copied buf is NUL terminated
https://git.kernel.org/netdev/net/c/8c34096c7fdf
- [v2,3/6] bfa: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,4/6] qedf: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,5/6] cio: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,6/6] octeontx2-af: avoid off-by-one read from userspace
https://git.kernel.org/netdev/net/c/f299ee709fb4
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
WARNING: multiple messages have this Message-ID (diff)
From: patchwork-bot+netdevbpf@kernel.org
To: Bui Quang Minh <minhquangbui99@gmail.com>
Cc: jesse.brandeburg@intel.com, anthony.l.nguyen@intel.com,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, paul.m.stillwell.jr@intel.com,
rmody@marvell.com, skalluru@marvell.com,
GR-Linux-NIC-Dev@marvell.com, anil.gurumurthy@qlogic.com,
sudarsana.kalluru@qlogic.com,
James.Bottomley@HansenPartnership.com,
martin.petersen@oracle.com, fabf@skynet.be, skashyap@marvell.com,
GR-QLogic-Storage-Upstream@marvell.com, nilesh.javali@cavium.com,
arun.easi@cavium.com, manish.rangankar@cavium.com,
vneethv@linux.ibm.com, oberpar@linux.ibm.com, hca@linux.ibm.com,
gor@linux.ibm.com, agordeev@linux.ibm.com,
borntraeger@linux.ibm.com, svens@linux.ibm.com,
sgoutham@marvell.com, lcherian@marvell.com, gakula@marvell.com,
jerinj@marvell.com, hkelam@marvell.com, sbhatta@marvell.com,
intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org,
saurav.kashyap@cavium.com, linux-s390@vger.kernel.org,
axboe@kernel.dk, przemyslaw.kitszel@intel.com
Subject: Re: [PATCH v2 0/6] Ensure the copied buf is NUL terminated
Date: Fri, 26 Apr 2024 02:30:28 +0000 [thread overview]
Message-ID: <171409862809.13456.12723948130853178022.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20240424-fix-oob-read-v2-0-f1f1b53a10f4@gmail.com>
Hello:
This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 24 Apr 2024 21:44:17 +0700 you wrote:
> Hi everyone,
>
> I found that some drivers contains an out-of-bound read pattern like this
>
> kern_buf = memdup_user(user_buf, count);
> ...
> sscanf(kern_buf, ...);
>
> [...]
Here is the summary with links:
- [v2,1/6] ice: ensure the copied buf is NUL terminated
https://git.kernel.org/netdev/net/c/666854ea9cad
- [v2,2/6] bna: ensure the copied buf is NUL terminated
https://git.kernel.org/netdev/net/c/8c34096c7fdf
- [v2,3/6] bfa: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,4/6] qedf: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,5/6] cio: ensure the copied buf is NUL terminated
(no matching commit)
- [v2,6/6] octeontx2-af: avoid off-by-one read from userspace
https://git.kernel.org/netdev/net/c/f299ee709fb4
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2024-04-26 2:30 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-24 14:44 [Intel-wired-lan] [PATCH v2 0/6] Ensure the copied buf is NUL terminated Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 1/6] ice: ensure " Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 2/6] bna: " Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 3/6] bfa: " Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-05-07 1:19 ` [Intel-wired-lan] " Martin K. Petersen
2024-05-07 1:19 ` Martin K. Petersen
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 4/6] qedf: " Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-05-07 1:20 ` [Intel-wired-lan] " Martin K. Petersen
2024-05-07 1:20 ` Martin K. Petersen
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 5/6] cio: " Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-04-24 14:54 ` [Intel-wired-lan] " Heiko Carstens
2024-04-24 14:54 ` Heiko Carstens
2024-04-24 15:16 ` [Intel-wired-lan] " Alexander Gordeev
2024-04-24 15:16 ` Alexander Gordeev
2024-04-26 10:10 ` [Intel-wired-lan] " Alexander Gordeev
2024-04-26 10:10 ` Alexander Gordeev
2024-04-26 14:29 ` [Intel-wired-lan] " Jakub Kicinski
2024-04-26 14:29 ` Jakub Kicinski
2024-04-24 14:44 ` [Intel-wired-lan] [PATCH v2 6/6] octeontx2-af: avoid off-by-one read from userspace Bui Quang Minh
2024-04-24 14:44 ` Bui Quang Minh
2024-04-26 2:30 ` patchwork-bot+netdevbpf [this message]
2024-04-26 2:30 ` [PATCH v2 0/6] Ensure the copied buf is NUL terminated patchwork-bot+netdevbpf
2024-05-11 18:39 ` [Intel-wired-lan] " Martin K. Petersen
2024-05-11 18:39 ` Martin K. Petersen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=171409862809.13456.12723948130853178022.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=GR-Linux-NIC-Dev@marvell.com \
--cc=GR-QLogic-Storage-Upstream@marvell.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=agordeev@linux.ibm.com \
--cc=anil.gurumurthy@qlogic.com \
--cc=anthony.l.nguyen@intel.com \
--cc=arun.easi@cavium.com \
--cc=axboe@kernel.dk \
--cc=borntraeger@linux.ibm.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fabf@skynet.be \
--cc=gakula@marvell.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=hkelam@marvell.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=jerinj@marvell.com \
--cc=kuba@kernel.org \
--cc=lcherian@marvell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=manish.rangankar@cavium.com \
--cc=martin.petersen@oracle.com \
--cc=minhquangbui99@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=nilesh.javali@cavium.com \
--cc=oberpar@linux.ibm.com \
--cc=pabeni@redhat.com \
--cc=paul.m.stillwell.jr@intel.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=rmody@marvell.com \
--cc=saurav.kashyap@cavium.com \
--cc=sbhatta@marvell.com \
--cc=sgoutham@marvell.com \
--cc=skalluru@marvell.com \
--cc=skashyap@marvell.com \
--cc=sudarsana.kalluru@qlogic.com \
--cc=svens@linux.ibm.com \
--cc=vneethv@linux.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.