Home | History | Annotate | Line # | Download | only in libelf
 $NetBSD: elf_open.3,v 1.9 2026/05/17 21:40:50 jkoshy Exp $

Copyright (c) 2012 Joseph Koshy. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

This software is provided by Joseph Koshy ``as is'' and
any express or implied warranties, including, but not limited to, the
implied warranties of merchantability and fitness for a particular purpose
are disclaimed. in no event shall Joseph Koshy be liable
for any direct, indirect, incidental, special, exemplary, or consequential
damages (including, but not limited to, procurement of substitute goods
or services; loss of use, data, or profits; or business interruption)
however caused and on any theory of liability, whether in contract, strict
liability, or tort (including negligence or otherwise) arising in any way
out of the use of this software, even if advised of the possibility of
such damage.

Id: elf_open.3 4320 2025-12-22 20:47:09Z jkoshy

.Dd December 22, 2025 .Dt ELF_OPEN 3 .Os .Sh NAME .Nm elf_open , .Nm elf_openmemory .Nd open ELF objects and ar(1) archives .Sh LIBRARY .Lb libelf .Sh SYNOPSIS n libelf.h .Ft "Elf *" .Fn elf_open "int fd" .Ft "Elf *" .Fn elf_openmemory "char *image" "size_t sz" .Sh DESCRIPTION The function .Fn elf_open returns an Elf descriptor opened with mode .Dv ELF_C_READ for the ELF object or .Xr ar 1 archive referenced by the file descriptor in argument .Fa fd .

p The function .Fn elf_openmemory returns an ELF descriptor opened with mode .Dv ELF_C_READ for the ELF object or .Xr ar 1 archive contained in the memory area pointed to by the argument .Fa image . The argument .Fa sz specifies the size of the memory area in bytes.

p The behavior of these functions differs from their counterparts .Xr elf_begin 3 and .Xr elf_memory 3 in that these functions will successfully open malformed ELF objects and .Xr ar 1 archives, returning an Elf descriptor of type .Dv ELF_K_NONE . .Sh RETURN VALUES The function returns a pointer to a ELF descriptor if successful, or .Dv NULL if an error occurred. .Sh COMPATIBILITY These functions are non-standard extensions to the .Xr ELF 3 API set. .Sh ERRORS These functions can fail with the following errors: l -tag -width "[ELF_E_RESOURCE]" t Bq Er ELF_E_ARGUMENT The argument .Fa fd was of an unsupported file type. t Bq Er ELF_E_ARGUMENT The argument .Fa sz was zero, or the argument .Fa image was .Dv NULL . t Bq Er ELF_E_IO The file descriptor in argument .Fa fd was invalid. t Bq Er ELF_E_IO The file descriptor in argument .Fa fd could not be read. t Bq Er ELF_E_RESOURCE An out of memory condition was encountered. t Bq Er ELF_E_SEQUENCE Functions .Fn elf_open or .Fn elf_openmemory was called before a working version was established with .Xr elf_version 3 . .El .Sh SEE ALSO .Xr elf 3 , .Xr elf_begin 3 , .Xr elf_errno 3 , .Xr elf_memory 3 , .Xr gelf 3