From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 76679 invoked by alias); 14 Jun 2015 19:25:50 -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 76664 invoked by uid 89); 14 Jun 2015 19:25:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.1 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS,URIBL_BLACK autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sun, 14 Jun 2015 19:25:47 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id E63FC8F301; Sun, 14 Jun 2015 19:25:45 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-41.ams2.redhat.com [10.36.116.41]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t5EJPhxh006390; Sun, 14 Jun 2015 15:25:44 -0400 Subject: [PATCH v7 00/10] Validate binary before use From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Aleksandar Ristovski Date: Sun, 14 Jun 2015 19:25:00 -0000 Message-ID: <20150614192542.18346.87859.stgit@host1.jankratochvil.net> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00281.txt.bz2 Hi, git://sourceware.org/git/archer.git jankratochvil/gdbserverbuildid an update. Patch below is an overall v6->v7 diff of the whole series. Jan v7 * move linux-maps.[ch] common/->nat/ and target-utils.[ch] common/->target/ * remove GDBSERVER #ifdefs * rebase on top of the new 'struct inferior *inf' parameter v6 * move also gdb_regex* to common/ as discussed above, also in config*.ac * skip_to_space{,_const}() were moved to common/ * common/common-defs.h #include reordering * new passing of enum filterflags from linux_qxfer_libraries_svr4() * dropped refactoring of code moved to common/ that avoided GDB exceptions * new svr4_copy_library_list() needs to handle new so_list->build_id v5 * svr4_validate() considers missing local build-id as not-a-match * target_so_ops->validate() now returns not-a-match reason as a string * rename common/common-target.[ch] -> common/target-utils.[ch] * testcase runs (but broken) even on different-filesystem remote target * testcase simplified by using with_test_prefix() v4 * NEWS, doc/gdb.texinfo additions. * Used host-defs.h. * New set/show solib-build-id-force. * testsuite: Do not run on non-localhost remote targets. v3 [patchv3 0/8] Validate binary before use https://sourceware.org/ml/gdb-patches/2014-02/msg00842.html Message-ID: <20140227213229.GA21121@host2.jankratochvil.net> * Implemented the review comments I made. * Removed fetching build-id in solib-svr4.c for NAT run. v2 [PATCH 0/8] v2 - validate binary before use https://sourceware.org/ml/gdb-patches/2013-04/msg00472.html Message-ID: <1366127096-5744-1-git-send-email-ARistovski@qnx.com> --- gdb/Makefile.in | 21 + gdb/NEWS | 12 + gdb/cli/cli-utils.c | 36 -- gdb/cli/cli-utils.h | 18 - gdb/common/common-defs.h | 2 gdb/common/common-utils.c | 137 ++++++ gdb/common/common-utils.h | 20 + gdb/common/common.m4 | 29 + gdb/common/gdb_regex.c | 73 +++ gdb/common/gdb_regex.h | 36 ++ gdb/common/host-defs.h | 21 + gdb/config/i386/linux.mh | 2 gdb/config/i386/linux64.mh | 2 gdb/configure | 102 ++-- gdb/configure.ac | 29 - gdb/defs.h | 19 - gdb/doc/gdb.texinfo | 55 ++ gdb/features/library-list-svr4.dtd | 13 - gdb/gdb_regex.h | 36 -- gdb/gdbserver/Makefile.in | 12 - gdb/gdbserver/config.in | 3 gdb/gdbserver/configure | 56 ++ gdb/gdbserver/configure.srv | 2 gdb/gdbserver/gdbreplay.c | 6 gdb/gdbserver/linux-low.c | 398 +++++++++++++++-- gdb/gdbserver/target.c | 36 ++ gdb/linux-tdep.c | 566 ++---------------------- gdb/monitor.c | 16 - gdb/nat/linux-maps.c | 493 +++++++++++++++++++++ gdb/nat/linux-maps.h | 64 +++ gdb/solib-darwin.c | 1 gdb/solib-dsbt.c | 1 gdb/solib-frv.c | 1 gdb/solib-spu.c | 1 gdb/solib-svr4.c | 91 ++++ gdb/solib-target.c | 2 gdb/solib.c | 62 +++ gdb/solib.h | 4 gdb/solist.h | 21 + gdb/target.c | 95 +--- gdb/target.h | 10 gdb/target/target-utils.c | 100 ++++ gdb/target/target-utils.h | 35 + gdb/target/target.h | 11 gdb/testsuite/gdb.base/solib-mismatch-lib.c | 29 + gdb/testsuite/gdb.base/solib-mismatch-libmod.c | 29 + gdb/testsuite/gdb.base/solib-mismatch.c | 56 ++ gdb/testsuite/gdb.base/solib-mismatch.exp | 156 +++++++ gdb/utils.c | 154 ------- gdb/utils.h | 2 50 files changed, 2151 insertions(+), 1025 deletions(-) create mode 100644 gdb/common/gdb_regex.c create mode 100644 gdb/common/gdb_regex.h delete mode 100644 gdb/gdb_regex.h create mode 100644 gdb/nat/linux-maps.c create mode 100644 gdb/nat/linux-maps.h create mode 100644 gdb/target/target-utils.c create mode 100644 gdb/target/target-utils.h create mode 100644 gdb/testsuite/gdb.base/solib-mismatch-lib.c create mode 100644 gdb/testsuite/gdb.base/solib-mismatch-libmod.c create mode 100644 gdb/testsuite/gdb.base/solib-mismatch.c create mode 100644 gdb/testsuite/gdb.base/solib-mismatch.exp