public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 2/4] BFD: Write Linux core PRSTATUS note into MIPS core file
@ 2017-10-06 11:03 Djordje Todorovic
  2017-10-12 22:33 ` Maciej W. Rozycki
  0 siblings, 1 reply; 2+ messages in thread
From: Djordje Todorovic @ 2017-10-06 11:03 UTC (permalink / raw)
  To: Maciej W. Rozycki
  Cc: binutils, gdb-patches, nemanja.popov, petar.jovanovic,
	Ananthakrishna Sowda (asowda),
	Nikola Prica

Please notice that I have added additional check when defining backend function for writing Linux core PRSTATUS note, because I had issue when try to build it, because definition 
of that macro was already defined in "elf32-target.h" as NULL.

 From 7661c4065f3fd95cd4f7e3976d0f56a2247f3bf0 Mon Sep 17 00:00:00 2001
From: Djordje Todorovic <djordje.todorovic@rt-rk.com>
Date: Wed, 4 Oct 2017 14:34:10 +0200
Subject: [PATCH 2/4] BFD: Write Linux core PRSTATUS note into MIPS core file

On MIPS o32, n32 and n64 platforms information such as PID was not
correctly written into core file from GDB.

bfd/ChangeLog:

	* bfd/elf32-mips.c (elf32_mips_write_core_note): New
	function.
	(elf_backend_write_core_note): New macro.
	* bfd/elf64-mips.c (elf64_mips_write_core_note): New
	function.
	(elf_backend_write_core_note): New macro.
	* bfd/elfn32-mips.c (elf32_mips_write_core_note): New
	function.
	(elf_backend_write_core_note): New macro.
---
  bfd/elf32-mips.c  | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
  bfd/elf64-mips.c  | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
  bfd/elfn32-mips.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
  3 files changed, 153 insertions(+)

diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index 8c1a68eb..48a2083 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -2373,6 +2373,48 @@ elf32_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)

    return TRUE;
  }
+
+/* Write Linux core PRSTATUS note into core file. */
+
+static char *
+elf32_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
+			      ...)
+{
+  switch (note_type)
+    {
+    default:
+      return NULL;
+
+    case NT_PRPSINFO:
+      {
+	BFD_FAIL ();
+	return NULL;
+      }
+
+    case NT_PRSTATUS:
+      {
+	char data[256];
+	va_list ap;
+	long pid;
+	int cursig;
+	const void *greg;
+
+	va_start (ap, note_type);
+	memset (data, 0, 72);
+	pid = va_arg (ap, long);
+	bfd_put_32 (abfd, pid, data + 24);
+	cursig = va_arg (ap, int);
+	bfd_put_16 (abfd, cursig, data + 12);
+	greg = va_arg (ap, const void *);
+	memcpy (data + 72, greg, 180);
+	memset (data + 252, 0, 4);
+	va_end (ap);
+	return elfcore_write_note (abfd, buf, bufsiz,
+				   "CORE", note_type, data, sizeof (data));
+      }
+    }
+}
+
  \f
  /* Depending on the target vector we generate some version of Irix
     executables or "normal" MIPS ELF ABI executables.  */
@@ -2555,6 +2597,13 @@ static const struct ecoff_debug_swap mips_elf32_ecoff_debug_swap = {
  #define ELF_COMMONPAGESIZE		0x1000
  #define elf32_bed			elf32_tradbed

+#ifdef elf_backend_write_core_note
+#undef elf_backend_write_core_note
+#define elf_backend_write_core_note elf32_mips_write_core_note
+#else
+#define elf_backend_write_core_note elf32_mips_write_core_note
+#endif
+
  /* Include the target file again for this target.  */
  #include "elf32-target.h"

@@ -2576,6 +2625,8 @@ static const struct ecoff_debug_swap mips_elf32_ecoff_debug_swap = {
  #undef	elf32_bed
  #define elf32_bed				elf32_fbsd_tradbed

+#undef elf_backend_write_core_note
+
  #include "elf32-target.h"
  /* Implement elf_backend_final_write_processing for VxWorks.  */

diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c
index 84f2a3f..354e4cb 100644
--- a/bfd/elf64-mips.c
+++ b/bfd/elf64-mips.c
@@ -4248,6 +4248,48 @@ elf64_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)

    return TRUE;
  }
+
+/* Write Linux core PRSTATUS note into core file. */
+
+static char *
+elf64_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
+			      ...)
+{
+  switch (note_type)
+    {
+    default:
+      return NULL;
+
+    case NT_PRPSINFO:
+      {
+	BFD_FAIL ();
+	return NULL;
+      }
+
+    case NT_PRSTATUS:
+      {
+	char data[480];
+	va_list ap;
+	long pid;
+	int cursig;
+	const void *greg;
+
+	va_start (ap, note_type);
+	memset (data, 0, 112);
+	pid = va_arg (ap, long);
+	bfd_put_32 (abfd, pid, data + 32);
+	cursig = va_arg (ap, int);
+	bfd_put_16 (abfd, cursig, data + 12);
+	greg = va_arg (ap, const void *);
+	memcpy (data + 112, greg, 360);
+	memset (data + 472, 0, 8);
+	va_end (ap);
+	return elfcore_write_note (abfd, buf, bufsiz,
+				   "CORE", note_type, data, sizeof (data));
+      }
+    }
+}
+
  \f
  /* ECOFF swapping routines.  These are used when dealing with the
     .mdebug section, which is in the ECOFF debugging format.  */
@@ -4455,6 +4497,13 @@ const struct elf_size_info mips_elf64_size_info =
  #define ELF_COMMONPAGESIZE		0x1000
  #define elf64_bed			elf64_tradbed

+#ifdef elf_backend_write_core_note
+#undef elf_backend_write_core_note
+#define elf_backend_write_core_note elf64_mips_write_core_note
+#else
+#define elf_backend_write_core_note elf64_mips_write_core_note
+#endif
+
  /* Include the target file again for this target.  */
  #include "elf64-target.h"

@@ -4477,4 +4526,6 @@ const struct elf_size_info mips_elf64_size_info =
  #undef	elf64_bed
  #define elf64_bed				elf64_fbsd_tradbed

+#undef elf64_mips_write_core_note
+
  #include "elf64-target.h"
diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c
index dce7ba1..5287da3 100644
--- a/bfd/elfn32-mips.c
+++ b/bfd/elfn32-mips.c
@@ -3578,6 +3578,48 @@ elf32_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)

    return TRUE;
  }
+
+/* Write Linux core PRSTATUS note into core file. */
+
+static char *
+elf32_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
+			      ...)
+{
+  switch (note_type)
+    {
+    default:
+      return NULL;
+
+    case NT_PRPSINFO:
+      {
+	BFD_FAIL ();
+	return NULL;
+      }
+
+    case NT_PRSTATUS:
+      {
+	char data[448];
+	va_list ap;
+	long pid;
+	int cursig;
+	const void *greg;
+
+	va_start (ap, note_type);
+	memset (data, 0, 80);
+	pid = va_arg (ap, long);
+	bfd_put_32 (abfd, pid, data + 32);
+	cursig = va_arg (ap, int);
+	bfd_put_16 (abfd, cursig, data + 12);
+	greg = va_arg (ap, const void *);
+	memcpy (data + 80, greg, 360);
+	memset (data + 440, 0, 8);
+	va_end (ap);
+	return elfcore_write_note (abfd, buf, bufsiz,
+				   "CORE", note_type, data, sizeof (data));
+      }
+    }
+}
+
  \f
  /* Depending on the target vector we generate some version of Irix
     executables or "normal" MIPS ELF ABI executables.  */
@@ -3753,6 +3795,13 @@ static const struct ecoff_debug_swap mips_elf32_ecoff_debug_swap = {
  #define ELF_COMMONPAGESIZE		0x1000
  #define elf32_bed			elf32_tradbed

+#ifdef elf_backend_write_core_note
+#undef elf_backend_write_core_note
+#define elf_backend_write_core_note elf32_mips_write_core_note
+#else
+#define elf_backend_write_core_note elf32_mips_write_core_note
+#endif
+
  /* Include the target file again for this target.  */
  #include "elf32-target.h"

@@ -3775,4 +3824,6 @@ static const struct ecoff_debug_swap mips_elf32_ecoff_debug_swap = {
  #undef	elf32_bed
  #define elf32_bed				elf32_fbsd_tradbed

+#undef elf_backend_write_core_note
+
  #include "elf32-target.h"
-- 
2.7.4

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/4] BFD: Write Linux core PRSTATUS note into MIPS core file
  2017-10-06 11:03 [PATCH 2/4] BFD: Write Linux core PRSTATUS note into MIPS core file Djordje Todorovic
@ 2017-10-12 22:33 ` Maciej W. Rozycki
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej W. Rozycki @ 2017-10-12 22:33 UTC (permalink / raw)
  To: Djordje Todorovic
  Cc: binutils, gdb-patches, nemanja.popov, petar.jovanovic,
	Ananthakrishna Sowda (asowda),
	Nikola Prica

On Fri, 6 Oct 2017, Djordje Todorovic wrote:

> Please notice that I have added additional check when defining backend
> function for writing Linux core PRSTATUS note, because I had issue when try to
> build it, because definition of that macro was already defined in
> "elf32-target.h" as NULL.

 Ack.

> bfd/ChangeLog:
> 
> 	* bfd/elf32-mips.c (elf32_mips_write_core_note): New
> 	function.
> 	(elf_backend_write_core_note): New macro.
> 	* bfd/elf64-mips.c (elf64_mips_write_core_note): New
> 	function.
> 	(elf_backend_write_core_note): New macro.
> 	* bfd/elfn32-mips.c (elf32_mips_write_core_note): New
> 	function.
> 	(elf_backend_write_core_note): New macro.

 Please drop `bfd/' from file names; ChangeLog entries are relative to the 
directory the file itself is in.  Also "New function." fits in a single 
line here either way.

> diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
> index 8c1a68eb..48a2083 100644
> --- a/bfd/elf32-mips.c
> +++ b/bfd/elf32-mips.c
> @@ -2373,6 +2373,48 @@ elf32_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note
> *note)
> 
>    return TRUE;
>  }
> +
> +/* Write Linux core PRSTATUS note into core file. */

 Two spaces after a full stop please.

> +
> +static char *
> +elf32_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
> +			      ...)
> +{
> +  switch (note_type)
> +    {
> +    default:
> +      return NULL;
> +
> +    case NT_PRPSINFO:
> +      {
> +	BFD_FAIL ();
> +	return NULL;
> +      }

 No need for a block here.

> +
> +    case NT_PRSTATUS:
> +      {
> +	char data[256];
> +	va_list ap;
> +	long pid;
> +	int cursig;
> +	const void *greg;
> +
> +	va_start (ap, note_type);
> +	memset (data, 0, 72);
> +	pid = va_arg (ap, long);
> +	bfd_put_32 (abfd, pid, data + 24);
> +	cursig = va_arg (ap, int);
> +	bfd_put_16 (abfd, cursig, data + 12);
> +	greg = va_arg (ap, const void *);
> +	memcpy (data + 72, greg, 180);
> +	memset (data + 252, 0, 4);
> +	va_end (ap);
> +	return elfcore_write_note (abfd, buf, bufsiz,
> +				   "CORE", note_type, data, sizeof (data));
> +      }
> +    }
> +}
> +
>  

 Extraneous new line.

> @@ -2555,6 +2597,13 @@ static const struct ecoff_debug_swap
> mips_elf32_ecoff_debug_swap = {
>  #define ELF_COMMONPAGESIZE		0x1000
>  #define elf32_bed			elf32_tradbed
> 
> +#ifdef elf_backend_write_core_note
> +#undef elf_backend_write_core_note
> +#define elf_backend_write_core_note elf32_mips_write_core_note
> +#else
> +#define elf_backend_write_core_note elf32_mips_write_core_note
> +#endif

 Just #undef it unconditionally.

> diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c
> index 84f2a3f..354e4cb 100644
> --- a/bfd/elf64-mips.c
> +++ b/bfd/elf64-mips.c
> @@ -4248,6 +4248,48 @@ elf64_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note
> *note)
> 
>    return TRUE;
>  }
> +
> +/* Write Linux core PRSTATUS note into core file. */

 Two spaces after a full stop please.

> +
> +static char *
> +elf64_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
> +			      ...)
> +{
> +  switch (note_type)
> +    {
> +    default:
> +      return NULL;
> +
> +    case NT_PRPSINFO:
> +      {
> +	BFD_FAIL ();
> +	return NULL;
> +      }

 No need for a block here.

> +
> +    case NT_PRSTATUS:
> +      {
> +	char data[480];
> +	va_list ap;
> +	long pid;
> +	int cursig;
> +	const void *greg;
> +
> +	va_start (ap, note_type);
> +	memset (data, 0, 112);
> +	pid = va_arg (ap, long);
> +	bfd_put_32 (abfd, pid, data + 32);
> +	cursig = va_arg (ap, int);
> +	bfd_put_16 (abfd, cursig, data + 12);
> +	greg = va_arg (ap, const void *);
> +	memcpy (data + 112, greg, 360);
> +	memset (data + 472, 0, 8);
> +	va_end (ap);
> +	return elfcore_write_note (abfd, buf, bufsiz,
> +				   "CORE", note_type, data, sizeof (data));
> +      }
> +    }
> +}
> +
>  

 Extraneous new line.

> @@ -4455,6 +4497,13 @@ const struct elf_size_info mips_elf64_size_info =
>  #define ELF_COMMONPAGESIZE		0x1000
>  #define elf64_bed			elf64_tradbed
> 
> +#ifdef elf_backend_write_core_note
> +#undef elf_backend_write_core_note
> +#define elf_backend_write_core_note elf64_mips_write_core_note
> +#else
> +#define elf_backend_write_core_note elf64_mips_write_core_note
> +#endif

 Just #undef it unconditionally.

> diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c
> index dce7ba1..5287da3 100644
> --- a/bfd/elfn32-mips.c
> +++ b/bfd/elfn32-mips.c
> @@ -3578,6 +3578,48 @@ elf32_mips_grok_psinfo (bfd *abfd, Elf_Internal_Note
> *note)
> 
>    return TRUE;
>  }
> +
> +/* Write Linux core PRSTATUS note into core file. */

 Two spaces after a full stop please.

> +
> +static char *
> +elf32_mips_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type,
> +			      ...)
> +{
> +  switch (note_type)
> +    {
> +    default:
> +      return NULL;
> +
> +    case NT_PRPSINFO:
> +      {
> +	BFD_FAIL ();
> +	return NULL;
> +      }

 No need for a block here.

> +
> +    case NT_PRSTATUS:
> +      {
> +	char data[448];

 Not 440?

> +	va_list ap;
> +	long pid;
> +	int cursig;
> +	const void *greg;
> +
> +	va_start (ap, note_type);
> +	memset (data, 0, 80);
> +	pid = va_arg (ap, long);
> +	bfd_put_32 (abfd, pid, data + 32);

 Not 24?

> +	cursig = va_arg (ap, int);
> +	bfd_put_16 (abfd, cursig, data + 12);
> +	greg = va_arg (ap, const void *);
> +	memcpy (data + 80, greg, 360);

 Not 72?

> +	memset (data + 440, 0, 8);

 Not 432?

> +	va_end (ap);
> +	return elfcore_write_note (abfd, buf, bufsiz,
> +				   "CORE", note_type, data, sizeof (data));
> +      }
> +    }
> +}
> +
>  

 Extraneous new line.

> @@ -3753,6 +3795,13 @@ static const struct ecoff_debug_swap
> mips_elf32_ecoff_debug_swap = {
>  #define ELF_COMMONPAGESIZE		0x1000
>  #define elf32_bed			elf32_tradbed
> 
> +#ifdef elf_backend_write_core_note
> +#undef elf_backend_write_core_note
> +#define elf_backend_write_core_note elf32_mips_write_core_note
> +#else
> +#define elf_backend_write_core_note elf32_mips_write_core_note
> +#endif

 Just #undef it unconditionally.

  Maciej

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-10-12 22:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-06 11:03 [PATCH 2/4] BFD: Write Linux core PRSTATUS note into MIPS core file Djordje Todorovic
2017-10-12 22:33 ` Maciej W. Rozycki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).