blob: d4443d9637aaa8d5c2f3fc2b604b769e4a657dff [file] [log] [blame]
Jari Aaltob80f6442004-07-27 13:29:18 +00001This file is caller.def, from which is created caller.c. It implements the
2builtin "caller" in Bash.
3
Jari Aalto31859422009-01-12 13:36:28 +00004Copyright (C) 2002-2008 Rocky Bernstein for Free Software Foundation, Inc.
Chet Rameyac50fba2014-02-26 09:36:43 -05005Copyright (C) 2008-2013 Free Software Foundation, Inc.
Jari Aaltob80f6442004-07-27 13:29:18 +00006
7This file is part of GNU Bash, the Bourne Again SHell.
8
Jari Aalto31859422009-01-12 13:36:28 +00009Bash is free software: you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation, either version 3 of the License, or
12(at your option) any later version.
Jari Aaltob80f6442004-07-27 13:29:18 +000013
Jari Aalto31859422009-01-12 13:36:28 +000014Bash is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
Jari Aaltob80f6442004-07-27 13:29:18 +000018
Jari Aalto31859422009-01-12 13:36:28 +000019You should have received a copy of the GNU General Public License
20along with Bash. If not, see <http://www.gnu.org/licenses/>.
Jari Aaltob80f6442004-07-27 13:29:18 +000021
22$PRODUCES caller.c
23
24$BUILTIN caller
25$FUNCTION caller_builtin
26$DEPENDS_ON DEBUGGER
Jari Aalto31859422009-01-12 13:36:28 +000027$SHORT_DOC caller [expr]
28Return the context of the current subroutine call.
Jari Aaltob80f6442004-07-27 13:29:18 +000029
Jari Aalto31859422009-01-12 13:36:28 +000030Without EXPR, returns "$line $filename". With EXPR, returns
31"$line $subroutine $filename"; this extra information can be used to
32provide a stack trace.
Jari Aaltob80f6442004-07-27 13:29:18 +000033
34The value of EXPR indicates how many call frames to go back before the
35current one; the top frame is frame 0.
Jari Aalto31859422009-01-12 13:36:28 +000036
37Exit Status:
38Returns 0 unless the shell is not executing a shell function or EXPR
39is invalid.
Jari Aaltob80f6442004-07-27 13:29:18 +000040$END
41
42#include <config.h>
43#include <stdio.h>
44#include "chartypes.h"
45#include "bashtypes.h"
46
47#if defined (HAVE_UNISTD_H)
48# ifdef _MINIX
49# include <sys/types.h>
50# endif
51# include <unistd.h>
52#endif
53
54#include <errno.h>
55
56#include "../bashintl.h"
57
58#include "../shell.h"
59#include "common.h"
60#include "builtext.h"
Jari Aalto95732b42005-12-07 14:08:12 +000061#include "bashgetopt.h"
Jari Aaltob80f6442004-07-27 13:29:18 +000062
63#ifdef LOADABLE_BUILTIN
64# include "builtins.h"
65#endif
66
67#if !defined (errno)
Ricardo Cerqueiraa02fbff2013-07-25 22:35:34 +010068#include <errno.h>
Jari Aaltob80f6442004-07-27 13:29:18 +000069#endif /* !errno */
70
71int
72caller_builtin (list)
73 WORD_LIST *list;
74{
75#if !defined (ARRAY_VARS)
76 printf ("1 NULL\n");
77 return (EXECUTION_FAILURE);
78#else
79 SHELL_VAR *funcname_v, *bash_source_v, *bash_lineno_v;
80 ARRAY *funcname_a, *bash_source_a, *bash_lineno_a;
81 char *funcname_s, *source_s, *lineno_s;
Jari Aaltob80f6442004-07-27 13:29:18 +000082 intmax_t num;
83
84 GET_ARRAY_FROM_VAR ("FUNCNAME", funcname_v, funcname_a);
85 GET_ARRAY_FROM_VAR ("BASH_SOURCE", bash_source_v, bash_source_a);
86 GET_ARRAY_FROM_VAR ("BASH_LINENO", bash_lineno_v, bash_lineno_a);
87
88 if (bash_lineno_a == 0 || array_empty (bash_lineno_a))
89 return (EXECUTION_FAILURE);
90
91 if (bash_source_a == 0 || array_empty (bash_source_a))
92 return (EXECUTION_FAILURE);
93
Jari Aalto95732b42005-12-07 14:08:12 +000094 if (no_options (list))
95 return (EX_USAGE);
96 list = loptend; /* skip over possible `--' */
97
Jari Aaltob80f6442004-07-27 13:29:18 +000098 /* If there is no argument list, then give short form: line filename. */
99 if (list == 0)
100 {
101 lineno_s = array_reference (bash_lineno_a, 0);
102 source_s = array_reference (bash_source_a, 1);
103 printf("%s %s\n", lineno_s ? lineno_s : "NULL", source_s ? source_s : "NULL");
104 return (EXECUTION_SUCCESS);
105 }
106
107 if (funcname_a == 0 || array_empty (funcname_a))
108 return (EXECUTION_FAILURE);
109
110 if (legal_number (list->word->word, &num))
111 {
112 lineno_s = array_reference (bash_lineno_a, num);
113 source_s = array_reference (bash_source_a, num+1);
114 funcname_s = array_reference (funcname_a, num+1);
115
116 if (lineno_s == NULL|| source_s == NULL || funcname_s == NULL)
117 return (EXECUTION_FAILURE);
118
119 printf("%s %s %s\n", lineno_s, funcname_s, source_s);
120 }
121 else
122 {
123 sh_invalidnum (list->word->word);
124 builtin_usage ();
Chet Rameyac50fba2014-02-26 09:36:43 -0500125 return (EX_USAGE);
Jari Aaltob80f6442004-07-27 13:29:18 +0000126 }
127
128 return (EXECUTION_SUCCESS);
129#endif
130}
131
132#ifdef LOADABLE_BUILTIN
133static char *caller_doc[] = {
Jari Aalto31859422009-01-12 13:36:28 +0000134N_("Returns the context of the current subroutine call.\n\
135 \n\
136 Without EXPR, returns "$line $filename". With EXPR, returns\n\
137 "$line $subroutine $filename"; this extra information can be used to\n\
138 provide a stack trace.\n\
139 \n\
140 The value of EXPR indicates how many call frames to go back before the\n\
141 current one; the top frame is frame 0."),
Jari Aaltob80f6442004-07-27 13:29:18 +0000142 (char *)NULL
143};
144
145struct builtin caller_struct = {
146 "caller",
147 caller_builtin,
148 BUILTIN_ENABLED,
149 caller_doc,
150 "caller [EXPR]",
151 0
152};
153
154#endif /* LOADABLE_BUILTIN */