forked from bminor/bash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.cc
353 lines (268 loc) · 7.5 KB
/
error.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/* error.cc -- Functions for handling errors. */
/* Copyright (C) 1993-2021 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bash is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Bash. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <fcntl.h>
#include <unistd.h>
#include <cstdarg>
#include "shell.hh"
namespace bash
{
void
Shell::error_prolog (int print_lineno)
{
const char *ename;
int line;
ename = get_name_for_error ();
line = (print_lineno && !interactive_shell) ? executing_line_number () : -1;
if (line > 0)
fprintf (stderr, "%s:%s%d: ", ename,
gnu_error_format ? "" : _ (" line "), line);
else
fprintf (stderr, "%s: ", ename);
}
/* Return the name of the shell or the shell script for error reporting. */
const char *
Shell::get_name_for_error ()
{
const char *name;
#if defined(ARRAY_VARS)
SHELL_VAR *bash_source_v;
ARRAY *bash_source_a;
#endif
name = nullptr;
if (!interactive_shell)
{
#if defined(ARRAY_VARS)
bash_source_v = find_variable ("BASH_SOURCE");
if (bash_source_v && bash_source_v->array ()
&& (bash_source_a = bash_source_v->array_value ()))
name = array_reference (bash_source_a, 0);
if (name == nullptr || *name == '\0') /* XXX - was just name == 0 */
#endif
name = dollar_vars[0];
}
if (name == nullptr && shell_name && *shell_name)
name = base_pathname (shell_name);
if (name == nullptr)
#if defined(PROGRAM)
name = PROGRAM;
#else
name = "bash";
#endif
return name;
}
/* Report an error having to do with FILENAME. This does not use
sys_error so the filename is not interpreted as a printf-style
format string. */
void
Shell::file_error (const char *filename)
{
report_error ("%s: %s", filename, strerror (errno));
}
void
Shell::programming_error (const char *format, ...)
{
va_list args;
char *h;
#if defined(JOB_CONTROL)
give_terminal_to (shell_pgrp, 0);
#endif /* JOB_CONTROL */
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
#if defined(HISTORY)
if (remember_on_history)
{
h = last_history_line ();
fprintf (stderr, _ ("last command: %s\n"), h ? h : "(null)");
}
#endif
#if 0
fprintf (stderr, "Report this to %s\n", the_current_maintainer);
#endif
fprintf (stderr, _ ("Aborting..."));
fflush (stderr);
abort ();
}
/* Print an error message and, if `set -e' has been executed, exit the
shell. Used in this file by file_error and programming_error. Used
outside this file mostly to report substitution and expansion errors,
and for bad invocation options. */
void
Shell::report_error (const char *format, ...)
{
va_list args;
error_prolog (1);
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
if (exit_immediately_on_error)
{
if (last_command_exit_value == 0)
last_command_exit_value = EXECUTION_FAILURE;
exit_shell (last_command_exit_value);
}
}
void
Shell::fatal_error (const char *format, ...)
{
va_list args;
error_prolog (0);
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
sh_exit (2);
}
void
Shell::internal_error (const char *format, ...)
{
va_list args;
error_prolog (1);
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
}
void
Shell::internal_warning (const char *format, ...)
{
va_list args;
error_prolog (1);
fprintf (stderr, _ ("warning: "));
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
}
void
Shell::internal_inform (const char *format, ...)
{
va_list args;
error_prolog (1);
/* TRANSLATORS: this is a prefix for informational messages. */
fprintf (stderr, _ ("INFORM: "));
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
}
#ifdef DEBUG
void
Shell::internal_debug (const char *format, ...)
{
va_list args;
error_prolog (1);
fprintf (stderr, _ ("DEBUG warning: "));
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
}
#endif
void
Shell::sys_error (const char *format, ...)
{
int e;
va_list args;
e = errno;
error_prolog (0);
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, ": %s\n", strerror (e));
va_end (args);
}
/* An error from the parser takes the general form
shell_name: input file name: line number: message
The input file name and line number are omitted if the shell is
currently interactive. If the shell is not currently interactive,
the input file name is inserted only if it is different from the
shell name. */
void
Shell::parser_error (int lineno, const char *format, ...)
{
va_list args;
const char *ename = get_name_for_error ();
std::string iname = yy_input_name ();
if (interactive)
fprintf (stderr, "%s: ", ename);
else if (interactive_shell)
fprintf (stderr, "%s: %s:%s%d: ", ename, iname.c_str (),
gnu_error_format ? "" : _ (" line "), lineno);
else if (STREQ (ename, iname.c_str ()))
fprintf (stderr, "%s:%s%d: ", ename,
gnu_error_format ? "" : _ (" line "), lineno);
else
fprintf (stderr, "%s: %s:%s%d: ", ename, iname.c_str (),
gnu_error_format ? "" : _ (" line "), lineno);
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
if (exit_immediately_on_error)
exit_shell (last_command_exit_value = 2);
}
#ifdef DEBUG
void
itrace (const char *format, ...)
{
va_list args;
fprintf (stderr, "TRACE: pid %ld: ", static_cast<long> (getpid ()));
va_start (args, format);
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
fflush (stderr);
}
#endif /* DEBUG */
/* **************************************************************** */
/* */
/* Common error reporting */
/* */
/* **************************************************************** */
static const char *const cmd_error_table[]
= { N_ ("unknown command error"), /* CMDERR_DEFAULT */
N_ ("bad command type"), /* CMDERR_BADTYPE */
N_ ("bad connector"), /* CMDERR_BADCONN */
N_ ("bad jump"), /* CMDERR_BADJUMP */
nullptr };
void
Shell::command_error (const char *func, cmd_err_type code, int e)
{
if (code > CMDERR_LAST)
code = CMDERR_DEFAULT;
programming_error ("%s: %s: %d", func, _ (cmd_error_table[code]), e);
}
#ifdef ARRAY_VARS
void
Shell::err_badarraysub (const char *s)
{
// Note: this string is untranslated in the original code.
report_error ("%s: %s", s, N_ ("bad array subscript"));
}
#endif
void
Shell::err_unboundvar (const char *s)
{
report_error (_ ("%s: unbound variable"), s);
}
void
Shell::err_readonly (const char *s)
{
report_error (_ ("%s: readonly variable"), s);
}
} // namespace bash