]> sourceware.org Git - glibc.git/blame - elf/dlerror.c
Update.
[glibc.git] / elf / dlerror.c
CommitLineData
d66e34cd
RM
1/* dlerror -- Return error detail for failing <dlfcn.h> functions.
2Copyright (C) 1995 Free Software Foundation, Inc.
3This file is part of the GNU C Library.
4
5The GNU C Library is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public License as
7published by the Free Software Foundation; either version 2 of the
8License, or (at your option) any later version.
9
10The GNU C Library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with the GNU C Library; see the file COPYING.LIB. If
17not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18Cambridge, MA 02139, USA. */
19
20#include <link.h>
21#include <dlfcn.h>
22#include <stdio.h>
23#include <string.h>
24#include <stdlib.h>
25
421f82e5
RM
26static int last_errcode;
27static const char *last_errstring;
28static const char *last_object_name;
d66e34cd
RM
29
30char *
31dlerror (void)
32{
421f82e5
RM
33 static char *buf;
34 char *ret;
d66e34cd 35
421f82e5 36 if (buf)
d66e34cd 37 {
421f82e5
RM
38 free (buf);
39 buf = NULL;
d66e34cd 40 }
d66e34cd 41
421f82e5
RM
42 if (! last_errstring)
43 return NULL;
44
45 if (last_errcode == 0 && ! last_object_name)
46 ret = (char *) last_errstring;
47 else if (last_errcode == 0)
48 ret = (asprintf (&buf, "%s: %s", last_object_name, last_errstring) == -1
49 ? NULL : buf);
50 else if (! last_object_name)
51 ret = (asprintf (&buf, "%s: %s",
52 last_errstring, strerror (last_errcode)) == -1
53 ? NULL : buf);
54 else
55 ret = (asprintf (&buf, "%s: %s: %s",
56 last_object_name, last_errstring,
57 strerror (last_errcode)) == -1
58 ? NULL : buf);
59
60 /* Reset the error indicator. */
61 last_errstring = NULL;
62 return ret;
d66e34cd
RM
63}
64
65int
66_dlerror_run (void (*operate) (void))
67{
421f82e5
RM
68 last_errcode = _dl_catch_error (&last_errstring, &last_object_name,
69 operate);
70 return last_errstring != NULL;
d66e34cd 71}
This page took 0.048369 seconds and 5 git commands to generate.