Imported from ../bash-2.05b.tar.gz.
[platform/upstream/bash.git] / builtins / source.def
1 This file is source.def, from which is created source.c.
2 It implements the builtins "." and  "source" in Bash.
3
4 Copyright (C) 1987-2002 Free Software Foundation, Inc.
5
6 This file is part of GNU Bash, the Bourne Again SHell.
7
8 Bash is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING.  If not, write to the Free Software
20 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
21
22 $PRODUCES source.c
23
24 $BUILTIN source
25 $FUNCTION source_builtin
26 $SHORT_DOC source filename
27 Read and execute commands from FILENAME and return.  The pathnames
28 in $PATH are used to find the directory containing FILENAME.
29 $END
30 $BUILTIN .
31 $DOCNAME dot
32 $FUNCTION source_builtin
33 $SHORT_DOC . filename
34 Read and execute commands from FILENAME and return.  The pathnames
35 in $PATH are used to find the directory containing FILENAME.
36 $END
37 /* source.c - Implements the `.' and `source' builtins. */
38
39 #include <config.h>
40
41 #include "../bashtypes.h"
42 #include "posixstat.h"
43 #include "filecntl.h"
44 #ifndef _MINIX
45 #  include <sys/file.h>
46 #endif
47 #include <errno.h>
48
49 #if defined (HAVE_UNISTD_H)
50 #  include <unistd.h>
51 #endif
52
53 #include "../bashansi.h"
54
55 #include "../shell.h"
56 #include "../findcmd.h"
57 #include "common.h"
58 #include "bashgetopt.h"
59
60 #if !defined (errno)
61 extern int errno;
62 #endif /* !errno */
63
64 #if defined (RESTRICTED_SHELL)
65 extern int restricted;
66 #endif
67
68 /* If non-zero, `.' uses $PATH to look up the script to be sourced. */
69 int source_uses_path = 1;
70
71 /* If non-zero, `.' looks in the current directory if the filename argument
72    is not found in the $PATH. */
73 int source_searches_cwd = 1;
74
75 /* If this . script is supplied arguments, we save the dollar vars and
76    replace them with the script arguments for the duration of the script's
77    execution.  If the script does not change the dollar vars, we restore
78    what we saved.  If the dollar vars are changed in the script, and we are
79    not executing a shell function, we leave the new values alone and free
80    the saved values. */
81 static void
82 maybe_pop_dollar_vars ()
83 {
84   if (variable_context == 0 && (dollar_vars_changed () & ARGS_SETBLTIN))
85     dispose_saved_dollar_vars ();
86   else
87     pop_dollar_vars ();
88   set_dollar_vars_unchanged ();
89 }
90
91 /* Read and execute commands from the file passed as argument.  Guess what.
92    This cannot be done in a subshell, since things like variable assignments
93    take place in there.  So, I open the file, place it into a large string,
94    close the file, and then execute the string. */
95 int
96 source_builtin (list)
97      WORD_LIST *list;
98 {
99   int result;
100   char *filename;
101
102   if (no_options (list))
103     return (EX_USAGE);
104   list = loptend;
105
106   if (list == 0)
107     {
108       builtin_error ("filename argument required");
109       builtin_usage ();
110       return (EX_USAGE);
111     }
112
113 #if defined (RESTRICTED_SHELL)
114   if (restricted && strchr (list->word->word, '/'))
115     {
116       sh_restricted (list->word->word);
117       return (EXECUTION_FAILURE);
118     }
119 #endif
120
121   filename = (char *)NULL;
122   if (source_uses_path)
123     filename = find_path_file (list->word->word);
124   if (filename == 0)
125     {
126       if (source_searches_cwd == 0)
127         {
128           builtin_error ("%s: file not found", list->word->word);
129           return (EXECUTION_FAILURE);
130         }
131       else
132         filename = savestring (list->word->word);
133     }
134
135   begin_unwind_frame ("source");
136   add_unwind_protect ((Function *)xfree, filename);
137
138   if (list->next)
139     {
140       push_dollar_vars ();
141       add_unwind_protect ((Function *)maybe_pop_dollar_vars, (char *)NULL);
142       remember_args (list->next, 1);
143     }
144   set_dollar_vars_unchanged ();
145
146   result = source_file (filename);
147
148   run_unwind_frame ("source");
149
150   return (result);
151 }