12de3b87aSKai Wang.\" Copyright (c) 2006,2008 Joseph Koshy. All rights reserved. 22de3b87aSKai Wang.\" 32de3b87aSKai Wang.\" Redistribution and use in source and binary forms, with or without 42de3b87aSKai Wang.\" modification, are permitted provided that the following conditions 52de3b87aSKai Wang.\" are met: 62de3b87aSKai Wang.\" 1. Redistributions of source code must retain the above copyright 72de3b87aSKai Wang.\" notice, this list of conditions and the following disclaimer. 82de3b87aSKai Wang.\" 2. Redistributions in binary form must reproduce the above copyright 92de3b87aSKai Wang.\" notice, this list of conditions and the following disclaimer in the 102de3b87aSKai Wang.\" documentation and/or other materials provided with the distribution. 112de3b87aSKai Wang.\" 122de3b87aSKai Wang.\" This software is provided by Joseph Koshy ``as is'' and 132de3b87aSKai Wang.\" any express or implied warranties, including, but not limited to, the 142de3b87aSKai Wang.\" implied warranties of merchantability and fitness for a particular purpose 152de3b87aSKai Wang.\" are disclaimed. in no event shall Joseph Koshy be liable 162de3b87aSKai Wang.\" for any direct, indirect, incidental, special, exemplary, or consequential 172de3b87aSKai Wang.\" damages (including, but not limited to, procurement of substitute goods 182de3b87aSKai Wang.\" or services; loss of use, data, or profits; or business interruption) 192de3b87aSKai Wang.\" however caused and on any theory of liability, whether in contract, strict 202de3b87aSKai Wang.\" liability, or tort (including negligence or otherwise) arising in any way 212de3b87aSKai Wang.\" out of the use of this software, even if advised of the possibility of 222de3b87aSKai Wang.\" such damage. 232de3b87aSKai Wang.\" 24*d003e0d7SEd Maste.\" $Id: gelf_getsymshndx.3 3734 2019-04-22 14:10:49Z jkoshy $ 252de3b87aSKai Wang.\" 26*d003e0d7SEd Maste.Dd April 22, 2019 272de3b87aSKai Wang.Dt GELF_GETSYMSHNDX 3 28ae500c1fSEd Maste.Os 292de3b87aSKai Wang.Sh NAME 302de3b87aSKai Wang.Nm gelf_getsymshndx , 312de3b87aSKai Wang.Nm gelf_update_symshndx 322de3b87aSKai Wang.Nd read and update symbol information using extended section indices 332de3b87aSKai Wang.Sh LIBRARY 342de3b87aSKai Wang.Lb libelf 352de3b87aSKai Wang.Sh SYNOPSIS 362de3b87aSKai Wang.In gelf.h 372de3b87aSKai Wang.Ft "GElf_Sym *" 382de3b87aSKai Wang.Fo gelf_getsymshndx 392de3b87aSKai Wang.Fa "Elf_Data *symdata" 402de3b87aSKai Wang.Fa "Elf_Data *xndxdata" 412de3b87aSKai Wang.Fa "int ndx" 422de3b87aSKai Wang.Fa "GElf_Sym *sym" 432de3b87aSKai Wang.Fa "Elf32_Word *xndxptr" 442de3b87aSKai Wang.Fc 452de3b87aSKai Wang.Ft int 462de3b87aSKai Wang.Fo gelf_update_symshndx 472de3b87aSKai Wang.Fa "Elf_Data *symdata" 482de3b87aSKai Wang.Fa "Elf_Data *xndxdata" 492de3b87aSKai Wang.Fa "int ndx" 502de3b87aSKai Wang.Fa "GElf_Sym *sym" 512de3b87aSKai Wang.Fa "Elf32_Word xndx" 522de3b87aSKai Wang.Fc 532de3b87aSKai Wang.Sh DESCRIPTION 542de3b87aSKai WangThese functions are analogous to 552de3b87aSKai Wang.Fn gelf_getsym 562de3b87aSKai Wangand 572de3b87aSKai Wang.Fn gelf_update_sym 582de3b87aSKai Wangrespectively, but are capable of handling symbol tables using extended 592de3b87aSKai Wangsection numbering. 602de3b87aSKai Wang.Pp 612de3b87aSKai WangArgument 622de3b87aSKai Wang.Ar symdata 632de3b87aSKai Wangis an 642de3b87aSKai Wang.Vt Elf_Data 652de3b87aSKai Wangdescriptor associated with a section of type 662de3b87aSKai Wang.Dv SHT_SYMTAB . 672de3b87aSKai WangArgument 682de3b87aSKai Wang.Ar xndxdata 692de3b87aSKai Wangis an 702de3b87aSKai Wang.Vt Elf_Data 712de3b87aSKai Wangdescriptor associated with a section of type 722de3b87aSKai Wang.Dv SHT_SYMTAB_SHNDX . 732de3b87aSKai WangArgument 742de3b87aSKai Wang.Ar ndx 752de3b87aSKai Wangis the index of the symbol table entry being retrieved or updated. 762de3b87aSKai WangArgument 772de3b87aSKai Wang.Ar sym 782de3b87aSKai Wangis a pointer to a class-independent 792de3b87aSKai Wang.Vt GElf_Sym 802de3b87aSKai Wangstructure. 812de3b87aSKai Wang.Vt GElf_Sym 822de3b87aSKai Wangstructures are described in detail in 832de3b87aSKai Wang.Xr gelf 3 . 842de3b87aSKai Wang.Pp 852de3b87aSKai WangFunction 862de3b87aSKai Wang.Fn gelf_getsymshndx 872de3b87aSKai Wangretrieves symbol information at index 882de3b87aSKai Wang.Ar ndx 892de3b87aSKai Wangfrom the data descriptor specified by argument 902de3b87aSKai Wang.Ar symdata 912de3b87aSKai Wangand stores in class-independent form in argument 922de3b87aSKai Wang.Ar sym . 932de3b87aSKai WangIn addition it retrieves the extended section index for the 942de3b87aSKai Wangsymbol from data buffer 952de3b87aSKai Wang.Ar xndxdata 962de3b87aSKai Wangand stores it into the location pointed to by argument 972de3b87aSKai Wang.Ar xndxptr . 982de3b87aSKai Wang.Pp 992de3b87aSKai WangFunction 1002de3b87aSKai Wang.Fn gelf_update_symshndx 1012de3b87aSKai Wangupdates the underlying symbol table entry in data 1022de3b87aSKai Wangdescriptor 1032de3b87aSKai Wang.Ar symdata 1042de3b87aSKai Wangwith the information in argument 1052de3b87aSKai Wang.Ar sym . 1062de3b87aSKai WangIn addition it sets the extended section index in 1072de3b87aSKai Wangdata buffer 1082de3b87aSKai Wang.Ar xndxdata 1092de3b87aSKai Wangto the value of argument 1102de3b87aSKai Wang.Ar xndx . 1112de3b87aSKai Wang.Sh RETURN VALUES 1122de3b87aSKai WangFunction 1132de3b87aSKai Wang.Fn gelf_getsymshndx 1142de3b87aSKai Wangreturns the value of argument 1152de3b87aSKai Wang.Ar sym 1162de3b87aSKai Wangif successful, or NULL in case of an error. 1172de3b87aSKai Wang.Pp 1182de3b87aSKai WangFunction 1192de3b87aSKai Wang.Fn gelf_update_symshndx 1202de3b87aSKai Wangreturns a non-zero value if successful, or zero in case of an error. 1212de3b87aSKai Wang.Sh ERRORS 1222de3b87aSKai WangThese functions may fail with the following errors: 1232de3b87aSKai Wang.Bl -tag -width "[ELF_E_RESOURCE]" 1242de3b87aSKai Wang.It Bq Er ELF_E_ARGUMENT 1252de3b87aSKai WangArguments 1262de3b87aSKai Wang.Ar symdata , 1272de3b87aSKai Wang.Ar xndxdata , 1282de3b87aSKai Wang.Ar xndxptr 1292de3b87aSKai Wangor 1302de3b87aSKai Wang.Ar sym 1312de3b87aSKai Wangwere NULL. 1322de3b87aSKai Wang.It Bq Er ELF_E_ARGUMENT 1332de3b87aSKai WangArgument 1342de3b87aSKai Wang.Ar ndx 1352de3b87aSKai Wangwas less than zero, or too large for either of descriptors 1362de3b87aSKai Wang.Ar symdata 1372de3b87aSKai Wangor 1382de3b87aSKai Wang.Ar xndxdata . 1392de3b87aSKai Wang.It Bq Er ELF_E_ARGUMENT 1402de3b87aSKai WangData descriptor 1412de3b87aSKai Wang.Ar symdata 1422de3b87aSKai Wangwas not associated with a section of type 1432de3b87aSKai Wang.Dv SHT_SYMTAB . 1442de3b87aSKai Wang.It Bq Er ELF_E_ARGUMENT 1452de3b87aSKai WangData descriptor 1462de3b87aSKai Wang.Ar xndxdata 1472de3b87aSKai Wangwas not associated with a section of type 1482de3b87aSKai Wang.Dv SHT_SYMTAB_SHNDX . 1492de3b87aSKai Wang.It Bq Er ELF_E_ARGUMENT 1502de3b87aSKai WangData descriptor 1512de3b87aSKai Wang.Ar symdata 1522de3b87aSKai Wangand 1532de3b87aSKai Wang.Ar xndxdata 1542de3b87aSKai Wangwere associated with different ELF objects. 155*d003e0d7SEd Maste.It Bq Er ELF_E_VERSION 156*d003e0d7SEd MasteThe 157*d003e0d7SEd Maste.Vt Elf_Data 158*d003e0d7SEd Mastedescriptors denoted by arguments 159*d003e0d7SEd Maste.Ar symdata 160*d003e0d7SEd Masteand 161*d003e0d7SEd Maste.Ar xndxdata 162*d003e0d7SEd Masteare associated with an ELF object with an unsupported version. 1632de3b87aSKai Wang.El 1642de3b87aSKai Wang.Sh SEE ALSO 1652de3b87aSKai Wang.Xr elf 3 , 1662de3b87aSKai Wang.Xr elf_getdata 3 , 1672de3b87aSKai Wang.Xr elf_getscn 3 , 1682de3b87aSKai Wang.Xr gelf 3 , 1692de3b87aSKai Wang.Xr gelf_getsym 3 , 1702de3b87aSKai Wang.Xr gelf_update_sym 3 171