blob: 300a7983724952b373b33e0c091117773f523d55 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Error handling in libasm.
Ulrich Drepper7e678fa2009-01-10 18:02:05 -08002 Copyright (C) 2002, 2004, 2005, 2009 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004 Written by Ulrich Drepper <drepper@redhat.com>, 2002.
5
Mark Wielaardde2ed972012-06-05 17:15:16 +02006 This file is free software; you can redistribute it and/or modify
7 it under the terms of either
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00008
Mark Wielaardde2ed972012-06-05 17:15:16 +02009 * the GNU Lesser General Public License as published by the Free
10 Software Foundation; either version 3 of the License, or (at
11 your option) any later version
12
13 or
14
15 * the GNU General Public License as published by the Free
16 Software Foundation; either version 2 of the License, or (at
17 your option) any later version
18
19 or both in parallel, as here.
20
21 elfutils is distributed in the hope that it will be useful, but
Ulrich Drepper361df7d2006-04-04 21:38:57 +000022 WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 General Public License for more details.
25
Mark Wielaardde2ed972012-06-05 17:15:16 +020026 You should have received copies of the GNU General Public License and
27 the GNU Lesser General Public License along with this program. If
28 not, see <http://www.gnu.org/licenses/>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000029
30#ifdef HAVE_CONFIG_H
31# include <config.h>
32#endif
33
34#include <libintl.h>
35#include <stdbool.h>
36#include <stdlib.h>
37
38#include "libasmP.h"
39
40
41/* This is the key for the thread specific memory. */
Ulrich Drepper7e678fa2009-01-10 18:02:05 -080042static __thread int global_error;
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000043
44
45int
46asm_errno (void)
47{
Ulrich Drepper7e678fa2009-01-10 18:02:05 -080048 int result = global_error;
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000049 global_error = ASM_E_NOERROR;
50 return result;
51}
52
53
54void
55__libasm_seterrno (value)
56 int value;
57{
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000058 global_error = value;
59}
60
61
62/* Return the appropriate message for the error. */
63static const char *msgs[ASM_E_NUM] =
64{
65 [ASM_E_NOERROR] = N_("no error"),
66 [ASM_E_NOMEM] = N_("out of memory"),
67 [ASM_E_CANNOT_CREATE] = N_("cannot create output file"),
68 [ASM_E_INVALID] = N_("invalid parameter"),
69 [ASM_E_CANNOT_CHMOD] = N_("cannot change mode of output file"),
70 [ASM_E_CANNOT_RENAME] = N_("cannot rename output file"),
71 [ASM_E_DUPLSYM] = N_("duplicate symbol"),
Ulrich Dreppera38998e2005-08-03 02:05:39 +000072 [ASM_E_TYPE] = N_("invalid section type for operation"),
73 [ASM_E_IOERROR] = N_("error during output of data"),
Ulrich Drepper3cbdd382008-01-02 17:44:39 +000074 [ASM_E_ENOSUP] = N_("no backend support available"),
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000075};
76
77const char *
78asm_errmsg (error)
79 int error;
80{
Ulrich Drepper7e678fa2009-01-10 18:02:05 -080081 int last_error = global_error;
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000082
83 if (error < -1)
Ulrich Drepper5d598762005-09-03 06:05:45 +000084 return _("unknown error");
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000085 if (error == 0 && last_error == 0)
86 /* No error. */
87 return NULL;
88
89 if (error != -1)
90 last_error = error;
91
92 if (last_error == ASM_E_LIBELF)
93 return elf_errmsg (-1);
94
95 return _(msgs[last_error]);
96}