up | Inhaltsverzeichniss | Kommentar

Manual page for LDFCN(3)

ldfcn - common object file access routines

SYNOPSIS

#include <stdio.h>
#include <filehdr.h>
#include <ldfcn.h>

AVAILABILITY

Available only on Sun 386i systems running a SunOS 4.0.x release or earlier. Not a SunOS 4.1 release feature.

DESCRIPTION

These routines are for reading COFF object files and archives containing COFF object files. Although the calling program must know the detailed structure of the parts of the object file that it processes, the routines effectively insulate the calling program from knowledge of the overall structure of the object file.

The interface between the calling program and the object file access routines is based on the defined type LDFILE, defined as struct ldfile, declared in the header file ldfcn.h. The primary purpose of this structure is to provide uniform access to both simple object files and to object files that are members of an archive file.

The function ldopen.3x allocates and initializes the LDFILE structure and returns a pointer to the structure to the calling program. The fields of the LDFILE structure may be accessed individually through macros defined in ldfcn.h and contain the following information:

LDFILE *ldptr;
TYPE(ldptr)
The file magic number used to distinguish between archive members and simple object files.
IOPTR(ldptr)
The file pointer returned by fopen and used by the standard input/output functions.
OFFSET(ldptr)
The file address of the beginning of the object file; the offset is non-zero if the object file is a member of an archive file.
HEADER(ldptr)
The file header structure of the object file.

The object file access functions themselves may be divided into four categories:

(1) Functions that open or close an object file

ldopen.3x and ldaopen() (see ldopen.3x
open a common object file
ldclose.3x and ldaclose() (see ldclose.3x
close a common object file

(2) Functions that read header or symbol table information

ldahread.3x
read the archive header of a member of an archive file
ldfhread.3x
read the file header of a common object file
ldshread.3x and ldnshread() (see ldshread.3x
read a section header of a common object file
ldtbread.3x
read a symbol table entry of a common object file
ldgetname.3x
retrieve a symbol name from a symbol table entry or from the string table

(3) Functions that position an object file at (seek to) the start of the section, relocation, or line number information for a particular section.

ldohseek.3x
seek to the optional file header of a common object file
ldsseek.3x and ldnsseek() (see ldsseek.3x
seek to a section of a common object file
ldrseek.3x and ldnrseek() (see ldrseek.3x
seek to the relocation information for a section of a common object file
ldlseek.3x and ldnlseek() (see ldlseek.3x
seek to the line number information for a section of a common object file
ldtbseek.3x
seek to the symbol table of a common object file

(4) The unction ldtbindex.3x which returns the index of a particular common object file symbol table entry.

These functions are described in detail on their respective manual pages.

All the functions except ldopen.3x ldgetname.3x ldtbindex.3x return either SUCCESS or FAILURE, both constants defined in ldfcn.h. ldopen.3x and ldaopen() (see ldopen.3x both return pointers to an LDFILE structure.

Additional access to an object file is provided through a set of macros defined in ldfcn.h. These macros parallel the standard input/output file reading and manipulating functions, translating a reference of the LDFILE structure into a reference to its file descriptor field.

The following macros are provided:

GETC(ldptr)
FGETC(ldptr)
GETW(ldptr)
UNGETC(c, ldptr)
FGETS(s, n, ldptr)
FREAD((char *) ptr, sizeof (*ptr), nitems, ldptr)
FSEEK(ldptr, offset, ptrname)
FTELL(ldptr)
REWIND(ldptr)
FEOF(ldptr)
FERROR(ldptr)
FILENO(ldptr)
SETBUF(ldptr, buf)
STROFFSET(ldptr)


The STROFFSET macro calculates the address of the string table. See the manual entries for the corresponding standard input/output library functions for details on the use of the rest of the macros.

The program must be loaded with the object file access routine library libld.a.

SEE ALSO

fseek.3s ldahread.3x ldclose.3x ldgetname.3x ldfhread.3x ldlread.3x ldlseek.3x ldohseek.3x ldopen.3x ldrseek.3x ldlseek.3x ldshread.3x ldtbindex.3x ldtbread.3x ldtbseek.3x stdio.3v intro.5

WARNING

The macro FSEEK defined in the header file ldfcn.h translates into a call to the standard input/output function fseek.3s FSEEK should not be used to seek from the end of an archive file since the end of an archive file may not be the same as the end of one of its object file members.


index | Inhaltsverzeichniss | Kommentar

Created by unroff & hp-tools. © somebody (See intro for details). All Rights Reserved. Last modified 11/5/97