GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
GELF_CHECKSUM(3) FreeBSD Library Functions Manual GELF_CHECKSUM(3)

elf32_checksum, elf64_checksum, gelf_checksum
return the checksum of an ELF object

ELF Access Library (libelf, -lelf)

#include <libelf.h>

long
elf32_checksum(Elf *elf);

long
elf64_checksum(Elf *elf);

#include <gelf.h>

long
gelf_checksum(Elf *elf);

These functions return a simple checksum of the ELF object described by their argument elf. The checksum is computed in way that allows its value to remain unchanged in presence of modifications to the ELF object by utilities like strip(1).

Function elf32_checksum() returns a checksum for an ELF descriptor elf of class ELFCLASS32.

Function elf64_checksum() returns a checksum for an ELF descriptor elf of class ELFCLASS64.

Function gelf_checksum() provides a class-independent way retrieving the checksum for ELF object elf.

These functions return the checksum of the ELF object, or zero in case an error was encountered.

These functions may fail with the following errors:
[]
Argument elf was NULL.
[]
Argument elf was not a descriptor for an ELF file.
[]
The ELF descriptor elf was not opened for reading or updating.
[]
For functions elf32_checksum() and elf64_checksum(), ELF descriptor elf did not match the class of the called function.
[]
The ELF object specified by argument elf had a malformed executable header.
[]
An out of memory condition was detected during processing.
[]
The ELF object specified by argument elf contained a section with a malformed section header.
[]
The ELF object was of an unsupported version.

strip(1), elf(3), gelf(3)
August 29, 2006 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.