]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/berrno.c
kes Correctly detect Ubuntu systems, and add ubuntu platform directory.
[bacula/bacula] / bacula / src / lib / berrno.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2004-2007 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 two of the GNU 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 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 John Walker.
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  *   Version $Id$
39  *
40  */
41
42 #include "bacula.h"
43
44 #ifndef HAVE_WIN32
45 extern const char *get_signal_name(int sig);
46 extern int num_execvp_errors;
47 extern int execvp_errors[];
48 #endif
49
50 const char *berrno::bstrerror()
51 {
52 #ifdef HAVE_WIN32
53    if (m_berrno & b_errno_win32) {
54       return (const char *)m_buf;
55    }
56 #else
57    int stat = 0;
58
59    if (m_berrno & b_errno_exit) {
60       stat = (m_berrno & ~b_errno_exit);       /* remove bit */
61       if (stat == 0) {
62          return _("Child exited normally.");    /* this really shouldn't happen */
63       } else {
64          /* Maybe an execvp failure */
65          if (stat >= 200) {
66             if (stat < 200 + num_execvp_errors) {
67                m_berrno = execvp_errors[stat - 200];
68             } else {
69                return _("Unknown error during program execvp");
70             }
71          } else {
72             Mmsg(m_buf, _("Child exited with code %d"), stat);
73             return m_buf;
74          }
75          /* If we drop out here, m_berrno is set to an execvp errno */
76       }
77    }
78    if (m_berrno & b_errno_signal) {
79       stat = (m_berrno & ~b_errno_signal);        /* remove bit */
80       Mmsg(m_buf, _("Child died from signal %d: %s"), stat, get_signal_name(stat));
81       return m_buf;
82    }
83 #endif
84    /* Normal errno */
85    if (b_strerror(m_berrno, m_buf, 1024) < 0) {
86       return _("Invalid errno. No error message possible.");
87    }
88    return m_buf;
89 }
90
91 void berrno::format_win32_message()
92 {
93 #ifdef HAVE_WIN32
94    LPVOID msg;
95    if (m_berrno & b_errno_win32) {
96       FormatMessage(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
105       pm_strcpy(&m_buf, (const char *)msg);
106       LocalFree(msg);
107    }
108 #endif
109 }
110
111 #ifdef TEST_PROGRAM
112
113 int main()
114 {
115 }
116 #endif