[Patch] Fix PE dll -auto-import breakage from enforcing PE specs for section flags

Ralf Habacker ralf.habacker@freenet.de
Wed Jan 14 08:07:00 GMT 2004


On Monday 12 January 2004 16:35, Nick Clifton wrote:

> > The problem is that -auto-import wants object with writeable .text
> > section  (see pe_create_import_fixup() in ld/pe-dll.c)  but
> > _bfd_XXi_swap_scnhdr_out unsets IMAGE_SCN_MEM_WRITE
> >
> > The following patch works around the problem. I have used
> > STRICT_PE_FORMAT as a guard.
>
> Hmm, wouldn't it be better to make sure that the CODE and EXECUTE bits
> are still set, as in:
>
>   + #ifdef STRICT_PE_FORMAT
>     	{ ".text" , IMAGE_SCN_MEM_READ | IMAGE_SCN_CNT_CODE |
> IMAGE_SCN_MEM_EXECUTE }, + #else
>   +     /* When using -auto-import, .text is made writable!
>   + 	   See ld/pe-dll.c (pe_create_import_fixup).  */
>     	{ ".text" ,                      IMAGE_SCN_CNT_CODE |
> IMAGE_SCN_MEM_EXECUTE }, + #endif
>
> Also, it seems to me that this change (either version) will defeat the
> purpose of the Dmitry's original patch, which was to make a PE
> targeted toolchains output conform to Microsoft's PE spec.  (Since
> STRICT_PE_FORMAT is only defined for one, slightly obscure, target).

> If we do have a run-time switch, then yes, I think that the code
> should be similarly protected.

If this is such an obscure target, makes it really sense to add a runtime 
switch ? 

Ralf 




More information about the Binutils mailing list