]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/berrno.c
Implement RestoreObject for sqlite + cleanups
[bacula/bacula] / bacula / src / lib / berrno.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2004-2011 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *  Bacula errno handler
30  *
31  *    berrno is a simplistic errno handler that works for
32  *      Unix, Win32, and Bacula bpipes.
33  *
34  *    See berrno.h for how to use berrno.
35  *
36  *   Kern Sibbald, July MMIV
37  *
38  *
39  */
40
41 #include "bacula.h"
42
43 #ifndef HAVE_WIN32
44 extern const char *get_signal_name(int sig);
45 extern int num_execvp_errors;
46 extern int execvp_errors[];
47 #endif
48
49 const char *berrno::bstrerror()
50 {
51    *m_buf = 0;
52 #ifdef HAVE_WIN32
53    if (m_berrno & b_errno_win32) {
54       format_win32_message();
55       return (const char *)m_buf;
56    }
57 #else
58    int stat = 0;
59
60    if (m_berrno & b_errno_exit) {
61       stat = (m_berrno & ~b_errno_exit);       /* remove bit */
62       if (stat == 0) {
63          return _("Child exited normally.");    /* this really shouldn't happen */
64       } else {
65          /* Maybe an execvp failure */
66          if (stat >= 200) {
67             if (stat < 200 + num_execvp_errors) {
68                m_berrno = execvp_errors[stat - 200];
69             } else {
70                return _("Unknown error during program execvp");
71             }
72          } else {
73             Mmsg(m_buf, _("Child exited with code %d"), stat);
74             return m_buf;
75          }
76          /* If we drop out here, m_berrno is set to an execvp errno */
77       }
78    }
79    if (m_berrno & b_errno_signal) {
80       stat = (m_berrno & ~b_errno_signal);        /* remove bit */
81       Mmsg(m_buf, _("Child died from signal %d: %s"), stat, get_signal_name(stat));
82       return m_buf;
83    }
84 #endif
85    /* Normal errno */
86    if (b_strerror(m_berrno, m_buf, 1024) < 0) {
87       return _("Invalid errno. No error message possible.");
88    }
89    return m_buf;
90 }
91
92 void berrno::format_win32_message()
93 {
94 #ifdef HAVE_WIN32
95    LPVOID msg;
96    FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER |
97        FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
98        NULL,
99        GetLastError(),
100        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
101        (LPTSTR)&msg,
102        0,
103        NULL);
104    pm_strcpy(&m_buf, (const char *)msg);
105    LocalFree(msg);
106 #endif
107 }
108
109 #ifdef TEST_PROGRAM
110
111 int main()
112 {
113 }
114 #endif