From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blpV9-0001C9-DR for qemu-devel@nongnu.org; Sun, 18 Sep 2016 23:44:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blpV8-0000DJ-6U for qemu-devel@nongnu.org; Sun, 18 Sep 2016 23:44:15 -0400 Date: Sun, 18 Sep 2016 23:44:04 -0400 From: Jeff Cody Message-ID: <20160919034404.GJ32304@localhost.localdomain> References: <1474172732-31994-1-git-send-email-famz@redhat.com> <1474172732-31994-11-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1474172732-31994-11-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v8 10/12] uuid: Tighten uuid parse List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, kwolf@redhat.com, qemu-block@nongnu.org, sw@weilnetz.de, mdroth@linux.vnet.ibm.com, armbru@redhat.com, pbonzini@redhat.com, mreitz@redhat.com, rth@twiddle.net On Sun, Sep 18, 2016 at 12:25:30PM +0800, Fam Zheng wrote: > sscanf is relatively loose (tolerate) on some invalid formats that we > should fail instead of generating a wrong uuid structure, like with > whitespaces and short strings. > > Add and use a helper function to first check the format. > > Signed-off-by: Fam Zheng > --- > util/uuid.c | 24 +++++++++++++++++++++++- > 1 file changed, 23 insertions(+), 1 deletion(-) > > diff --git a/util/uuid.c b/util/uuid.c > index 4701903..dd6b5fd 100644 > --- a/util/uuid.c > +++ b/util/uuid.c > @@ -61,12 +61,34 @@ char *qemu_uuid_unparse_strdup(const QemuUUID *uuid) > uu[13], uu[14], uu[15]); > } > > +static bool qemu_uuid_is_valid(const char *str) > +{ > + int i; > + > + for (i = 0; i < strlen(str); i++) { > + const char c = str[i]; > + if (i == 8 || i == 13 || i == 18 || i == 23) { > + if (str[i] != '-') { > + return false; > + } > + } else { > + if ((c >= '0' && c <= '9') || > + (c >= 'A' && c <= 'F') || > + (c >= 'a' && c <= 'f')) { > + continue; > + } > + return false; > + } > + } > + return i == 36; > +} > + Doesn't verify variant / version, but it is a lot better than what was before. Reviewed-by: Jeff Cody > int qemu_uuid_parse(const char *str, QemuUUID *uuid) > { > unsigned char *uu = &uuid->data[0]; > int ret; > > - if (strlen(str) != 36) { > + if (!qemu_uuid_is_valid(str)) { > return -1; > } > > -- > 2.7.4 > >