From: Luis Machado <lgustavo@codesourcery.com>
To: Jan Kratochvil <jan.kratochvil@redhat.com>
Cc: "'gdb-patches@sourceware.org'" <gdb-patches@sourceware.org>
Subject: Re: [PATCH] Fix calling gcore when gdb is not in $PATH.
Date: Mon, 14 Oct 2013 12:24:00 -0000 [thread overview]
Message-ID: <525BE269.9070907@codesourcery.com> (raw)
In-Reply-To: <20131011190020.GA13493@host2.jankratochvil.net>
[-- Attachment #1: Type: text/plain, Size: 903 bytes --]
On 10/11/2013 04:00 PM, Jan Kratochvil wrote:
> On Fri, 11 Oct 2013 20:22:05 +0200, Luis Machado wrote:
>> Hmmm... unless there is some discrepancy between shell interpreters,
>> mine (bash) does the following:
>
> OK, true, it works thanks to the 'which' command there.
>
> But then why you have there the conditional
> if test "x$binary_path" = x. ; then
> ?
> You can run the 'which' block every time and it will work.
That's true. Though i've noticed that the following gives an unexpected
result...
Invocation: sh gcore (with gcore living in ".")
The /usr/bin/gdb binary gets picked up, because "which gcore" returns
nothing even if gcore lives in ".". *sigh*.
An additional check needs to be done. The attached update patch
accomplishes this. It seems to cover all the scenarios.
I decided to add a chunk of code to error out in case the correct GDB
binary is not found.
Thoughts?
Luis
[-- Attachment #2: gcore.diff --]
[-- Type: text/x-patch, Size: 2042 bytes --]
2013-10-14 Luis Machado <lgustavo@codesourcery.com>
* gcore.in: Call GDB using the full path to the gcore script.
Error out if the GDB binary is not found.
diff --git a/gdb/gcore.in b/gdb/gcore.in
index 9c5b14d..cbc8f06 100644
--- a/gdb/gcore.in
+++ b/gdb/gcore.in
@@ -43,6 +43,40 @@ then
shift; shift
fi
+# Attempt to fetch the absolute path to the gcore script that was
+# called.
+binary_path=`dirname "$0"`
+
+if test "x$binary_path" = x. ; then
+ # We got "." back as a path. This means the user executed
+ # the gcore script locally (i.e. ./gcore) or called the
+ # script via a shell interpreter (i.e. sh gcore).
+ binary_basename=`basename "$0"`
+
+ # If the gcore script was called like "sh gcore" and the script
+ # lives in the current directory, "which" will not give us "gcore".
+ # So first we check if the script is in the current directory
+ # before using the output "which".
+ if test -f "$binary_basename" ; then
+ # We have a local gcore script in ".". This covers the case of
+ # doing "./gcore" or "sh gcore".
+ binary_path="."
+ else
+ # The gcore script was not found in ".", which means the script
+ # was called from somewhere else in $PATH. Extract the correct
+ # path now.
+ binary_path_from_env=`which "$0"`
+ binary_path=`dirname "$binary_path_from_env"`
+ fi
+fi
+
+# Check if the GDB binary is in the expected path. If not, just
+# quit with a message.
+if [ ! -f "$binary_path"/@GDB_TRANSFORM_NAME@ ]; then
+ echo "gcore: GDB binary (${binary_path}/@GDB_TRANSFORM_NAME@) not found"
+ exit 1
+fi
+
# Initialise return code.
rc=0
@@ -51,7 +85,7 @@ for pid in $*
do
# `</dev/null' to avoid touching interactive terminal if it is
# available but not accessible as GDB would get stopped on SIGTTIN.
- @GDB_TRANSFORM_NAME@ </dev/null --nx --batch \
+ $binary_path/@GDB_TRANSFORM_NAME@ </dev/null --nx --batch \
-ex "set pagination off" -ex "set height 0" -ex "set width 0" \
-ex "attach $pid" -ex "gcore $name.$pid" -ex detach -ex quit
next prev parent reply other threads:[~2013-10-14 12:24 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-11 14:10 Luis Machado
2013-10-11 14:31 ` Jan Kratochvil
2013-10-11 14:46 ` Luis Machado
2013-10-11 16:46 ` Luis Machado
2013-10-11 16:56 ` Jan Kratochvil
2013-10-11 17:53 ` Luis Machado
2013-10-11 18:10 ` Jan Kratochvil
2013-10-11 18:22 ` Luis Machado
2013-10-11 19:58 ` Jan Kratochvil
2013-10-14 12:24 ` Luis Machado [this message]
2013-10-15 15:10 ` Jan Kratochvil
2013-10-16 15:13 ` Luis Machado
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=525BE269.9070907@codesourcery.com \
--to=lgustavo@codesourcery.com \
--cc=gdb-patches@sourceware.org \
--cc=jan.kratochvil@redhat.com \
/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