David Malone
a1e5be4482
The type of some aout header types changed to uint_32, so now we need
...
to cast to long before printing. While I'm here, raise WARNS to 6.
2004-06-29 21:13:15 +00:00
David Malone
10f106f5fd
Fix a few WARNS:
...
1) Include string.h for strcpy.
2) Don't make duplicate declaration of dump_file, we now include extern.h.
3) Help out with some constness.
4) Cast to slightly better types in some comparisons.
2004-02-15 22:01:23 +00:00
Jens Schweikhardt
d64ada501a
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
...
Add FreeBSD Id tag where missing.
2002-12-30 21:18:15 +00:00
Maxim Sobolev
d1cf9ea2c4
Fix a problem with RTLD_TRACE flag to dlopen(3), which sometimes can return
...
even if there was no error occured (when trying to dlopen(3) object that
already linked into executable which does dlopen(3) call). This is more
proper fix for `ldd /usr/lib/libc.so' problem, because the new behaviour
conforms to documentation.
Remove workaround from ldd.c (rev.1.32).
PR: 35099
Submitted by: Nathan Hawkins <utsl@quic.net>
MFC after: 1 week
2002-10-19 10:18:29 +00:00
Peter Wemm
66422f5b7a
Initiate deorbit burn for the i386-only a.out related support. Moves are
...
under way to move the remnants of the a.out toolchain to ports. As the
comment in src/Makefile said, this stuff is deprecated and one should not
expect this to remain beyond 4.0-REL. It has already lasted WAY beyond
that.
Notable exceptions:
gcc - I have not touched the a.out generation stuff there.
ldd/ldconfig - still have some code to interface with a.out rtld.
old as/ld/etc - I have not removed these yet, pending their move to ports.
some includes - necessary for ldd/ldconfig for now.
Tested on: i386 (extensively), alpha
2002-09-17 01:49:00 +00:00
Akinori MUSHA
005ba515dc
Fix a tiny bug in shlib support of ldd(1); if dlopen(lib, RTLD_TRACE)
...
returns, exit gracefully with 0.
This fixes the behavior you see when you specify libc.so. It occurs
because ldd(1) itself is linked with libc.so.
$ ldd /usr/lib/libc.so
/usr/lib/libc.so:
ldd: /usr/lib/libc.so: (null)
/usr/lib/libc.so: exit status 1
Reviewed by: silence of audit@
2002-05-17 17:06:56 +00:00
Mark Murray
a53809fd7e
Warns; ANSIfy, constify and move declarations into a common header.
2002-04-28 12:55:35 +00:00
Mark Murray
f5b7af34dd
Remove GCC-specific flags.
2002-04-28 12:54:24 +00:00
Mike Barcroft
a2cfdda8d7
Include <arpa/inet.h> for prototype of ntohl() used in the N_BADMAG()
...
macro.
2002-04-20 20:09:29 +00:00
Philippe Charnier
e8937ba009
Use `The .Nm utility'
2002-04-20 12:18:28 +00:00
Warner Losh
f1bb2cd2aa
remove __P
2002-03-22 01:22:50 +00:00
Ruslan Ermilov
ba68dbe5f9
mdoc(7) police: kill hard sentence breaks.
2002-03-15 15:31:54 +00:00
David E. O'Brien
2024994319
Add support such that if LD_TRACE_LOADED_OBJECTS_ALL is defined to a
...
non-empty string in the environment; we indicate which objects caused
each object to be loaded.
PR: 30908
Submitted-by: Mike Meyer <mwm@mired.org>
2002-02-17 07:04:32 +00:00
Maxim Sobolev
97b79abc86
Inspect ELF header and reject any non-FreeBSD shared objects.
...
MFC after: 2 weeks
2002-02-08 04:08:57 +00:00
Maxim Sobolev
c6de4ce791
Allow ldd(1) be used on shared libraries in addition to executables.
2002-02-04 10:33:48 +00:00
Maxim Sobolev
fc41545e4e
GC meaningless assignment.
...
MFC after: 3 days
2002-02-04 10:23:23 +00:00
Matthew Dillon
54109b3e31
Fix long format mismatch with int arg
2001-10-29 00:32:58 +00:00
Ruslan Ermilov
625003720a
mdoc(7) police: removed HISTORY info from the .Os call.
2001-07-10 14:16:33 +00:00
Brian Somers
7bc6d0158f
Fix the type of the NULL arg to execl()
...
Idea from: Theo de Raadt <deraadt@openbsd.org>
2001-07-09 09:24:06 +00:00
David E. O'Brien
5e6220d9d0
* include/elf.h has been repo copied to include/elf-hints.h, and it no
...
longer includes machine/elf.h.
* consumers of elf.h now use the minimalist elf header possible.
This change is motivated by Binutils 2.11.0 and too much clashing over
our base elf headers and the Binutils elf headers.
2001-05-02 23:56:21 +00:00
Andrey A. Chernov
e6f0df2b20
Fix lseek args order (PR 23549)
...
Catch and report lseek errors too
While reading header don't attempt to continue reading
if some IO operation fails
PR: 23549
2000-12-15 13:20:43 +00:00
Philippe Charnier
3e7626264d
Add rcsid. Remove unused #include. Remove error() definition and replace
...
with warn().
2000-12-10 20:54:13 +00:00
Ruslan Ermilov
8fe908ef0c
mdoc(7) police: use the new features of the Nm macro.
2000-11-20 19:21:22 +00:00
Warner Losh
62f882d620
getopt and friends are declared in <unistd.h>
...
getopt returns -1 not EOF.
2000-09-04 06:09:54 +00:00
Alexey Zelkin
b51a864598
Corractly use .Nm and .An/.Aq macros. Replace FreeBSD with .Fx macro
...
e.
2000-05-10 15:46:27 +00:00
Sheldon Hearn
35add0e9a7
Cross-reference ldd(1) in rtld(1) and vice versa.
2000-03-28 09:01:04 +00:00
Sheldon Hearn
7a3de7619d
Revert the part of rev 1.5 that spammed rev 1.4; rev 1.4 correctly
...
removed an erroneous cross-reference to ld.so(1), which doesn't
exist in FreeBSD.
PR: 17468
Submitted by: Randall Hopper <aa8vb@ipass.net>
2000-03-20 13:30:11 +00:00
Sheldon Hearn
87faa07bec
Remove single-space hard sentence breaks. These degrade the quality
...
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.
2000-03-01 12:20:22 +00:00
Mike Pritchard
49364d3cb3
Add $FreeBSD$ lines to man pages that are missing them to make it
...
easier for translation teams.
PR: docs/13418
Submitted by: Alexey Zelkin <phantom@cris.net>
1999-08-28 23:23:38 +00:00
Peter Wemm
c3aac50f28
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
Doug Rabson
97db68b61b
Make ldd work on alpha.
1998-09-16 09:31:48 +00:00
John Polstra
e2daa140cc
Fix a bug which caused ldd to execute scripts listed on its command
...
line, instead of skipping them.
Also make a few minor cleanups.
PR: bin/7783
1998-08-30 18:30:59 +00:00
Peter Wemm
932d41914f
Add -DFREEBSD_AOUT to CFLAGS to ensure we get the correct definitions
...
from <link.h>
1998-06-12 14:11:15 +00:00
Peter Wemm
a7ef806899
ldd standalone build, after repository copy.
1998-06-01 13:55:12 +00:00
Doug Rabson
c474c6d309
Add ELF support.
1998-05-01 08:40:11 +00:00
Tim Vanderhoek
dfb9495b2a
Use consistent spelling,
...
writeable -> writable (recall prior debate over this? :-)
initialise -> initialize
recognise -> recognize
Merry Christmas! :)
1997-12-25 09:36:42 +00:00
John Polstra
873954b327
In the "ldd -v" output, display the N_AUX information for each
...
symbol. It indicates whether the symbol refers to a function or a
data object.
1997-11-28 19:34:27 +00:00
John Polstra
170fa4e888
Touch up the code that implements "ldd -v".
...
Bring the style of sods.c into better conformance. Add code to
print the contents of each datum being relocated. Correct the logic
that distinguishes between programs, shared libraries, and object
files. Make the entire program "-Wall" clean.
1997-09-02 21:54:39 +00:00
John-Mark Gurney
46657c7e77
fix a few spelling changes
...
Submitted by: Josh Gilliam
Closes PR's: 4429, 4431-4438
PS: He has agreed to submit all contrib fixes back to the original author.
1997-08-30 12:22:49 +00:00
Peter Wemm
fce15c9ab3
Revert $FreeBSD$ to $Id$
1997-02-22 15:48:31 +00:00
Jordan K. Hubbard
1130b656e5
Make the long-awaited change from $Id$ to $FreeBSD$
...
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00
John Polstra
18c0f29eaa
Set LD_TRACE_LOADED_OBJECTS to "1" instead of to "". The dynamic linker
...
now treats empty "LD_*" environment variables as if they were unset, per
the standard SVR4 conventions.
1997-01-12 00:10:57 +00:00
John Polstra
775f9cd54d
For "ldd -v", print shared object dependencies that were specified as
...
pathnames (rather than as "-lfoo") correctly.
Closes PR bin/2404.
1997-01-10 02:51:00 +00:00
Bruce Evans
45f4c7f97c
Made the synopsis in the man page conform to the style guide.
...
Made the usage message conform to the style guide.
Don't use the implementation variable `__progname'.
1996-11-30 16:12:46 +00:00
Peter Wemm
b988beb8f9
make the Usage string match reality
...
Submitted by: faried nawaz <fn@uidaho.edu>, PR#2075
1996-11-22 13:58:03 +00:00
Peter Wemm
fecaa12727
oops, uninitialised variable.. -v mode depended on stack contents.
...
Submitted by: Masafumi NAKANE <max@wide.ad.jp>, PR#1920
1996-10-29 18:45:20 +00:00
Peter Wemm
9731d13765
Incorporate John Polstra's sods.c display of the details about the
...
dynamic linking information in the executable. It's quite extensive.
It's connected to ldd's (new) -v option.
1996-10-01 02:16:16 +00:00
Peter Wemm
d138df6140
Support for specifying printf-like output specs to control the ldd output
...
as present in the new rtld version.
Obtained from: NetBSD
Reviewed by: nate, jdp
1996-10-01 01:34:32 +00:00
Nate Williams
61f9ce8d32
Updated to recent version of Paul K.'s shlib code. This code has better
...
warning handling and allows for link-time warnings with a modified
version of gas.
Note: Not all of the newer bits were updated such as some of the non-x86
machine-dependant code is relevant to FreeBSD right now.
Obtained from: NetBSD
1994-12-23 22:31:35 +00:00
Jordan K. Hubbard
a37e71f354
Remove reference to the ld.so man page - ain't no such animal.
...
Reported by John Lind.
1994-06-17 17:22:16 +00:00