2008-12-14 14:05:20 +00:00
|
|
|
http://sourceware.org/ml/gdb-patches/2005-05/threads.html#00637
|
|
|
|
Proposed upstream but never committed upstream.
|
|
|
|
|
2005-06-10 20:50:21 +00:00
|
|
|
2005-06-09 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
* gdb.base/gdbinit.exp: New testcase.
|
|
|
|
* gdb.base/gdbinit.sample: Sample .gdbinit for gdbinit.exp.
|
|
|
|
|
|
|
|
2005-06-08 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
* Makefile.in (cli-cmds.o): Update.
|
|
|
|
* configure.in: Add check for getuid.
|
|
|
|
* configure: Regenerated.
|
|
|
|
* config.in: Ditto.
|
|
|
|
* main.c (captured_main): Pass -1 to source_command when loading
|
|
|
|
gdbinit files.
|
|
|
|
* cli/cli-cmds.c: Include "gdb_stat.h" and <fcntl.h>.
|
|
|
|
(source_command): Update documentation. Check permissions if
|
|
|
|
FROM_TTY is -1.
|
|
|
|
|
2009-03-02 00:11:35 +00:00
|
|
|
Index: gdb-6.8.50.20090226/gdb/cli/cli-cmds.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2009-03-02 00:11:35 +00:00
|
|
|
--- gdb-6.8.50.20090226.orig/gdb/cli/cli-cmds.c 2009-02-27 00:04:32.000000000 +0100
|
|
|
|
+++ gdb-6.8.50.20090226/gdb/cli/cli-cmds.c 2009-02-28 07:17:49.000000000 +0100
|
2008-12-14 14:05:20 +00:00
|
|
|
@@ -36,6 +36,7 @@
|
2005-06-10 20:50:21 +00:00
|
|
|
#include "objfiles.h"
|
|
|
|
#include "source.h"
|
|
|
|
#include "disasm.h"
|
|
|
|
+#include "gdb_stat.h"
|
|
|
|
|
|
|
|
#include "ui-out.h"
|
|
|
|
|
2009-03-02 00:11:35 +00:00
|
|
|
@@ -466,7 +467,7 @@ source_script (char *file, int from_tty)
|
2005-06-10 20:50:21 +00:00
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
if (fd == -1)
|
2005-06-10 20:50:21 +00:00
|
|
|
{
|
|
|
|
- if (from_tty)
|
|
|
|
+ if (from_tty > 0)
|
|
|
|
perror_with_name (file);
|
|
|
|
else
|
2008-12-14 14:05:20 +00:00
|
|
|
{
|
2009-03-02 00:11:35 +00:00
|
|
|
@@ -475,6 +476,29 @@ source_script (char *file, int from_tty)
|
2008-12-14 14:05:20 +00:00
|
|
|
}
|
2005-06-10 20:50:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+#ifdef HAVE_GETUID
|
|
|
|
+ if (from_tty == -1)
|
|
|
|
+ {
|
|
|
|
+ struct stat statbuf;
|
2008-12-14 14:05:20 +00:00
|
|
|
+
|
2005-06-10 20:50:21 +00:00
|
|
|
+ if (fstat (fd, &statbuf) < 0)
|
|
|
|
+ {
|
2006-07-11 06:33:02 +00:00
|
|
|
+ close (fd);
|
2008-12-14 14:05:20 +00:00
|
|
|
+ /* Do not do_cleanups (old_cleanups) as FILE is allocated there.
|
|
|
|
+ perror_with_name calls error which should call the cleanups. */
|
|
|
|
+ perror_with_name (file);
|
2005-06-10 20:50:21 +00:00
|
|
|
+ }
|
|
|
|
+ if (statbuf.st_uid != getuid () || (statbuf.st_mode & S_IWOTH))
|
|
|
|
+ {
|
2008-12-14 14:05:20 +00:00
|
|
|
+ /* FILE gets freed by do_cleanups (old_cleanups). */
|
|
|
|
+ warning (_("not using untrusted file \"%s\""), file);
|
2006-07-11 06:33:02 +00:00
|
|
|
+ close (fd);
|
2008-12-14 14:05:20 +00:00
|
|
|
+ do_cleanups (old_cleanups);
|
2005-06-10 20:50:21 +00:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+
|
2009-03-02 00:11:35 +00:00
|
|
|
is_python = source_python;
|
|
|
|
if (strlen (file) > 3 && !strcmp (&file[strlen (file) - 3], ".py"))
|
|
|
|
is_python = 1;
|
|
|
|
@@ -486,6 +510,7 @@ source_script (char *file, int from_tty)
|
|
|
|
else
|
|
|
|
script_from_file (stream, file);
|
2005-06-10 20:50:21 +00:00
|
|
|
|
2008-12-14 14:05:20 +00:00
|
|
|
+ /* FILE gets freed by do_cleanups (old_cleanups). */
|
|
|
|
do_cleanups (old_cleanups);
|
|
|
|
}
|
|
|
|
|
2009-03-02 00:11:35 +00:00
|
|
|
Index: gdb-6.8.50.20090226/gdb/testsuite/gdb.base/gdbinit.exp
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2008-12-14 14:05:20 +00:00
|
|
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
2009-03-02 00:11:35 +00:00
|
|
|
+++ gdb-6.8.50.20090226/gdb/testsuite/gdb.base/gdbinit.exp 2009-02-28 07:15:57.000000000 +0100
|
2005-06-10 20:50:21 +00:00
|
|
|
@@ -0,0 +1,98 @@
|
|
|
|
+# Copyright 2005
|
|
|
|
+# Free Software Foundation, Inc.
|
|
|
|
+
|
|
|
|
+# This program is free software; you can redistribute it and/or modify
|
|
|
|
+# it under the terms of the GNU General Public License as published by
|
|
|
|
+# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
+# (at your option) any later version.
|
|
|
|
+#
|
|
|
|
+# This program is distributed in the hope that it will be useful,
|
|
|
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+# GNU General Public License for more details.
|
|
|
|
+#
|
|
|
|
+# You should have received a copy of the GNU General Public License
|
|
|
|
+# along with this program; if not, write to the Free Software
|
2008-12-14 14:05:20 +00:00
|
|
|
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
2005-06-10 20:50:21 +00:00
|
|
|
+
|
|
|
|
+# Please email any bugs, comments, and/or additions to this file to:
|
|
|
|
+# bug-gdb@prep.ai.mit.edu
|
|
|
|
+
|
|
|
|
+# This file was written by Jeff Johnston <jjohnstn@redhat.com>.
|
|
|
|
+
|
|
|
|
+if $tracelevel then {
|
|
|
|
+ strace $tracelevel
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+set prms_id 0
|
|
|
|
+set bug_id 0
|
|
|
|
+
|
|
|
|
+# are we on a target board
|
|
|
|
+if [is_remote target] {
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+global verbose
|
|
|
|
+global GDB
|
|
|
|
+global GDBFLAGS
|
|
|
|
+global gdb_prompt
|
|
|
|
+global timeout
|
|
|
|
+global gdb_spawn_id;
|
2008-12-14 14:05:20 +00:00
|
|
|
+
|
2005-06-10 20:50:21 +00:00
|
|
|
+gdb_stop_suppressing_tests;
|
2008-12-14 14:05:20 +00:00
|
|
|
+
|
2005-06-10 20:50:21 +00:00
|
|
|
+verbose "Spawning $GDB -nw"
|
2008-12-14 14:05:20 +00:00
|
|
|
+
|
2005-06-10 20:50:21 +00:00
|
|
|
+if [info exists gdb_spawn_id] {
|
|
|
|
+ return 0;
|
|
|
|
+}
|
2008-12-14 14:05:20 +00:00
|
|
|
+
|
2005-06-10 20:50:21 +00:00
|
|
|
+if ![is_remote host] {
|
|
|
|
+ if { [which $GDB] == 0 } then {
|
|
|
|
+ perror "$GDB does not exist."
|
|
|
|
+ exit 1
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+set env(HOME) [pwd]
|
|
|
|
+remote_exec build "rm .gdbinit"
|
|
|
|
+remote_exec build "cp ${srcdir}/${subdir}/gdbinit.sample .gdbinit"
|
|
|
|
+remote_exec build "chmod 646 .gdbinit"
|
|
|
|
+
|
|
|
|
+set res [remote_spawn host "$GDB -nw [host_info gdb_opts]"];
|
|
|
|
+if { $res < 0 || $res == "" } {
|
|
|
|
+ perror "Spawning $GDB failed."
|
|
|
|
+ return 1;
|
|
|
|
+}
|
|
|
|
+gdb_expect 360 {
|
|
|
|
+ -re "warning: not using untrusted file.*\.gdbinit.*\[\r\n\]$gdb_prompt $" {
|
|
|
|
+ pass "untrusted .gdbinit caught."
|
|
|
|
+ }
|
|
|
|
+ -re "$gdb_prompt $" {
|
|
|
|
+ fail "untrusted .gdbinit caught."
|
|
|
|
+ }
|
|
|
|
+ timeout {
|
|
|
|
+ fail "(timeout) untrusted .gdbinit caught."
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+remote_exec build "chmod 644 .gdbinit"
|
|
|
|
+set res [remote_spawn host "$GDB -nw [host_info gdb_opts]"];
|
|
|
|
+if { $res < 0 || $res == "" } {
|
|
|
|
+ perror "Spawning $GDB failed."
|
|
|
|
+ return 1;
|
|
|
|
+}
|
|
|
|
+gdb_expect 360 {
|
|
|
|
+ -re "warning: not using untrusted file.*\.gdbinit.*\[\r\n\]$gdb_prompt $" {
|
|
|
|
+ fail "trusted .gdbinit allowed."
|
|
|
|
+ }
|
|
|
|
+ -re "in gdbinit.*$gdb_prompt $" {
|
|
|
|
+ pass "trusted .gdbinit allowed."
|
|
|
|
+ }
|
|
|
|
+ timeout {
|
|
|
|
+ fail "(timeout) trusted .gdbinit allowed."
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+remote_exec build "rm .gdbinit"
|
2009-03-02 00:11:35 +00:00
|
|
|
Index: gdb-6.8.50.20090226/gdb/testsuite/gdb.base/gdbinit.sample
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2008-12-14 14:05:20 +00:00
|
|
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
2009-03-02 00:11:35 +00:00
|
|
|
+++ gdb-6.8.50.20090226/gdb/testsuite/gdb.base/gdbinit.sample 2009-02-28 07:15:57.000000000 +0100
|
2005-06-10 20:50:21 +00:00
|
|
|
@@ -0,0 +1 @@
|
|
|
|
+echo "\nin gdbinit"
|
2009-03-02 00:11:35 +00:00
|
|
|
Index: gdb-6.8.50.20090226/gdb/main.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2009-03-02 00:11:35 +00:00
|
|
|
--- gdb-6.8.50.20090226.orig/gdb/main.c 2009-02-27 00:04:32.000000000 +0100
|
|
|
|
+++ gdb-6.8.50.20090226/gdb/main.c 2009-02-28 07:15:57.000000000 +0100
|
|
|
|
@@ -855,7 +855,7 @@ Excess command line arguments ignored. (
|
2009-02-11 00:04:48 +00:00
|
|
|
debugging or what directory you are in. */
|
2005-07-08 18:42:25 +00:00
|
|
|
|
2009-02-11 00:04:48 +00:00
|
|
|
if (home_gdbinit && !inhibit_gdbinit)
|
|
|
|
- catch_command_errors (source_script, home_gdbinit, 0, RETURN_MASK_ALL);
|
|
|
|
+ catch_command_errors (source_script, home_gdbinit, -1, RETURN_MASK_ALL);
|
2005-07-08 18:42:25 +00:00
|
|
|
|
2009-02-11 00:04:48 +00:00
|
|
|
/* Now perform all the actions indicated by the arguments. */
|
|
|
|
if (cdarg != NULL)
|
2009-03-02 00:11:35 +00:00
|
|
|
@@ -924,7 +924,7 @@ Can't attach to process and specify a co
|
2009-02-11 00:04:48 +00:00
|
|
|
/* Read the .gdbinit file in the current directory, *if* it isn't
|
|
|
|
the same as the $HOME/.gdbinit file (it should exist, also). */
|
|
|
|
if (local_gdbinit && !inhibit_gdbinit)
|
|
|
|
- catch_command_errors (source_script, local_gdbinit, 0, RETURN_MASK_ALL);
|
|
|
|
+ catch_command_errors (source_script, local_gdbinit, -1, RETURN_MASK_ALL);
|
2005-07-08 18:42:25 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ncmd; i++)
|
2009-02-11 00:04:48 +00:00
|
|
|
{
|