From nobody Thu May 16 19:18:17 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1556903280; cv=none; d=zoho.com; s=zohoarc; b=IuRZEKI9pb13VqUvxxb7j433XfJQfoDXbnkPxRxf9CQnxMtuGlfak7lr+i8SEWOKxHtyZ7ckSbu4QlClRbp54+F0xnGbYQxY1QOMf1B8u3Xt8QGrLCb8hexmm8kkzS9d7UILOxyz5dc2HIC8MvKzBNTkVaT80fIJziodza7zpNI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1556903280; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=hPSpf/Sr992F9IIrxTl7WK7iZnVGXDzYgE1/yO25+Gc=; b=Yq9QckjHM3R25L10I0Dl954MvEVqaunGN7XxMP5vI0HpxaHfh1LHSLGshwJa/G3PeYQoLM+XBmvtCF8LQB46fQpU7PblxZf4N0k5zAqid/yXQpFM1cw9hkVQYwvxTUNNxzQN6WoRaowTag141pJ6DuSHubIHgx/jDczuLC9EXvA= ARC-Authentication-Results: i=1; mx.zoho.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1556903280758208.48274116992445; Fri, 3 May 2019 10:08:00 -0700 (PDT) Received: from localhost ([127.0.0.1]:44781 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMbex-0000uZ-KY for importer@patchew.org; Fri, 03 May 2019 13:07:43 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMbdt-0000UG-BW for qemu-devel@nongnu.org; Fri, 03 May 2019 13:06:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMbds-0000ww-AD for qemu-devel@nongnu.org; Fri, 03 May 2019 13:06:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59786) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hMbds-0000vt-54 for qemu-devel@nongnu.org; Fri, 03 May 2019 13:06:36 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E302F3091749; Fri, 3 May 2019 17:06:34 +0000 (UTC) Received: from steredhat.redhat.com (unknown [10.36.118.31]) by smtp.corp.redhat.com (Postfix) with ESMTP id E21F419C4F; Fri, 3 May 2019 17:06:32 +0000 (UTC) From: Stefano Garzarella To: qemu-devel@nongnu.org Date: Fri, 3 May 2019 19:06:31 +0200 Message-Id: <20190503170631.228487-1-sgarzare@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Fri, 03 May 2019 17:06:34 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] net: avoid to use variable length array in net_client_init() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Jason Wang Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" net_client_init() uses a variable length array to store the prefix of 'ipv6-net' parameter (e.g. if ipv6-net=3Dfec0::0/64, the prefix is 'fec0::0'). Since the IPv6 prefix can be at most as long as an IPv6 address, we can use an array with fixed size equals to INET6_ADDRSTRLEN. Signed-off-by: Stefano Garzarella --- net/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/net.c b/net/net.c index f3a3c5444c..2e5f27e121 100644 --- a/net/net.c +++ b/net/net.c @@ -1118,7 +1118,7 @@ static int net_client_init(QemuOpts *opts, bool is_ne= tdev, Error **errp) const char *ip6_net =3D qemu_opt_get(opts, "ipv6-net"); =20 if (ip6_net) { - char buf[strlen(ip6_net) + 1]; + char buf[INET6_ADDRSTRLEN]; =20 if (get_str_sep(buf, sizeof(buf), &ip6_net, '/') < 0) { /* Default 64bit prefix length. */ --=20 2.20.1