From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22079 invoked by alias); 30 Aug 2018 02:44:42 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 21546 invoked by uid 89); 30 Aug 2018 02:44:37 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1096 X-HELO: gateway32.websitewelcome.com Received: from gateway32.websitewelcome.com (HELO gateway32.websitewelcome.com) (192.185.145.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 30 Aug 2018 02:44:35 +0000 Received: from cm10.websitewelcome.com (cm10.websitewelcome.com [100.42.49.4]) by gateway32.websitewelcome.com (Postfix) with ESMTP id CFED458B4D7 for ; Wed, 29 Aug 2018 21:44:33 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id vCwWfj3RmBcCXvCwdfD8fv; Wed, 29 Aug 2018 21:44:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=x8CHtdM3Xq+eqIcslodVGytMDsZ2CxwelAj7yy03e9o=; b=D4TxnnAPH0Wchc18eB/c+1K7La l3YXVxZDJgnUHBKyRvqBVZin3LKd+AiLY5m9j4wVL3Q64RDyynpzDcsGgOqUk2Gp4h1nt/GkWHHLz 7zVqeFQNhdM5Ip/6IIUlNbG9T; Received: from 75-166-85-72.hlrn.qwest.net ([75.166.85.72]:37418 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1fvCwV-000S4x-Hg; Wed, 29 Aug 2018 21:44:19 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH v2 04/10] Avoid undefined behavior in extract_integer Date: Thu, 30 Aug 2018 02:44:00 -0000 Message-Id: <20180830024416.23386-5-tom@tromey.com> In-Reply-To: <20180830024416.23386-1-tom@tromey.com> References: <20180830024416.23386-1-tom@tromey.com> X-SW-Source: 2018-08/txt/msg00802.txt.bz2 -fsanitize=undefined showed that extract_integer could left-shift a negative value, which is undefined. This patch fixes the problem by doing all the work in an unsigned type. This relies on implementation-defined behavior, but I tend to think we are on safe ground there. (Also, if need be, violations of this could probably be detected, either by configure or by a static_assert.) gdb/ChangeLog 2018-08-29 Tom Tromey * findvar.c (extract_integer): Do work in an unsigned type. --- gdb/ChangeLog | 4 ++++ gdb/findvar.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/findvar.c b/gdb/findvar.c index 9256833ab60..be6c9d6f60b 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -50,7 +50,7 @@ template T extract_integer (const gdb_byte *addr, int len, enum bfd_endian byte_order) { - T retval = 0; + typename std::make_unsigned::type retval = 0; const unsigned char *p; const unsigned char *startaddr = addr; const unsigned char *endaddr = startaddr + len; -- 2.13.6