This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA] .gdbinit security (revived) [incl doc]


> Date: Fri, 19 Nov 2010 15:06:15 -0800
> From: Keith Seitz <keiths@redhat.com>
> 
> A long time ago, Daniel posted a patch which would do a security check 
> of .gdbinit files and refuse to execute them if they were untrusted. See 
> http://sourceware.org/ml/gdb-patches/2005-05/msg00637.html . I would 
> like to resurrect that discussion.
> 
> At the time, there was some debate about whether simply refusing to read 
> the file was particularly user-unfriendly for a lot of developers. 
> Someone suggested adding an option to override the behavior and so on. 
> Overall, people agreed that doing something was correct.
> 
> I have implemented a slightly different option: ask the user if he would 
> like to run the untrusted file any way, much like removing a 
> write-protected file IMO.

Thanks.

In that discussion, Andreas suggested to avoid the warning if the user
belongs to the same group as the file's owner.  I don't see your patch
addressing that part.  Why not?

I'm also unsure whether we should disregard this issue on Windows.  If
it's important to make sure .gdbinit is safe, it should also be
important to do that on Windows (using the NTFS file security calls).

I realize that it would be inappropriate to ask you to do that as a
prerequisite for accepting the patch, but maybe a TODO comment should
be placed there about the Windows case.  Then someone else could do
that at some point.

> +	  warning (_("file \"%s\" is untrusted"), file);

I would suggest to spell out why it is untrusted.  Otherwise the
warning sounds grave, but doesn't give enough information to make the
decision.

> +	  if (!query (_("Read file anyway? ")))

This could be automatically answered YES in some situations.  Do we
care?

> +If @file{.gdbinit} is untrusted (it is not owned by the current user
> +or the file is world-writable), @value{GDBN} will warn the user and ask

This should be qualified by "on some platforms", because not every
platform that supports file ownership will issue this warning.

And a minor stylistic issue.  You say "it is not owned" and then "the
file is world-writable".  This is inconsistent, and could confuse the
reader into thinking that "it" and "the file" are two different
things.  Suggest to rephrase:

  If @file{.gdbinit} is @dfn{untrusted} (either not owned by the
  current user or world-writable), ...

The doco part is OK with those changes.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]