From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Ilia Kashintsev <ilia.kashintsev@gmail.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: Null dereference in ebtables-restore.c
Date: Sat, 20 Dec 2025 22:06:50 +0100 [thread overview]
Message-ID: <aUcP6vw_zdSbmWFs@chamomile> (raw)
In-Reply-To: <CAF6ebR7PoBEpheSSjsSZqxUJh3yPeh1KjGTuGWsG0KwbuhJKMQ@mail.gmail.com>
Hi,
If you want to contribute to this project, you have to send us patches
in git-format-patch.
Thanks.
On Thu, Dec 18, 2025 at 04:17:39PM +0300, Ilia Kashintsev wrote:
> Suggested fix:
>
> Check strchr() result before trying to dereference it.
>
> diff --git a/ebtables-restore.c b/ebtables-restore.c
> index bb4d0cf..c97364b 100644
> --- a/ebtables-restore.c
> +++ b/ebtables-restore.c
> @@ -76,7 +76,9 @@ int main(int argc_, char *argv_[])
> line++;
> if (*cmdline == '#' || *cmdline == '\n')
> continue;
> - *strchr(cmdline, '\n') = '\0';
> + char *new_line = strchr(cmdline, '\n');
> + if (new_line)
> + *new_line = '\0';
> if (*cmdline == '*') {
> if (table_nr != -1) {
> ebt_deliver_table(&replace[table_nr]);
>
prev parent reply other threads:[~2025-12-20 21:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-18 13:17 Null dereference in ebtables-restore.c Ilia Kashintsev
2025-12-18 13:53 ` Phil Sutter
2025-12-20 21:06 ` Pablo Neira Ayuso [this message]
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=aUcP6vw_zdSbmWFs@chamomile \
--to=pablo@netfilter.org \
--cc=ilia.kashintsev@gmail.com \
--cc=netfilter-devel@vger.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 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.