Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Sergio Durigan Junior <sergiodj@redhat.com>
To: Pedro Alves <palves@redhat.com>
Cc: GDB Patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH v2 3/5] Introduce gdb_chdir
Date: Wed, 20 Sep 2017 17:25:00 -0000	[thread overview]
Message-ID: <871sn1p9jm.fsf@redhat.com> (raw)
In-Reply-To: <0ef70723-ac23-747a-636e-5fc3f9214531@redhat.com> (Pedro Alves's	message of "Wed, 20 Sep 2017 14:14:39 +0100")

On Wednesday, September 20 2017, Pedro Alves wrote:

> On 09/19/2017 05:28 AM, Sergio Durigan Junior wrote:
>> In order to be able to change the inferior's directory before its
>> execution, it is necessary to perform a tilde expansion of the
>> directory provided by the user and then chdir into the resulting dir.
>> This is what gdb_chdir does.
>> 
>> Unfortunately it is not possible to use "tilde_expand" from readline
>> because this is common code and gdbserver doesn't use readline.  For
>> that reason I decided to go with "glob" and its GNU extension,
>> GLOB_TILDE.  With the import of the "glob" module from gnulib, this is
>> a no-brainer.
>> 
>> gdb/ChangeLog:
>> yyyy-mm-dd  Sergio Durigan Junior  <sergiodj@redhat.com>
>> 
>> 	* Makefile.in (SFILES): Add gdb_chdir.c.
>> 	(HFILES_NO_SRCDIR): Add gdb_chdir.h.
>> 	(COMMON_OBS): Add gdb_chdir.o.
>> 	* cli/cli-cmds.c: Include "gdb_chdir.h".
>> 	(cd_command): Use "gdb_chdir" instead of "tilde_expand
>> 	plus chdir".
>> 	* common/gdb_chdir.c: New file.
>> 	* common/gdb_chdir.h: Likewise.
>> 
>> gdb/gdbserver/ChangeLog:
>> yyyy-mm-dd  Sergio Durigan Junior  <sergiodj@redhat.com>
>> 
>> 	* Makefile.in (SFILES): Add $(srcdir)/common/gdb_chdir.c.
>> 	(OBS): Add gdb_chdir.o.
>> ---
>>  gdb/Makefile.in           |  3 ++
>>  gdb/cli/cli-cmds.c        | 20 +++++-----
>>  gdb/common/gdb_chdir.c    | 96 +++++++++++++++++++++++++++++++++++++++++++++++
>>  gdb/common/gdb_chdir.h    | 26 +++++++++++++
>>  gdb/gdbserver/Makefile.in |  2 +
>>  5 files changed, 136 insertions(+), 11 deletions(-)
>>  create mode 100644 gdb/common/gdb_chdir.c
>>  create mode 100644 gdb/common/gdb_chdir.h
>> 
>> diff --git a/gdb/Makefile.in b/gdb/Makefile.in
>> index 9dfc117b2f..1f093e6c0f 100644
>> --- a/gdb/Makefile.in
>> +++ b/gdb/Makefile.in
>> @@ -1245,6 +1245,7 @@ SFILES = \
>>  	common/filestuff.c \
>>  	common/format.c \
>>  	common/job-control.c \
>> +	common/gdb_chdir.c \
>>  	common/gdb_vecs.c \
>>  	common/new-op.c \
>>  	common/print-utils.c \
>> @@ -1529,6 +1530,7 @@ HFILES_NO_SRCDIR = \
>>  	common/fileio.h \
>>  	common/format.h \
>>  	common/gdb_assert.h \
>> +	common/gdb_chdir.h \
>>  	common/gdb_locale.h \
>>  	common/gdb_setjmp.h \
>>  	common/gdb_signals.h \
>> @@ -1734,6 +1736,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
>>  	frame-unwind.o \
>>  	gcore.o \
>>  	gdb_bfd.o \
>> +	gdb_chdir.o \
>>  	gdb-dlfcn.o \
>>  	gdb_obstack.o \
>>  	gdb_regex.o \
>> diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
>> index 85d6d21113..653dd56a64 100644
>> --- a/gdb/cli/cli-cmds.c
>> +++ b/gdb/cli/cli-cmds.c
>> @@ -54,6 +54,8 @@
>>  #include "tui/tui.h"	/* For tui_active et.al.  */
>>  #endif
>>  
>> +#include "gdb_chdir.h"
>> +
>>  #include <fcntl.h>
>>  #include <algorithm>
>>  #include <string>
>> @@ -408,12 +410,7 @@ cd_command (char *dir, int from_tty)
>>       repeat might be useful but is more likely to be a mistake.  */
>>    dont_repeat ();
>>  
>> -  gdb::unique_xmalloc_ptr<char> dir_holder
>> -    (tilde_expand (dir != NULL ? dir : "~"));
>> -  dir = dir_holder.get ();
>> -
>> -  if (chdir (dir) < 0)
>> -    perror_with_name (dir);
>> +  gdb_chdir (dir != NULL ? dir : "~");
>>  
>>  #ifdef HAVE_DOS_BASED_FILE_SYSTEM
>>    /* There's too much mess with DOSish names like "d:", "d:.",
>> @@ -436,20 +433,21 @@ cd_command (char *dir, int from_tty)
>>  	len--;
>>      }
>>  
>> -  dir_holder.reset (savestring (dir, len));
>> -  if (IS_ABSOLUTE_PATH (dir_holder.get ()))
>> +  std::string newdir = std::string (dir, len);
>> +  const char *newdir_str = newdir.c_str ();
>> +  if (IS_ABSOLUTE_PATH (newdir_str))
>>      {
>>        xfree (current_directory);
>> -      current_directory = dir_holder.release ();
>> +      current_directory = xstrdup (newdir_str);
>
> This introduces one extra deep string dup.  One to
> construct the std::string, and another here in this xstrdup.
>
> How about simply, above:
>
>  -  dir_holder.reset (savestring (dir, len));
>  +  gdb::unique_xmalloc_ptr<char> dir_holder (savestring (dir, len))
>
>
> But more importantly, isn't there a behavior change here?
> Before, current_directory would be a copy of the the expand
> path, while after the patch, it's a copy of the input string,
> before expansion.  Right?

Wow, you're right.  I am sorry about letting this slip.  I guess I made
so many modifications to this code that in the end I forgot that "dir"
wasn't being updated to hold the expanded path anymore.  I will fix
this.

And with your review of patch #4, it is clear that we don't need
a gdb_chdir; we need a gdb_tilde_expand.  Therefore I will make the
necessary modifications to export that function instead.

>
>>      }
>>    else
>>      {
>>        if (IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1]))
>> -	current_directory = concat (current_directory, dir_holder.get (),
>> +	current_directory = concat (current_directory, newdir_str,
>>  				    (char *) NULL);
>>        else
>>  	current_directory = concat (current_directory, SLASH_STRING,
>> -				    dir_holder.get (), (char *) NULL);
>> +				    newdir_str, (char *) NULL);
>>      }
>
>
>> +  /* Destroy the object and free M_GLOB.  */
>> +  ~gdb_glob ()
>> +  {
>> +    globfree (&m_glob);
>> +  }
>> +
>> +  /* Return the GL_PATHC component of M_GLOB.  */
>> +  int
>> +  pathc () const
>> +  {
>> +    return m_glob.gl_pathc;
>> +  }
>
> We've been putting type and function name in the
> same line in inline member functions.  That's the
> de facto standard in GCC as well, AFAICS.

Done.

>
>> +
>> +  /* Return the GL_PATHV component of M_GLOB.  */
>> +  char **
>> +  pathv () const
>> +  {
>> +    return m_glob.gl_pathv;
>> +  }
>
> Ditto.

Done.

>
>> +#ifndef HAVE_GDB_CHDIR_H
>> +#define HAVE_GDB_CHDIR_H
>> +
>> +/* Perform a "chdir" to DIR, doing the proper tilde expansion before.  */
>> +extern void gdb_chdir (const char *dir);
>
> Nit, I'd drop "the proper", as it doesn't see to add value.
> I.e., what's proper and what's not proper?

Done.

Thanks,

-- 
Sergio
GPG key ID: 237A 54B1 0287 28BF 00EF  31F4 D0EB 7628 65FC 5E36
Please send encrypted e-mail if possible
http://sergiodj.net/


  reply	other threads:[~2017-09-20 17:25 UTC|newest]

Thread overview: 131+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-12  4:23 [PATCH 0/4] New "set cwd" command Sergio Durigan Junior
2017-09-12  4:23 ` [PATCH 4/4] Implement " Sergio Durigan Junior
2017-09-12 14:50   ` Eli Zaretskii
2017-09-12  4:23 ` [PATCH 2/4] Import "glob" module from gnulib Sergio Durigan Junior
2017-09-12  4:23 ` [PATCH 3/4] Introduce gdb_chdir Sergio Durigan Junior
2017-09-12 14:53   ` Eli Zaretskii
2017-09-13 23:00     ` Sergio Durigan Junior
2017-09-13 16:07   ` Pedro Alves
2017-09-14 15:14     ` Sergio Durigan Junior
2017-09-14 15:23       ` Pedro Alves
2017-09-14 15:33         ` Sergio Durigan Junior
2017-09-12  4:23 ` [PATCH 1/4] Make gdb_dirbuf local to functions Sergio Durigan Junior
2017-09-13 15:12   ` Pedro Alves
2017-09-13 22:03     ` Sergio Durigan Junior
2017-09-13 22:19       ` Pedro Alves
2017-09-13 22:46         ` Sergio Durigan Junior
2017-09-13 23:47           ` Pedro Alves
2017-09-12 14:55 ` [PATCH 0/4] New "set cwd" command Eli Zaretskii
2017-09-12 16:48   ` Sergio Durigan Junior
2017-09-12 16:57     ` Eli Zaretskii
2017-09-12 17:51       ` Sergio Durigan Junior
2017-09-13 15:00         ` Pedro Alves
2017-09-13 15:06           ` Eli Zaretskii
2017-09-13 21:56             ` Sergio Durigan Junior
2017-09-13 14:54 ` Pedro Alves
2017-09-13 21:54   ` Sergio Durigan Junior
2017-09-19  4:28 ` [PATCH v2 0/5] " Sergio Durigan Junior
2017-09-19  4:28   ` [PATCH v2 3/5] Introduce gdb_chdir Sergio Durigan Junior
2017-09-20 13:14     ` Pedro Alves
2017-09-20 17:25       ` Sergio Durigan Junior [this message]
2017-09-19  4:28   ` [PATCH v2 2/5] Get rid of "gdb_dirbuf" and use "getcwd (NULL, 0)" Sergio Durigan Junior
2017-09-20 12:24     ` Pedro Alves
2017-09-20 17:02       ` Sergio Durigan Junior
2017-09-19  4:28   ` [PATCH v2 4/5] Implement "set cwd" command Sergio Durigan Junior
2017-09-20 14:01     ` Pedro Alves
2017-09-20 23:08       ` Sergio Durigan Junior
2017-09-19  4:33   ` [PATCH v2 5/5] Extend "set cwd" to work on gdbserver Sergio Durigan Junior
2017-09-20 14:34     ` Pedro Alves
2017-09-20 23:49       ` Sergio Durigan Junior
2017-09-21  1:37         ` Sergio Durigan Junior
2017-09-22 10:47         ` Pedro Alves
2017-09-22 18:33           ` Sergio Durigan Junior
2017-09-27 13:28             ` Pedro Alves
2017-09-19  4:37   ` [PATCH v2 1/5] Import "glob" and "getcwd" modules from gnulib Sergio Durigan Junior
2017-09-20 12:17     ` Pedro Alves
2017-09-20 17:17       ` Sergio Durigan Junior
2017-09-20 17:33         ` Pedro Alves
2017-09-20 18:31           ` Sergio Durigan Junior
2017-09-20 20:30             ` Sergio Durigan Junior
2017-09-20 22:44               ` Pedro Alves
2017-09-20 23:12                 ` Sergio Durigan Junior
2017-09-20 23:25                   ` Pedro Alves
2017-09-21 22:59 ` New "set cwd" command Sergio Durigan Junior
2017-09-21 22:59   ` [PATCH v3 2/5] Get rid of "gdb_dirbuf" and use "getcwd (NULL, 0)" Sergio Durigan Junior
2017-09-22 11:19     ` Pedro Alves
2017-09-22 17:30       ` Sergio Durigan Junior
2017-09-21 22:59   ` [PATCH v3 3/5] Introduce gdb_tilde_expand Sergio Durigan Junior
2017-09-22 11:57     ` Pedro Alves
2017-09-22 17:37       ` Sergio Durigan Junior
2017-09-22 17:41         ` Pedro Alves
2017-09-22 18:07           ` Sergio Durigan Junior
2017-09-22 18:20             ` Pedro Alves
2017-09-22 18:22               ` Sergio Durigan Junior
2017-09-21 22:59   ` [PATCH v3 1/5] Import "glob" and "getcwd" modules from gnulib Sergio Durigan Junior
2017-09-22 11:01     ` Pedro Alves
2017-09-22 17:29       ` Sergio Durigan Junior
2017-09-21 22:59   ` [PATCH v3 4/5] Implement "set cwd" command on GDB Sergio Durigan Junior
2017-09-22  8:03     ` Eli Zaretskii
2017-09-22 12:31       ` Pedro Alves
2017-09-22 18:15         ` Sergio Durigan Junior
2017-09-22 18:00       ` Sergio Durigan Junior
2017-09-22 18:56         ` Eli Zaretskii
2017-09-22 19:24           ` Pedro Alves
2017-09-22 19:41             ` Eli Zaretskii
2017-09-22 20:27               ` Sergio Durigan Junior
2017-09-22 20:37                 ` Pedro Alves
2017-09-23  5:55                   ` Eli Zaretskii
2017-09-27 14:02                     ` Pedro Alves
2017-09-29 15:31                       ` Eli Zaretskii
2017-09-29 15:46                         ` Pedro Alves
2017-09-29 17:51                           ` Eli Zaretskii
2017-09-23  5:52                 ` Eli Zaretskii
2017-09-22 20:24           ` Sergio Durigan Junior
2017-09-23  5:51             ` Eli Zaretskii
2017-09-22 20:55           ` Sergio Durigan Junior
2017-09-23  6:05             ` Eli Zaretskii
2017-09-23 17:01               ` Sergio Durigan Junior
2017-09-21 23:06   ` [PATCH v3 5/5] Extend "set cwd" to work on gdbserver Sergio Durigan Junior
2017-09-22  8:12     ` Eli Zaretskii
2017-09-22 18:46       ` Sergio Durigan Junior
2017-09-22 19:09         ` Eli Zaretskii
2017-09-22 20:47           ` Sergio Durigan Junior
2017-09-23  6:00             ` Eli Zaretskii
2017-09-27 14:42     ` Pedro Alves
2017-09-27 21:48       ` Sergio Durigan Junior
2017-09-29 14:03         ` Pedro Alves
2017-09-29 18:33           ` Sergio Durigan Junior
2017-09-28  4:10 ` [PATCH v4 0/3] New "set cwd" command Sergio Durigan Junior
2017-09-28  4:10   ` [PATCH v4 1/3] Introduce gdb_tilde_expand Sergio Durigan Junior
2017-09-29 14:08     ` Pedro Alves
2017-09-29 17:48       ` Sergio Durigan Junior
2017-09-28  4:11   ` [PATCH v4 3/3] Extend "set cwd" to work on gdbserver Sergio Durigan Junior
2017-09-29 15:21     ` Pedro Alves
2017-09-29 18:48       ` Sergio Durigan Junior
2017-10-03 15:13         ` Pedro Alves
2017-09-28  4:11   ` [PATCH v4 2/3] Implement "set cwd" command on GDB Sergio Durigan Junior
2017-09-29 15:20     ` Pedro Alves
2017-09-29 18:31       ` Sergio Durigan Junior
2017-09-29 22:58 ` [PATCH v5 0/3] New "set cwd" command Sergio Durigan Junior
2017-09-29 22:59   ` [PATCH v5 3/3] Extend "set cwd" to work on gdbserver Sergio Durigan Junior
2017-10-03 15:15     ` Pedro Alves
2017-10-03 16:45       ` Sergio Durigan Junior
2017-10-04  6:09         ` Sergio Durigan Junior
2017-09-29 22:59   ` [PATCH v5 2/3] Implement "set cwd" command on GDB Sergio Durigan Junior
2017-10-03 15:15     ` Pedro Alves
2017-10-03 16:39       ` Sergio Durigan Junior
2017-10-03 16:44         ` Pedro Alves
2017-10-03 16:47           ` Sergio Durigan Junior
2017-10-03 16:58             ` Sergio Durigan Junior
2017-10-03 20:09               ` Sergio Durigan Junior
2017-10-03 21:29                 ` Pedro Alves
2017-10-04  5:40                   ` Eli Zaretskii
2017-10-04  6:10                     ` Sergio Durigan Junior
2017-10-06  2:37                       ` asmwarrior
2017-10-06 10:54                         ` [pushed] Fix GDB build under msys+mingw gcc 32bit (Re: [PATCH v5 2/3] Implement "set cwd" command on GDB) Pedro Alves
2017-10-06 11:06                           ` [pushed] Fix more GDB build breakage on mingw32 " Pedro Alves
2017-10-06 11:15                             ` asmwarrior
2017-10-09 21:58                               ` Sergio Durigan Junior
2017-09-29 22:59   ` [PATCH v5 1/3] Introduce gdb_tilde_expand Sergio Durigan Junior
2017-10-03 15:15     ` Pedro Alves
2017-10-04  6:09       ` Sergio Durigan Junior

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=871sn1p9jm.fsf@redhat.com \
    --to=sergiodj@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=palves@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