public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Use subsystem to distinguish between pei-arm-little and pei-arm-wince-little
@ 2023-01-11 18:32 Mark Harmstone
  2023-01-17 14:01 ` Nick Clifton
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Harmstone @ 2023-01-11 18:32 UTC (permalink / raw)
  To: binutils; +Cc: Mark Harmstone

Running objdump against a 32-bit ARM PE file currently needs
disambiguation, as it gets picked up by both pei-arm-little and
pei-arm-wince-little.

This adds a check in pe_bfd_object_p so that the subsystem in the PE
header is used to do the disambiguation for us, so that WinCE images get
assigned to pei-arm-wince-little, and everything else to pei-arm-little.

---
 bfd/pei-arm-wince.c |  2 ++
 bfd/peicode.h       | 15 +++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/bfd/pei-arm-wince.c b/bfd/pei-arm-wince.c
index 6391dd50c91..914ee0bb07f 100644
--- a/bfd/pei-arm-wince.c
+++ b/bfd/pei-arm-wince.c
@@ -28,4 +28,6 @@
 
 #define LOCAL_LABEL_PREFIX "."
 
+#define WINCE
+
 #include "pei-arm.c"
diff --git a/bfd/peicode.h b/bfd/peicode.h
index 68ec3a37c89..22ffec989f2 100644
--- a/bfd/peicode.h
+++ b/bfd/peicode.h
@@ -1528,6 +1528,21 @@ pe_bfd_object_p (bfd * abfd)
       bfd_coff_swap_aouthdr_in (abfd, opthdr, &internal_a);
 
       struct internal_extra_pe_aouthdr *a = &internal_a.pe;
+
+#ifdef ARM
+      /* Use Subsystem to distinguish between pei-arm-little and
+	 pei-arm-wince-little.  */
+#ifdef WINCE
+      if (a->Subsystem != IMAGE_SUBSYSTEM_WINDOWS_CE_GUI)
+#else
+      if (a->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CE_GUI)
+#endif
+	{
+	  bfd_set_error (bfd_error_wrong_format);
+	  return NULL;
+	}
+#endif
+
       if ((a->SectionAlignment & -a->SectionAlignment) != a->SectionAlignment
 	  || a->SectionAlignment >= 0x80000000)
 	{
-- 
2.38.2


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

* Re: [PATCH] Use subsystem to distinguish between pei-arm-little and pei-arm-wince-little
  2023-01-11 18:32 [PATCH] Use subsystem to distinguish between pei-arm-little and pei-arm-wince-little Mark Harmstone
@ 2023-01-17 14:01 ` Nick Clifton
  0 siblings, 0 replies; 2+ messages in thread
From: Nick Clifton @ 2023-01-17 14:01 UTC (permalink / raw)
  To: Mark Harmstone, binutils

Hi Mark,

> Running objdump against a 32-bit ARM PE file currently needs
> disambiguation, as it gets picked up by both pei-arm-little and
> pei-arm-wince-little.
> 
> This adds a check in pe_bfd_object_p so that the subsystem in the PE
> header is used to do the disambiguation for us, so that WinCE images get
> assigned to pei-arm-wince-little, and everything else to pei-arm-little.
> 
> ---
>   bfd/pei-arm-wince.c |  2 ++
>   bfd/peicode.h       | 15 +++++++++++++++


Approved  - please apply.

Cheers
   Nick



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

end of thread, other threads:[~2023-01-17 14:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-11 18:32 [PATCH] Use subsystem to distinguish between pei-arm-little and pei-arm-wince-little Mark Harmstone
2023-01-17 14:01 ` Nick Clifton

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).