Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Abhijit Halder <abhijit.k.halder@gmail.com>
To: gdb-patches@sourceware.org
Cc: Jan Kratochvil <jan.kratochvil@redhat.com>,
	Sergio Durigan Junior <sergiodj@redhat.com>
Subject: Re: [PATCH] An implementation of pipe to make I/O communication between gdb and shell.
Date: Wed, 03 Aug 2011 07:06:00 -0000	[thread overview]
Message-ID: <CAOhZP9xZnd5L-Y6spiOmyTLOn5c4mAENvdLT4YGaKo8BvCyVWA@mail.gmail.com> (raw)
In-Reply-To: <m3zkjrcri4.fsf@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 722 bytes --]

On Wed, Aug 3, 2011 at 5:09 AM, Sergio Durigan Junior
<sergiodj@redhat.com> wrote:
> Jan Kratochvil <jan.kratochvil@redhat.com> writes:
>
>> Sure maybe "pipe" is no longer the right name and "redirect" or so matches the
>> functionality better.
>
> FWIW I think that, given the current status of the patch, `redirect' is
> better than `pipe', indeed.
>

I have made corrections suggested by Sergio Durigan Junior in his
code-review. Only the documentation section I am leaving for the time
being.

 Makefile.in |    4 -
 pipe.c      |  223 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 ui-file.c   |   14 +++
 ui-file.h   |    3
 4 files changed, 242 insertions(+), 2 deletions(-)


Thanks,
Abhijit Halder

[-- Attachment #2: gdb-pipe-command.patch --]
[-- Type: text/x-patch, Size: 8575 bytes --]

diff -rup src/gdb/Makefile.in dst/gdb/Makefile.in
--- src/gdb/Makefile.in	2011-07-27 23:55:26.000000000 +0530
+++ dst/gdb/Makefile.in	2011-07-29 16:12:32.578048797 +0530
@@ -713,7 +713,7 @@ SFILES = ada-exp.y ada-lang.c ada-typepr
 	objc-exp.y objc-lang.c \
 	objfiles.c osabi.c observer.c osdata.c \
 	opencl-lang.c \
-	p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
+	p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c pipe.c printcmd.c \
 	proc-service.list progspace.c \
 	prologue-value.c psymtab.c \
 	regcache.c reggroups.c remote.c remote-fileio.c reverse.c \
@@ -870,7 +870,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $
 	mi-common.o \
 	event-loop.o event-top.o inf-loop.o completer.o \
 	gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
-	memattr.o mem-break.o target.o parse.o language.o buildsym.o \
+	memattr.o mem-break.o target.o parse.o pipe.o language.o buildsym.o \
 	findcmd.o \
 	std-regs.o \
 	signals.o \
diff -rup src/gdb/pipe.c dst/gdb/pipe.c
--- src/gdb/pipe.c	2011-07-29 15:15:26.078048517 +0530
+++ dst/gdb/pipe.c	2011-08-03 12:08:59.529850285 +0530
@@ -0,0 +1,223 @@
+/* Everything about pipe, for GDB.
+
+   Copyright (C) 2011 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   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 3 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, see <http://www.gnu.org/licenses/>.  */
+
+#include "defs.h"
+#include "gdbcmd.h"
+#include <ctype.h>
+#include "gdb_string.h"
+#include "ui-file.h"
+#include "cli/cli-utils.h"
+
+/* List of characters that can be used as delimiter to separate out
+   gdb-command and shell command.  */
+#define PIPE_DELIMITER "|/\\'\"`#@!$%<^>-"
+
+typedef char *iostream_mode_t;
+
+#define RD_TEXT "r"
+#define WR_TEXT "w"
+
+struct pipe_t
+{
+  /* The shell-command.  */
+  char *shell_cmd;
+
+  /* The gdb-command.  */
+  char *gdb_cmd;
+
+  /* The delimiter to separate out gdb-command and shell-command.  */
+  char dlim;
+
+  /* The mode of gdb side pipe (read or write).  */
+  iostream_mode_t mode;
+
+  /* The stream pointer of pipe.  */
+  FILE *handle;
+};
+
+/* Prototype of local function.  */
+
+static struct pipe_t *construct_pipe (char *);
+
+static void destruct_pipe (struct pipe_t *);
+
+static struct pipe_t *execute_command_to_pipe (struct pipe_t *, int);
+
+static void pipe_command (char *, int);
+
+static struct pipe_t *
+construct_pipe (char *p)
+{
+  struct pipe_t *pipe = NULL;
+  int found_mode = 0, pipe_opt_done = 0;
+  struct cleanup *old_chain;
+
+  if (p != NULL && *p != '\0')
+    {
+      pipe = xmalloc (sizeof (struct pipe_t));
+      old_chain = make_cleanup (xfree, pipe);
+
+      /* Default mode of pipe.  */
+      pipe->mode = WR_TEXT;
+
+      while (!pipe_opt_done)
+        {
+          p = skip_spaces (p);
+
+          /* If we don't get an argument started with '-' and which is not 
+             even a value associated with some option, we consider it as a 
+             potential delimiter and stop parsing for further option 
+             arguments.  */
+          if (*p != '-')
+            break;
+
+          switch (*++p)
+            {
+            case 'r':
+              if (found_mode)
+                {
+                  error (_("Invalid option"));
+                  do_cleanups (old_chain);
+                  return NULL;
+                }
+              pipe->mode = RD_TEXT;
+              found_mode = 1;
+              ++p;
+              break;
+
+            case 'w':
+              if (found_mode)
+                {
+                  error (_("Invalid option"));
+                  do_cleanups (old_chain);
+                  return NULL;
+                }
+              pipe->mode = WR_TEXT;
+              found_mode = 1;
+              ++p;
+              break;
+
+            case ' ':
+              pipe_opt_done = 1;
+              ++p;
+              break;
+
+            default:
+              error (_("Invalid option"));
+              do_cleanups (old_chain);
+              return NULL;
+            }
+        }
+
+      p = skip_spaces (p);
+      pipe->dlim = *p++;
+      p = skip_spaces (p);
+      pipe->gdb_cmd = p;
+
+      /* Validate the delimiter from a pre-defined whitelist characters.
+         This will enforce not to use special (e.g., alpha-numeric) list
+         of characters.  */
+      /* NOTE: If DLIM become null, P points to a bad string, hence 
+         before doing further processing of P we should check DLIM.  */
+      if (pipe->dlim == '\0'
+          || strchr (PIPE_DELIMITER, pipe->dlim) == NULL)
+        {
+          error (_("Invalid delimiter '%c'"), pipe->dlim);
+          do_cleanups (old_chain);
+          return NULL;
+        }
+
+      if ((p = strchr (p, pipe->dlim)) == NULL)
+        {
+          error (_("Found no shell command"));
+          do_cleanups (old_chain);
+          return NULL;
+        }
+
+      *p++ = '\0';
+      pipe->shell_cmd = p;
+
+      pipe->handle = popen (pipe->shell_cmd, pipe->mode);
+
+      if (!pipe->handle)
+        {
+          error (_("Failed to create pipe.\n%s"), strerror (errno));
+          do_cleanups (old_chain);
+          return NULL;
+        }
+    }
+
+  return pipe;
+}
+
+static void
+destruct_pipe (struct pipe_t *pipe)
+{
+  pclose (pipe->handle);
+  xfree (pipe);
+}
+
+static struct pipe_t *
+execute_command_to_pipe (struct pipe_t *pipe, int from_tty)
+{
+  FILE *fstream, *pstream;
+  struct ui_file *gdb_stdio;
+
+  if (!pipe->mode)
+    internal_error (__FILE__, __LINE__,
+                    _("execute_command_to_pipe: un-initialized pipe"));
+  else if (!strcmp (pipe->mode, RD_TEXT))
+    gdb_stdio = gdb_stdin;
+  else if (!strcmp (pipe->mode, WR_TEXT))
+    gdb_stdio = gdb_stdout;
+  else
+    internal_error (__FILE__, __LINE__,
+                    _("execute_command_to_pipe: bad pipe mode"));
+  pstream = pipe->handle;
+  fstream = gdb_modify_io (gdb_stdio, pstream);
+  execute_command (pipe->gdb_cmd, from_tty);
+  pstream = gdb_modify_io (gdb_stdio, fstream);
+  pipe->handle = pstream;
+  return pipe;
+}
+
+static void
+pipe_command (char *arg, int from_tty)
+{
+  struct pipe_t *pipe;
+
+  pipe = construct_pipe (arg);
+  if (pipe != NULL) 
+    {
+      pipe = execute_command_to_pipe (pipe, from_tty);
+      destruct_pipe (pipe);
+    }
+}
+
+void
+_initialize_pipe (void)
+{
+  add_cmd ("pipe", no_class, pipe_command, _("\
+Create pipe between gdb and shell for I/O based communication.\n\
+Arguments are option(s) to the command, then a delimiter character, \
+then the gdb-command and finally the shell-command.\n\
+If no option is given, the default behavior of pipe will be to \
+pass the gdb-command output to the shell."), 
+           &cmdlist);
+}
diff -rup src/gdb/ui-file.c dst/gdb/ui-file.c
--- src/gdb/ui-file.c	2011-05-14 11:14:36.000000000 +0530
+++ dst/gdb/ui-file.c	2011-07-29 14:32:07.838049413 +0530
@@ -619,6 +619,20 @@ stdio_fileopen (FILE *file)
   return stdio_file_new (file, 0);
 }
 
+FILE *
+gdb_modify_io (struct ui_file *file, FILE *iostream_new)
+{
+  FILE *iostream_old;
+  struct stdio_file *stdio = ui_file_data (file);
+
+  if (stdio->magic != &stdio_file_magic)
+    internal_error (__FILE__, __LINE__,
+		    _("gdb_modify_io: bad magic number"));
+  iostream_old = stdio->file;
+  stdio->file = iostream_new;
+  return iostream_old;
+}
+
 struct ui_file *
 gdb_fopen (char *name, char *mode)
 {
diff -rup src/gdb/ui-file.h dst/gdb/ui-file.h
--- src/gdb/ui-file.h	2011-05-13 22:58:20.000000000 +0530
+++ dst/gdb/ui-file.h	2011-08-02 17:17:54.130442994 +0530
@@ -126,6 +126,9 @@ extern struct ui_file *stdio_fileopen (F
 /* Open NAME returning an STDIO based UI_FILE.  */
 extern struct ui_file *gdb_fopen (char *name, char *mode);
 
+/* Modify the file I/O stream pointer of an STDIO based UI_FILE.  */
+extern FILE *gdb_modify_io (struct ui_file *file, FILE *iostream_new);
+
 /* Create a file which writes to both ONE and TWO.  CLOSE_ONE
    and CLOSE_TWO indicate whether the original files should be
    closed when the new file is closed.  */

[-- Attachment #3: ChangeLog --]
[-- Type: application/octet-stream, Size: 315 bytes --]

2011-07-29 Abhijit Halder <abhijit.k.halder@symantec.com>

	Implementation of pipe to make I/O communication 
	between gdb and shell.

	* ui-file.c (gdb_modify_io): New function.
	* ui-file.h (gdb_modify_io): Function prototype.
	* pipe.c: New file.
	* Makefile.in (SFILES): Add pipe.c.
	(COMMON_OBS): Add pipe.o. 

  reply	other threads:[~2011-08-03  7:06 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-29 13:59 Abhijit Halder
2011-07-29 15:29 ` Abhijit Halder
2011-08-02  3:52   ` Sergio Durigan Junior
2011-08-02  6:54   ` Jan Kratochvil
2011-08-02  8:52     ` Abhijit Halder
2011-08-02 15:45       ` Jan Kratochvil
2011-08-02 23:40         ` Sergio Durigan Junior
2011-08-03  7:06           ` Abhijit Halder [this message]
2011-08-03 17:46             ` Sergio Durigan Junior
2011-08-04  7:51               ` Abhijit Halder
2011-08-04  8:43                 ` Jan Kratochvil
2011-08-05  8:44                   ` Abhijit Halder
2011-08-04  9:29                 ` Pedro Alves
2011-08-04 14:21                   ` Tom Tromey
2011-08-05 15:05                     ` Abhijit Halder
2011-08-05 15:08                       ` Abhijit Halder
2011-08-05 15:15                       ` Eli Zaretskii
2011-08-05 21:11                         ` Abhijit Halder
2011-08-06  9:58                           ` Abhijit Halder
2011-08-06 22:21                             ` Sergio Durigan Junior
2011-08-08 10:01                               ` Abhijit Halder
2011-08-08 11:15                                 ` Abhijit Halder
2011-08-09  3:03                                 ` Sergio Durigan Junior
2011-08-09 10:42                                   ` Abhijit Halder
2011-08-10 17:54                                     ` Sergio Durigan Junior
2011-08-11  2:51                                       ` Abhijit Halder
2011-08-11 17:44                                         ` Sergio Durigan Junior
2011-08-13 20:51                                     ` Jan Kratochvil
2011-08-13 23:17                                       ` Abhijit Halder
2011-08-13 23:18                                         ` Abhijit Halder
2011-08-14 12:14                                           ` [PATCH] An implementation of pipe to make I/O communication between gdb and shell. [MinGW question] Jan Kratochvil
2011-08-14 14:08                                             ` Eli Zaretskii
2011-08-14 17:02                                               ` Jan Kratochvil
2011-08-14 19:42                                                 ` Eli Zaretskii
2011-08-14 19:55                                                   ` Jan Kratochvil
2011-08-16 12:45                                                     ` Abhijit Halder
2011-08-16 13:38                                                       ` Eli Zaretskii
2011-08-16 14:10                                                         ` Abhijit Halder
2011-08-16 17:25                                                           ` Abhijit Halder
2011-08-16 17:30                                                             ` Jan Kratochvil
2011-08-17  8:26                                                               ` Abhijit Halder
2011-08-20 18:52                                                                 ` Jan Kratochvil
2011-08-20 19:16                                                       ` Jan Kratochvil
2011-08-23  6:26                                                         ` Abhijit Halder
2011-08-05  7:59                   ` [PATCH] An implementation of pipe to make I/O communication between gdb and shell Abhijit Halder
2011-08-05  8:30                     ` Jan Kratochvil
2011-08-05  8:52                       ` Pedro Alves
2011-08-05  9:09                         ` Jan Kratochvil
2011-08-05  9:41                       ` Abhijit Halder
2011-08-05  9:45                         ` Jan Kratochvil
2011-08-05 10:19                           ` Abhijit Halder
2011-08-05  9:57                         ` Pedro Alves
2011-08-05 10:25                           ` Abhijit Halder
2011-08-05 10:33                             ` Abhijit Halder
2011-08-05 10:36                             ` Pedro Alves
2011-08-05 10:51                               ` Abhijit Halder
2011-08-13 17:24                         ` Jan Kratochvil
2011-08-13 18:10                           ` Abhijit Halder
2011-08-13 20:58                             ` Jan Kratochvil

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=CAOhZP9xZnd5L-Y6spiOmyTLOn5c4mAENvdLT4YGaKo8BvCyVWA@mail.gmail.com \
    --to=abhijit.k.halder@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=jan.kratochvil@redhat.com \
    --cc=sergiodj@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