From: Pedro Alves <palves@redhat.com>
To: Aleksandar Ristovski <aristovski@qnx.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH 2/4] [nto] Fixes for nto procfs.
Date: Thu, 15 Oct 2015 17:41:00 -0000 [thread overview]
Message-ID: <561FE53A.1050406@redhat.com> (raw)
In-Reply-To: <1444752074-878-3-git-send-email-aristovski@qnx.com>
It would have been nicer to see this split into a fix/theme
per patch, and add something to the commit log about each
fix. E.g., the aux bits could easily be a separate patch.
Anyway, this is pretty isolated to NTO bits.
LGTM with the nits below addressed.
On 10/13/2015 05:01 PM, Aleksandar Ristovski wrote:
> }
>
> do_cleanups (inner_cleanup);
> @@ -599,9 +612,40 @@ procfs_files_info (struct target_ops *ignore)
>
> printf_unfiltered ("\tUsing the running image of %s %s via %s.\n",
> inf->attach_flag ? "attached" : "child",
> - target_pid_to_str (inferior_ptid), nto_procfs_path);
> + target_pid_to_str (inferior_ptid),
> + nodestr ? nodestr : "local node");
Write 'nodestr != NULL'.
> +}
> +
> +/* Read executable file name for the given PID. */
> +
> +static char *
> +procfs_pid_to_exec_file (struct target_ops *ops, const int pid)
> +{
> + int proc_fd;
> + static char proc_path[PATH_MAX];
> + ssize_t rd;
> +
> + /* Read exe file name. */
> + snprintf (proc_path, sizeof (proc_path), "%s/proc/%d/exefile",
> + nodestr ? nodestr : "", pid);
Ditto.
> + proc_fd = open (proc_path, O_RDONLY);
> + if (proc_fd == -1)
> + return NULL;
> +
> + rd = read (proc_fd, proc_path, sizeof (proc_path) - 1);
> + close (proc_fd);
> + if (rd <= 0)
> + {
> + proc_path[0] = '\0';
> + return NULL;
> + }
> + else
> + proc_path[rd] = '\0';
> +
> + return proc_path;
Either write:
else
{
proc_path[rd] = '\0';
return proc_path;
}
Or drop the "else".
> }
>
> +
> /* Attach to process PID, then initialize for debugging it. */
> static void
> procfs_attach (struct target_ops *ops, const char *args, int from_tty)
> @@ -653,8 +697,8 @@ do_attach (ptid_t ptid)
> struct sigevent event;
> char path[PATH_MAX];
>
> - snprintf (path, PATH_MAX - 1, "%s/%d/as", nto_procfs_path,
> - ptid_get_pid (ptid));
> + snprintf (path, PATH_MAX - 1, "%s%s/%d/as", nodestr ? nodestr : "",
> + "/proc", ptid_get_pid (ptid));
nodestr != NULL
> ctl_fd = open (path, O_RDWR);
> if (ctl_fd == -1)
> error (_("Couldn't open proc file %s, error %d (%s)"), path, errno,
> @@ -872,6 +916,40 @@ procfs_xfer_partial (struct target_ops *ops, enum target_object object,
> {
> case TARGET_OBJECT_MEMORY:
> return procfs_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
> + case TARGET_OBJECT_AUXV:
> + if (readbuf != NULL)
> + {
> + int err;
> + CORE_ADDR initial_stack;
> + debug_process_t procinfo;
> + /* For 32-bit architecture, size of auxv_t is 8 bytes. */
> + const unsigned int sizeof_auxv_t = sizeof (auxv_t);
> + const unsigned int sizeof_tempbuf = 20 * sizeof_auxv_t;
> + int tempread;
> + gdb_byte *const tempbuf = alloca (sizeof_tempbuf);
> +
> + if (!tempbuf)
> + return TARGET_XFER_E_IO;
if (tempbuf == NULL)
Can NTO's alloca really return NULL?
> +
> + err = devctl (ctl_fd, DCMD_PROC_INFO, &procinfo,
> + sizeof procinfo, 0);
> + if (err != EOK)
> + return TARGET_XFER_E_IO;
Thanks,
Pedro Alves
next prev parent reply other threads:[~2015-10-15 17:41 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-13 16:01 [PATCH 0/4] [nto] Nto fixes Aleksandar Ristovski
2015-10-13 16:01 ` [PATCH 4/4] [nto] Setup signals Aleksandar Ristovski
2015-10-16 16:16 ` Pedro Alves
2015-10-22 15:57 ` Aleksandar Ristovski
2015-10-22 15:58 ` Aleksandar Ristovski
2015-10-13 16:01 ` [PATCH 2/4] [nto] Fixes for nto procfs Aleksandar Ristovski
2015-10-15 17:41 ` Pedro Alves [this message]
2015-10-20 13:21 ` Aleksandar Ristovski
2015-10-20 12:43 ` Aleksandar Ristovski
2015-10-20 14:28 ` Pedro Alves
2015-10-20 14:28 ` [PATCH 0/3] (patch 2/4, v2) Break patch 2/4 into 3 Aleksandar Ristovski
2015-10-20 14:28 ` [PATCH 2/3] (patch 2/4, v2) [nto] Implement TARGET_OBJECT_AUXV Aleksandar Ristovski
2015-10-20 15:24 ` Pedro Alves
2015-10-20 16:03 ` Aleksandar Ristovski
2015-10-20 16:48 ` Pedro Alves
2015-10-20 17:08 ` Aleksandar Ristovski
2015-10-20 17:13 ` Aleksandar Ristovski
2015-10-20 18:11 ` Pedro Alves
2015-10-20 18:11 ` Aleksandar Ristovski
2015-10-20 18:39 ` Aleksandar Ristovski
2015-10-20 14:29 ` [PATCH 1/3] (patch 2/4, v2) [nto] Fixes for nto procfs Aleksandar Ristovski
2015-10-20 15:20 ` Pedro Alves
2015-10-20 17:13 ` Aleksandar Ristovski
2015-10-20 17:14 ` Aleksandar Ristovski
2015-10-20 15:03 ` [PATCH 3/3] (patch 2/4, v2) [nto] Implement procfs_pid_to_exec_file Aleksandar Ristovski
2015-10-20 15:25 ` Pedro Alves
2015-10-20 18:11 ` Aleksandar Ristovski
2015-10-20 18:19 ` Aleksandar Ristovski
2015-10-13 16:01 ` [PATCH 3/4] [nto] Fix nto target stopped by watchpoint Aleksandar Ristovski
2015-10-16 16:10 ` Pedro Alves
2015-10-20 18:42 ` [PATCH 0/2] (patch 3/4 v2) Broken down patch 3/4 Aleksandar Ristovski
2015-10-20 19:24 ` [PATCH 2/2] [nto] Improve ABI sniffing Aleksandar Ristovski
2015-10-21 10:39 ` Pedro Alves
2015-10-21 14:47 ` Aleksandar Ristovski
2015-10-21 14:42 ` Aleksandar Ristovski
2015-10-21 15:17 ` Pedro Alves
2015-10-21 15:37 ` Aleksandar Ristovski
2015-10-21 16:13 ` Aleksandar Ristovski
2015-10-21 16:39 ` Pedro Alves
2015-10-21 18:23 ` Aleksandar Ristovski
2015-10-21 18:10 ` Aleksandar Ristovski
2015-10-21 8:18 ` [PATCH 1/2] [nto] Fix nto target stopped by watchpoint Aleksandar Ristovski
2015-10-21 10:39 ` Pedro Alves
2015-10-21 18:00 ` Aleksandar Ristovski
2015-10-21 17:51 ` Aleksandar Ristovski
2015-10-13 16:01 ` [PATCH 1/4] [nto] Fix nto build Aleksandar Ristovski
2015-10-15 17:34 ` Pedro Alves
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=561FE53A.1050406@redhat.com \
--to=palves@redhat.com \
--cc=aristovski@qnx.com \
--cc=gdb-patches@sourceware.org \
/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