freebsd-dev/usr.bin/elfdump/elfdump.1

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 lines
2.8 KiB
Groff
Raw Normal View History

2003-02-03 01:59:27 +00:00
.\" Copyright (c) 2003 David O'Brien
.\" 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 THE AUTHOR AND CONTRIBUTORS ``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 THE AUTHOR OR CONTRIBUTORS 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.
.\"
.\" $FreeBSD$
.\"
.Dd November 5, 2018
2003-02-03 01:59:27 +00:00
.Dt ELFDUMP 1
.Os
.Sh NAME
.Nm elfdump
2003-03-03 11:51:30 +00:00
.Nd "display information about"
.Tn ELF
files
2003-02-03 01:59:27 +00:00
.Sh SYNOPSIS
.Nm
.Fl a | E | cdeGhinprs
2003-03-03 11:51:30 +00:00
.Op Fl w Ar file
2003-02-03 01:59:27 +00:00
.Ar file
.Sh DESCRIPTION
2003-03-03 11:51:30 +00:00
The
2003-02-03 01:59:27 +00:00
.Nm
2003-03-03 11:51:30 +00:00
utility
dumps various information about the specified
.Tn ELF
.Ar file .
2003-02-03 01:59:27 +00:00
.Pp
The options are as follows:
2003-03-03 11:51:30 +00:00
.Bl -tag -width ".Fl w Ar file"
2003-02-03 01:59:27 +00:00
.It Fl a
Dump all information.
.It Fl c
2014-09-16 22:26:01 +00:00
Dump section headers.
2003-02-03 01:59:27 +00:00
.It Fl d
Dump dynamic symbols.
.It Fl e
Dump ELF header.
.It Fl E
Return success if
.Ar file
is an ELF file and failure if it is not.
This option is exclusive with other options.
2003-02-03 01:59:27 +00:00
.It Fl G
Dump the GOT.
.It Fl h
Dump the hash values.
.It Fl i
Dump the dynamic interpreter.
2003-02-03 01:59:27 +00:00
.It Fl n
Dump note sections.
.It Fl p
Dump the program header.
.It Fl r
Dump relocations.
.It Fl s
Dump the symbol table.
2003-03-03 11:51:30 +00:00
.It Fl w Ar file
Write output to a
.Ar file
instead of the standard output.
2003-02-03 01:59:27 +00:00
.El
2005-01-18 13:43:56 +00:00
.Sh EXIT STATUS
.Ex -std
2003-02-03 01:59:27 +00:00
.Sh EXAMPLES
The following is an example of a typical usage
of the
.Nm
command:
.Pp
.Dl "elfdump -a -w output /bin/ls"
.Sh SEE ALSO
.Xr objdump 1 ,
.Xr readelf 1
.Rs
2003-03-03 11:51:30 +00:00
.%A "AT&T Unix Systems Labs"
.%T "System V Application Binary Interface"
2010-01-15 16:01:22 +00:00
.%U http://www.sco.com/developers/gabi/
2003-02-03 01:59:27 +00:00
.Re
.Sh HISTORY
The
.Nm
2003-03-03 11:51:30 +00:00
utility first appeared in
2003-02-03 01:59:27 +00:00
.Fx 5.0 .
.Sh AUTHORS
2003-03-03 11:51:30 +00:00
.An -nosplit
The
2003-02-03 01:59:27 +00:00
.Nm
2003-03-03 11:51:30 +00:00
utility
was written by
.An Jake Burkholder Aq Mt jake@FreeBSD.org .
2003-02-03 01:59:27 +00:00
This
manual page was written by
.An David O'Brien Aq Mt obrien@FreeBSD.org .
2003-02-03 01:59:27 +00:00
.Sh BUGS
2003-03-03 11:51:30 +00:00
Does not fully implement the
.Tn ELF
gABI.