Update.
[glibc.git] / elf / dl-error.c
blob7ee803ad9bb3a30fde7f3caf2002df9ec63d47e6
1 /* Error handling for runtime dynamic linker.
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <stddef.h>
21 #include <link.h>
22 #include <setjmp.h>
23 #include <stdlib.h>
24 #include <string.h>
26 /* This structure communicates state between _dl_catch_error and
27 _dl_signal_error. */
28 struct catch
30 char *errstring; /* Error detail filled in here. */
31 const char *objname;
32 jmp_buf env; /* longjmp here on error. */
35 /* This points to such a structure during a call to _dl_catch_error.
36 During implicit startup and run-time work for needed shared libraries,
37 this is null. */
38 static struct catch *catch;
40 /* This points to a function which is called when an error is
41 received. Unlike the handling of `catch' this function may return.
42 The arguments will be the `errstring' and `objname'. */
43 static receiver_fct receiver;
46 void
47 _dl_signal_error (int errcode,
48 const char *objname,
49 const char *errstring)
51 if (! errstring)
52 errstring = "DYNAMIC LINKER BUG!!!";
54 if (catch)
56 /* We are inside _dl_catch_error. Return to it. We have to
57 duplicate the error string since it might be allocated on the
58 stack. */
59 size_t len = strlen (errstring) + 1;
60 catch->errstring = malloc (len);
61 if (catch->errstring != NULL)
62 memcpy (catch->errstring, errstring, len);
63 catch->objname = objname;
64 longjmp (catch->env, errcode ?: -1);
66 else if (receiver)
68 /* We are inside _dl_receive_error. Call the user supplied
69 handler and resume the work. The receiver will still be
70 installed. */
71 (*receiver) (errcode, objname, errstring);
73 else
75 /* Lossage while resolving the program's own symbols is always fatal. */
76 extern char **_dl_argv; /* Set in rtld.c at startup. */
77 _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
78 ": error in loading shared libraries",
79 objname ?: "", objname ? ": " : "",
80 errstring, errcode ? ": " : "",
81 errcode ? strerror (errcode) : "", "\n", NULL);
85 int
86 _dl_catch_error (char **errstring,
87 const char **objname,
88 void (*operate) (void *),
89 void *args)
91 int errcode;
92 struct catch *old, c;
93 /* We need not handle `receiver' since setting a `catch' is handled
94 before it. */
96 /* Some systems (.e.g, SPARC) handle constructors to local variables
97 inefficient. So we initialize `c' by hand. */
98 c.errstring = NULL;
99 c.objname = NULL;
101 old = catch;
102 errcode = setjmp (c.env);
103 if (errcode == 0)
105 catch = &c;
106 (*operate) (args);
107 catch = old;
108 *errstring = NULL;
109 *objname = NULL;
110 return 0;
113 /* We get here only if we longjmp'd out of OPERATE. */
114 catch = old;
115 *errstring = c.errstring;
116 *objname = c.objname;
117 return errcode == -1 ? 0 : errcode;
120 void
121 _dl_receive_error (receiver_fct fct, void (*operate) (void *), void *args)
123 struct catch *old_catch;
124 receiver_fct old_receiver;
126 old_catch = catch;
127 old_receiver = receiver;
129 /* Set the new values. */
130 catch = NULL;
131 receiver = fct;
133 (*operate) (args);
135 catch = old_catch;
136 receiver = old_receiver;