ronnie
2022-10-23 3eef1810ec35005e8bcaaee0957166baba31b68c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
<!doctype book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"[
<!ENTITY package "<filename>new-bu</filename>">
]>
 
<book>
  <title>New Binutils User's and Reference Manual</title>
 
  <chapter>
    <title><filename>libelf</filename> <acronym>ABI</acronym></title>
 
    <simpara>The <acronym>ABI</acronym> of the
    <filename>libelf</filename> implemented in the &package; package
    is following that of Sun's implementation which in turn in derived
    from the original SysVr4 implementation.  There are some
    extensions over Sun's versions, though, which makes it impossible
    to replace this implementation with Sun's.</simpara>
 
    <beginpage>
 
    <refentry xreflabel="Elf_Data" id="ElfUData">
      <refnamediv>
   <refname>Elf_Data</refname>
   <refpurpose>Descriptor for Data Buffer</refpurpose>
      </refnamediv>
 
      <refsynopsisdiv>
   <synopsis>
#include &lt;libelf.h&gt;
</synopsis>
      </refsynopsisdiv>
 
      <refsect1>
   <title>Description</title>
 
   <simpara>The <structname>Elf_Data</structname> structure is as
   a descriptor for a data buffer associated with a section.
   Every data buffer is associated with a specific section (see
   <!-- xref --><structname>Elf_Scn</structname>).</simpara>
 
   <simpara>A data buffer is created when reading a file.  In
   this case only a single buffer is present in the section.  The
   user can add as many sections as wanted to a section and they
   can be retrieved using the <function>elf_getdata</function>
   and <function>elf_rawdata</function> functions.<!-- xref
   --></simpara>
 
   <simpara>The <structname>Elf_Data</structname> structure
   contains the following members:</simpara>
 
   <programlisting>
   void         *d_buf
   Elf_Type      d_type
   size_t        d_size
   off_t         d_off
   size_t        d_align
   unsigned int  d_version
</programlisting>
 
   <simpara>All of these members can be modified directly by the
   user.  They can be used to resize a section, to change its
   content or type, and many more tasks.  This is also true for
   the data read from a file.  The meaning of each member is as
   follows:</simpara>
 
   <variablelist>
     <varlistentry>
       <term><structfield>d_buf</structfield></term>
       <listitem>
         <simpara>The <structfield>d_buf</structfield> member is
         the pointer to the buffer with the actual data.  When
         the ELF file was read from a file the first and only
         data buffer of a section is allocated by the
         <filename>libelf</filename> library.  The user should
         not try to resize or free this buffer.  When the user
         adds a new data buffer to a section the associated
         memory block is normally allocated by the user.  It is
         important that the buffer must have a lifetime at least
         until the ELF file is closed entirely (important when
         the buffer is allocated on the stack).  If the buffer is
         not allocated on the stack it is the user's
         responsibility to free the buffer after it is not used
         anymore.  The <structfield>d_buf</structfield> member
         can contain a null pointer if the data buffer is
         empty.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term><structfield>d_type</structfield></term>
       <listitem>
         <simpara>The <structfield>d_type</structfield>
         determines how the data of the buffer is interpreted.
         This type is determined from the section type and must
         be the same for all data buffers for a section.  See
         <!-- xref --><type>Elf_Type</type> for more information.
         The <function><link linkend="elfUgetdata"
         endterm="elfUgetdata.refname"></link></function>
         function uses this information to convert the data of
         the buffer between the external form and the form
         represented to the user and back if necessary.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term><structfield>d_version</structfield></term>
       <listitem>
         <simpara>The <structfield>d_version</structfield>
              contains the ELF version of the file.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term><structfield>d_size</structfield></term>
       <listitem>
         <simpara>The <structfield>d_size</structfield> contains
              the size of the buffer in bytes.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term><structfield>d_off</structfield></term>
       <listitem>
         <simpara>The <structfield>d_off</structfield> is the
              offset into the section in bytes.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term><structfield>d_align</structfield></term>
       <listitem>
         <simpara>The <structfield>d_align</structfield> is the
              address alignment of the section in bytes.</simpara>
       </listitem>
     </varlistentry>
   </variablelist>
      </refsect1>
    </refentry>
 
    <beginpage>
 
    <refentry id="elfUgetdata">
      <refnamediv>
   <refname id="elfUgetdata.refname">elf_getdata</refname>
   <refpurpose>Get washed data of section</refpurpose>
      </refnamediv>
 
      <refsynopsisdiv>
   <funcsynopsis>
     <funcsynopsisinfo>
#include &lt;libelf.h&gt;
</funcsynopsisinfo>
     <funcprototype>
       <funcdef>Elf_Data *<function>elf_getdata</function></funcdef>
       <paramdef>Elf_Scn *<parameter>scn</parameter></paramdef>
       <paramdef>Elf_Data *<parameter>data</parameter></paramdef>
     </funcprototype>
   </funcsynopsis>
      </refsynopsisdiv>
 
      <refsect1>
   <title>Description</title>
 
   <simpara>The <function>elf_getdata</function> function allows
   the user to retrieve the data buffers of the section
   <parameter>scn</parameter>.  There can be more than one buffer
   if the user explicitly added them.  When a file is read the
   <filename>libelf</filename> library creates exactly one data
   buffer.</simpara>
 
   <simpara>The first buffer in the list can be obtained by
   passing a null pointer in the parameter
   <parameter>data</parameter>.  To get the next data buffer the
   previously returned value must be passed in the
   <parameter>data</parameter> parameter.  If there are no more
   buffer left in the list a null pointer is returned.</simpara>
 
   <simpara>If the <parameter>data</parameter> parameter is not a
   null pointer it must be a descriptor for a buffer
   associated with the section <parameter>scn</parameter>.  If
   this is not the case a null pointer is returned.  To
   facilitate error handling <function>elf_getdata</function>
   also returns a null pointer if the <parameter>scn</parameter>
   parameter is a null pointer.</simpara>
      </refsect1>
    </refentry>
 
    <refentry>
      <refnamediv>
   <refname id="elfUupdate.refname">elf_update</refname>
   <refpurpose>update an ELF descriptor</refpurpose>
      </refnamediv>
 
      <refsynopsisdiv>
   <funcsynopsis>
     <funcsynopsisinfo>
#include &lt;libelf.h&gt;
</funcsynopsisinfo>
     <funcprototype>
       <funcdef>off_t <function>elf_update</function></funcdef>
       <paramdef>Elf *<parameter>elf</parameter></paramdef>
       <paramdef>Elf_Cmd <parameter>cmd</parameter></paramdef>
     </funcprototype>
   </funcsynopsis>
      </refsynopsisdiv>
 
      <refsect1>
   <title>Description</title>
 
   <simpara>The user is responsible for filling in the following
   fields in the named data structures:</simpara>
 
   <table>
     <title>Fields not set by <function>elf_update</function></title>
     <tgroup cols="3">
            <colspec colwidth="90pt">
            <colspec colwidth="110pt">
       <thead>
         <row>
       <entry>Data Structure</entry>
       <entry>Member</entry>
       <entry>Exception</entry>
         </row>
       </thead>
       <tbody>
         <row>
       <entry morerows="8"><type>Elfxx_Ehdr</type></entry>
       <entry>e_ident[EI_DATA]</entry>
       <entry>see below</entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_type</entry>
       <!-- <entry morerows="1"></entry> -->
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_machine</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_version</entry>
       <entry>see below</entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_entry</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_phoff</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_shoff</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_flags</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>e_shstrndx</entry>
       <entry></entry>
         </row>
         <row>
       <entry morerows="7">Elfxx_Phdr</entry>
       <entry>p_type</entry>
       <entry morerows="7"></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_offset</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_vaddr</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_paddr</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_filesz</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_memsz</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_flags</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>p_align</entry>
       <entry></entry>
         </row>
 
         <row>
       <entry morerows="9">Elfxx_Shdr</entry>
       <entry>sh_name</entry>
       <entry morerows="3"></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_type</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_flags</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_addr</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_offset</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_size</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_link</entry>
       <!-- <entry morerows="1"></entry> -->
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_info</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_addralign</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>sh_entsize</entry>
       <entry></entry>
         </row>
 
         <row>
       <entry morerows="5">Elf_Data</entry>
       <entry>d_buf</entry>
       <entry morerows="2"></entry>
         </row>
         <row>
       <entry></entry>
       <entry>d_type</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>d_size</entry>
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>d_off</entry>
       <entry>if <symbol>ELF_F_LAYOUT</symbol> is used</entry>
         </row>
         <row>
       <entry></entry>
       <entry>d_align</entry>
       <!-- <entry morerows="1"></entry> -->
       <entry></entry>
         </row>
         <row>
       <entry></entry>
       <entry>d_version</entry>
       <entry></entry>
         </row>
       </tbody>
     </tgroup>
   </table>
 
   <simpara>Two fields of the ELF header are handled in a special
   way:</simpara>
 
   <variablelist>
     <varlistentry>
       <term>e_version</term>
       <listitem>
         <simpara>The user can set this field to the vvalue for
         the version to be used.  It is an error if the library
         cannot handle this version.  If the field contains the
         value <symbol>EV_NONE</symbol> the library will fill in
         its own internal version.</simpara>
       </listitem>
     </varlistentry>
 
     <varlistentry>
       <term>e_ident[EI_DATA]</term>
       <listitem>
         <simpara>The user should fill in the byte ordering for
         the file.  If the value of the field is
         <symbol>ELFDATANONE</symbol> the library replaces it
         with the native byte ordering for the machine.</simpara>
       </listitem>
     </varlistentry>
   </variablelist>
      </refsect1>
    </refentry>
  </chapter>
 
  <chapter>
    <title><filename>libelf</filename> Internals</title>
 
    <simpara>Since the binary format handling tools need constant
    attention since there are always new machines and varients
    therefore coming out it is important to have the implementation
    well documented.  Only this way extensions can be made in the
    right places and the mistakes of the past avoided.</simpara>
  </chapter>
</book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omitag:nil
sgml-shorttag:t
End:
-->