From: Martin Schiller <ms@dev.tdt.de>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: "Andrew Hendry" <andrew.hendry@gmail.com>,
"kiyin(尹亮)" <kiyin@tencent.com>,
security@kernel.org, linux-distros@vs.openwall.org,
"huntchen(陈阳)" <huntchen@tencent.com>,
"dannywang(王宇)" <dannywang@tencent.com>,
"David S. Miller" <davem@davemloft.net>,
"Jakub Kicinski" <kuba@kernel.org>,
linux-x25@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [PATCH net] net/x25: prevent a couple of overflows
Date: Tue, 01 Dec 2020 07:50:34 +0100 [thread overview]
Message-ID: <ecf3321f20cc4f6dcf02b5b73105da58@dev.tdt.de> (raw)
In-Reply-To: <20201130100425.GB2789@kadam>
On 2020-11-30 11:04, Dan Carpenter wrote:
> From: "kiyin(尹亮)" <kiyin@tencent.com>
>
> The .x25_addr[] address comes from the user and is not necessarily
> NUL terminated. This leads to a couple problems. The first problem is
> that the strlen() in x25_bind() can read beyond the end of the buffer.
>
> The second problem is more subtle and could result in memory
> corruption.
> The call tree is:
> x25_connect()
> --> x25_write_internal()
> --> x25_addr_aton()
>
> The .x25_addr[] buffers are copied to the "addresses" buffer from
> x25_write_internal() so it will lead to stack corruption.
>
> The x25 protocol only allows 15 character addresses so putting a NUL
> terminator as the 16th character is safe and obviously preferable to
> reading out of bounds.
>
OK, I see the potential danger. I'm just wondering what is the better
approach here to counteract it:
1. check if the string is terminated or exceeds the maximum allowed
length and report an error if necessary.
2. always terminate the string at byte 15 as you suggested.
> Signed-off-by: "kiyin(尹亮)" <kiyin@tencent.com>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>
> net/x25/af_x25.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c
> index 0bbb283f23c9..3180f15942fe 100644
> --- a/net/x25/af_x25.c
> +++ b/net/x25/af_x25.c
> @@ -686,6 +686,8 @@ static int x25_bind(struct socket *sock, struct
> sockaddr *uaddr, int addr_len)
> goto out;
> }
>
> + addr->sx25_addr.x25_addr[X25_ADDR_LEN - 1] = '\0';
> +
> /* check for the null_x25_address */
> if (strcmp(addr->sx25_addr.x25_addr, null_x25_address.x25_addr)) {
>
> @@ -779,6 +781,7 @@ static int x25_connect(struct socket *sock, struct
> sockaddr *uaddr,
> goto out;
>
> rc = -ENETUNREACH;
> + addr->sx25_addr.x25_addr[X25_ADDR_LEN - 1] = '\0';
> rt = x25_get_route(&addr->sx25_addr);
> if (!rt)
> goto out;
next prev parent reply other threads:[~2020-12-01 6:50 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <61d3e7e75f704996bf312ef5d271bcea@tencent.com>
2020-11-30 10:04 ` [PATCH net] net/x25: prevent a couple of overflows Dan Carpenter
2020-12-01 6:50 ` Martin Schiller [this message]
2020-12-01 15:15 ` [PATCH net v2] " Dan Carpenter
2020-12-02 7:43 ` [PATCH net v2] net/x25: prevent a couple of overflows(Internet mail) kiyin(尹亮)
2020-12-02 9:27 ` [PATCH net v2] net/x25: prevent a couple of overflows Martin Schiller
2020-12-03 1:27 ` Jakub Kicinski
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=ecf3321f20cc4f6dcf02b5b73105da58@dev.tdt.de \
--to=ms@dev.tdt.de \
--cc=andrew.hendry@gmail.com \
--cc=dan.carpenter@oracle.com \
--cc=dannywang@tencent.com \
--cc=davem@davemloft.net \
--cc=huntchen@tencent.com \
--cc=kiyin@tencent.com \
--cc=kuba@kernel.org \
--cc=linux-distros@vs.openwall.org \
--cc=linux-x25@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=security@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox