<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 26, 2015 at 7:07 PM, Jim Grosbach via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">A mutable interface to object files would be great to have but doesn't exist in any meaningful sense in LLVM today. David's hack and similar tricks are what's necessary right now.<br>
<br>
I'd love to fix that as its a question that comes up not infrequently.<br></blockquote><div><br></div><div>Unfortunately this is a pretty tough problem to do in any generality. Anything that isn't simply overwriting the contents of sections in the file can effectively require rewriting the entire file. One of my realizations when writing `yaml2obj -format=elf` was how intricately tied all the offsets are; if you search for every use of ContiguousBlobAccumulator::getOSAndAlignedOffset, essentially any or all of those will need to be edited when making any nontrivial modification of an ELF object file (and this isn't even considering e.g. PHDRS covering sections etc.).</div><div><br></div><div> (there's a reason that most of this functionality is usually in a program called objCOPY; basically objcopy is a program that copies an object file in a semantic way (e.g. logically section by section or whatever); it then has some if's and for's sprinkled in at various key places to handle the various different options it has).</div><div><br></div><div>-- Sean Silva</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
Sent from my iPhone<br>
<span class=""><br>
> On Aug 25, 2015, at 2:44 AM, David Chisnall via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
>> On 25 Aug 2015, at 10:30, Simon Cook via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
>><br>
>> I've been trying to write a tool that reads in an ELF file and modifies<br>
>> one section within that ELF file based on the data contained within<br>
>> another section. Using llvm-objdump as a template of how to read an<br>
>> object file, I've been able to read the latter section that tells me<br>
>> what to edit, but I haven't found a way to edit the former, as<br>
>> everything in the MCSection/ELFObjectFile/SectionRef classes seem to be<br>
>> read-only as far as section contents are concerned.<br>
>><br>
>> The changes I would want to make don't change the size of any section,<br>
>> all I need to do is for example zero the first n bytes of .text whilst<br>
>> keeping the rest of the object the same. What would be the recommended<br>
>> approach to achieving this goal?<br>
><br>
> I have a similar use case and would also be interested in an answer.  In the meantime, I have a horrible hack that may work for you.<br>
><br>
> My current hack works because the returned StringRefs for the SymbolRef::getContents are within the range of the MemoryBuffer and so the offset relative to the memory buffer corresponds to the file offset and this offset can be used to write into the file directly.<br>
><br>
> It’s a horrible hack though, and it would be nice to simply have a mutable memory buffer that can be written back to the file (or to a different file).<br>
><br>
> David<br>
><br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
</span>> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.llvm.org_cgi-2Dbin_mailman_listinfo_llvm-2Ddev&d=BQIGaQ&c=eEvniauFctOgLOKGJOplqw&r=k9CvPunowVJLjY-2Ua_VyCOW6auehHN4cbqltF2kp_A&m=GczEuegfI8sGgibmqcHyOw0fHoAApuDIg-XPJ_y2K_Q&s=au_QoXAJpl_xH8RN_0W4DnzdE3-SZNPJNTAWagUlrbI&e=" rel="noreferrer" target="_blank">https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.llvm.org_cgi-2Dbin_mailman_listinfo_llvm-2Ddev&d=BQIGaQ&c=eEvniauFctOgLOKGJOplqw&r=k9CvPunowVJLjY-2Ua_VyCOW6auehHN4cbqltF2kp_A&m=GczEuegfI8sGgibmqcHyOw0fHoAApuDIg-XPJ_y2K_Q&s=au_QoXAJpl_xH8RN_0W4DnzdE3-SZNPJNTAWagUlrbI&e=</a><br>
<div class=""><div class="h5">_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div></div>