public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Shared Library starter, ld.so
@ 2003-06-05 14:46 Richard B. Johnson
  2003-06-06 10:13 ` Richard Henderson
  0 siblings, 1 reply; 4+ messages in thread
From: Richard B. Johnson @ 2003-06-05 14:46 UTC (permalink / raw)
  To: Linux kernel


I know this is not a Kernel problem but... it is an
embedded system problem using Linux with a very
minimal (homemade) 'C' runtime library.

The dynamic linker, provided with RedHat 9 no longer
compiles with the de facto standard of having register
EDX point to function to be called before exit.

This is (was) the relevent rule:

#
#	This is the entry point, usually the first thing in the text
#	segment. The SVR4/i386 ABI (pages 3-31, 3-32) says that upon
#	entry most registers' values are unspecified, except for:
#
#   %edx	Contains a function pointer to be registered with `atexit'.
#   		This is how the dynamic linker arranges to have DT_FINI
#		functions called for shared libraries that have been loaded
#		before this code runs.
#
#   %esp	The stack contains the arguments and environment:
#   		0(%esp)			argc
#		4(%esp)			argv[0]
#		...
#		(4*argc)(%esp)		NULL
#		(4*(argc+1))(%esp)	envp[0]
#		...
#					NULL

Now the register contains junk, so if it was used as a function-
pointer, the code will seg-fault.

How does code 'know' not to call this function? If this is
no longer used, then EDX must be set to zero to let the start-up
code know not to call it.

I tried to find the source-code for ld.so (ld-linux.so.2) used with
this version and was not able to find it anywhere.


Cheers,
Dick Johnson
Penguin : Linux version 2.4.20 on an i686 machine (797.90 BogoMips).
Why is the government concerned about the lunatic fringe? Think about it.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-06-06 20:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-05 14:46 Shared Library starter, ld.so Richard B. Johnson
2003-06-06 10:13 ` Richard Henderson
2003-06-06 11:34   ` Richard B. Johnson
2003-06-06 21:10     ` Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox