From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 1/5] qemu-bridge-helper: Fix misuse of isspace()
Date: Wed, 22 May 2019 15:47:22 +0200 [thread overview]
Message-ID: <20190522134726.19225-2-armbru@redhat.com> (raw)
In-Reply-To: <20190522134726.19225-1-armbru@redhat.com>
parse_acl_file() passes char values to isspace(). Undefined behavior
when the value is negative. Not a security issue, because the
characters come from trusted $prefix/etc/qemu/bridge.conf and the
files it includes.
Furthermore, isspace()'s locale-dependence means qemu-bridge-helper
uses the user's locale for parsing $prefix/etc/bridge.conf. Feels
wrong.
Use g_ascii_isspace() instead. This fixes the undefined behavior, and
makes parsing of $prefix/etc/bridge.conf locale-independent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190514180311.16028-2-armbru@redhat.com>
---
qemu-bridge-helper.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/qemu-bridge-helper.c b/qemu-bridge-helper.c
index 5396fbfbb6..f9940deefd 100644
--- a/qemu-bridge-helper.c
+++ b/qemu-bridge-helper.c
@@ -75,7 +75,7 @@ static int parse_acl_file(const char *filename, ACLList *acl_list)
char *ptr = line;
char *cmd, *arg, *argend;
- while (isspace(*ptr)) {
+ while (g_ascii_isspace(*ptr)) {
ptr++;
}
@@ -99,12 +99,12 @@ static int parse_acl_file(const char *filename, ACLList *acl_list)
*arg = 0;
arg++;
- while (isspace(*arg)) {
+ while (g_ascii_isspace(*arg)) {
arg++;
}
argend = arg + strlen(arg);
- while (arg != argend && isspace(*(argend - 1))) {
+ while (arg != argend && g_ascii_isspace(*(argend - 1))) {
argend--;
}
*argend = 0;
--
2.17.2
next prev parent reply other threads:[~2019-05-22 13:49 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-22 13:47 [Qemu-devel] [PULL 0/5] Miscellaneous patches for 2019-05-22 Markus Armbruster
2019-05-22 13:47 ` Markus Armbruster [this message]
2019-05-30 11:06 ` [Qemu-devel] [PULL 1/5] qemu-bridge-helper: Fix misuse of isspace() Peter Maydell
2019-05-22 13:47 ` [Qemu-devel] [PULL 2/5] tests/vhost-user-bridge: Fix misuse of isdigit() Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 3/5] gdbstub: Reject invalid RLE repeat counts Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 4/5] gdbstub: Fix misuse of isxdigit() Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 5/5] cutils: Simplify how parse_uint() checks for whitespace Markus Armbruster
2019-05-23 11:00 ` [Qemu-devel] [PULL 0/5] Miscellaneous patches for 2019-05-22 Peter Maydell
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=20190522134726.19225-2-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).