1 /* general.c -- Stuff that is used by all files. */
3 /* Copyright (C) 1987-2009 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
7 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
23 #include "bashtypes.h"
25 # include <sys/param.h>
27 #include "posixstat.h"
29 #if defined (HAVE_UNISTD_H)
36 #include "chartypes.h"
44 #include <tilde/tilde.h>
50 extern int expand_aliases
;
51 extern int interactive_comments
;
52 extern int check_hashed_filenames
;
53 extern int source_uses_path
;
54 extern int source_searches_cwd
;
56 static char *bash_special_tilde_expansions
__P((char *));
57 static int unquoted_tilde_word
__P((const char *));
58 static void initialize_group_array
__P((void));
60 /* A standard error message to use when getcwd() returns NULL. */
61 const char * const bash_getcwd_errstr
= N_("getcwd: cannot access parent directories");
63 /* Do whatever is necessary to initialize `Posix mode'. */
68 /* Things that should be turned on when posix mode is enabled. */
71 interactive_comments
= source_uses_path
= expand_aliases
= 1;
72 source_searches_cwd
= 0;
75 /* Things that should be turned on when posix mode is disabled. */
78 source_searches_cwd
= 1;
79 expand_aliases
= interactive_shell
;
83 /* **************************************************************** */
85 /* Functions to convert to and from and display non-standard types */
87 /* **************************************************************** */
89 #if defined (RLIMTYPE)
91 string_to_rlimtype (s
)
99 while (s
&& *s
&& whitespace (*s
))
101 if (*s
== '-' || *s
== '+')
106 for ( ; s
&& *s
&& DIGIT (*s
); s
++)
107 ret
= (ret
* 10) + TODIGIT (*s
);
108 return (neg
? -ret
: ret
);
112 print_rlimtype (n
, addnl
)
116 char s
[INT_STRLEN_BOUND (RLIMTYPE
) + 1], *p
;
125 while ((n
/= 10) != 0);
133 while ((n
/= 10) != 0);
136 printf ("%s%s", p
, addnl
? "\n" : "");
138 #endif /* RLIMTYPE */
140 /* **************************************************************** */
142 /* Input Validation Functions */
144 /* **************************************************************** */
146 /* Return non-zero if all of the characters in STRING are digits. */
153 for (s
= string
; *s
; s
++)
160 /* Return non-zero if the characters pointed to by STRING constitute a
161 valid number. Stuff the converted number into RESULT if RESULT is
164 legal_number (string
, result
)
175 value
= strtoimax (string
, &ep
, 10);
176 if (errno
|| ep
== string
)
177 return 0; /* errno is set on overflow or underflow */
179 /* Skip any trailing whitespace, since strtoimax does not. */
180 while (whitespace (*ep
))
183 /* If *string is not '\0' but *ep is '\0' on return, the entire string
185 if (string
&& *string
&& *ep
== '\0')
189 /* The SunOS4 implementation of strtol() will happily ignore
190 overflow conditions, so this cannot do overflow correctly
198 /* Return 1 if this token is a legal shell `identifier'; that is, it consists
199 solely of letters, digits, and underscores, and does not begin with a
202 legal_identifier (name
)
208 if (!name
|| !(c
= *name
) || (legal_variable_starter (c
) == 0))
211 for (s
= name
+ 1; (c
= *s
) != 0; s
++)
213 if (legal_variable_char (c
) == 0)
219 /* Make sure that WORD is a valid shell identifier, i.e.
220 does not contain a dollar sign, nor is quoted in any way. Nor
221 does it consist of all digits. If CHECK_WORD is non-zero,
222 the word is checked to ensure that it consists of only letters,
223 digits, and underscores. */
225 check_identifier (word
, check_word
)
229 if ((word
->flags
& (W_HASDOLLAR
|W_QUOTED
)) || all_digits (word
->word
))
231 internal_error (_("`%s': not a valid identifier"), word
->word
);
234 else if (check_word
&& legal_identifier (word
->word
) == 0)
236 internal_error (_("`%s': not a valid identifier"), word
->word
);
243 /* Return 1 if STRING comprises a valid alias name. The shell accepts
244 essentially all characters except those which must be quoted to the
245 parser (which disqualifies them from alias expansion anyway) and `/'. */
247 legal_alias_name (string
, flags
)
253 for (s
= string
; *s
; s
++)
254 if (shellbreak (*s
) || shellxquote (*s
) || shellexp (*s
) || (*s
== '/'))
259 /* Returns non-zero if STRING is an assignment statement. The returned value
260 is the index of the `=' sign. */
262 assignment (string
, flags
)
266 register unsigned char c
;
267 register int newi
, indx
;
269 c
= string
[indx
= 0];
271 #if defined (ARRAY_VARS)
272 if ((legal_variable_starter (c
) == 0) && (flags
== 0 || c
!= '[')) /* ] */
274 if (legal_variable_starter (c
) == 0)
278 while (c
= string
[indx
])
280 /* The following is safe. Note that '=' at the start of a word
281 is not an assignment statement. */
285 #if defined (ARRAY_VARS)
288 newi
= skipsubscript (string
, indx
);
289 if (string
[newi
++] != ']')
291 if (string
[newi
] == '+' && string
[newi
+1] == '=')
293 return ((string
[newi
] == '=') ? newi
: 0);
295 #endif /* ARRAY_VARS */
298 if (c
== '+' && string
[indx
+1] == '=')
301 /* Variable names in assignment statements may contain only letters,
303 if (legal_variable_char (c
) == 0)
311 /* **************************************************************** */
313 /* Functions to manage files and file descriptors */
315 /* **************************************************************** */
317 /* A function to unset no-delay mode on a file descriptor. Used in shell.c
318 to unset it on the fd passed as stdin. Should be called on stdin if
319 readline gets an EAGAIN or EWOULDBLOCK when trying to read input. */
321 #if !defined (O_NDELAY)
322 # if defined (FNDELAY)
323 # define O_NDELAY FNDELAY
325 #endif /* O_NDELAY */
327 /* Make sure no-delay mode is not set on file descriptor FD. */
329 sh_unset_nodelay_mode (fd
)
334 if ((flags
= fcntl (fd
, F_GETFL
, 0)) < 0)
339 /* This is defined to O_NDELAY in filecntl.h if O_NONBLOCK is not present
340 and O_NDELAY is defined. */
342 bflags
|= O_NONBLOCK
;
352 return (fcntl (fd
, F_SETFL
, flags
));
358 /* Return 1 if file descriptor FD is valid; 0 otherwise. */
363 return (fcntl (fd
, F_GETFD
, 0) >= 0);
366 /* There is a bug in the NeXT 2.1 rlogind that causes opens
367 of /dev/tty to fail. */
369 #if defined (__BEOS__)
370 /* On BeOS, opening in non-blocking mode exposes a bug in BeOS, so turn it
371 into a no-op. This should probably go away in the future. */
373 # define O_NONBLOCK 0
374 #endif /* __BEOS__ */
382 tty_fd
= open ("/dev/tty", O_RDWR
|O_NONBLOCK
);
386 tty
= (char *)ttyname (fileno (stdin
));
389 tty_fd
= open (tty
, O_RDWR
|O_NONBLOCK
);
394 /* Return 1 if PATH1 and PATH2 are the same file. This is kind of
395 expensive. If non-NULL STP1 and STP2 point to stat structures
396 corresponding to PATH1 and PATH2, respectively. */
398 same_file (path1
, path2
, stp1
, stp2
)
400 struct stat
*stp1
, *stp2
;
402 struct stat st1
, st2
;
406 if (stat (path1
, &st1
) != 0)
413 if (stat (path2
, &st2
) != 0)
418 return ((stp1
->st_dev
== stp2
->st_dev
) && (stp1
->st_ino
== stp2
->st_ino
));
421 /* Move FD to a number close to the maximum number of file descriptors
422 allowed in the shell process, to avoid the user stepping on it with
423 redirection and causing us extra work. If CHECK_NEW is non-zero,
424 we check whether or not the file descriptors are in use before
425 duplicating FD onto them. MAXFD says where to start checking the
426 file descriptors. If it's less than 20, we get the maximum value
427 available from getdtablesize(2). */
429 move_to_high_fd (fd
, check_new
, maxfd
)
430 int fd
, check_new
, maxfd
;
432 int script_fd
, nfds
, ignore
;
436 nfds
= getdtablesize ();
439 if (nfds
> HIGH_FD_MAX
)
440 nfds
= HIGH_FD_MAX
; /* reasonable maximum */
445 for (nfds
--; check_new
&& nfds
> 3; nfds
--)
446 if (fcntl (nfds
, F_GETFD
, &ignore
) == -1)
449 if (nfds
> 3 && fd
!= nfds
&& (script_fd
= dup2 (fd
, nfds
)) != -1)
451 if (check_new
== 0 || fd
!= fileno (stderr
)) /* don't close stderr */
456 /* OK, we didn't find one less than our artificial maximum; return the
457 original file descriptor. */
461 /* Return non-zero if the characters from SAMPLE are not all valid
462 characters to be found in the first line of a shell script. We
463 check up to the first newline, or SAMPLE_LEN, whichever comes first.
464 All of the characters must be printable or whitespace. */
467 check_binary_file (sample
, sample_len
)
474 for (i
= 0; i
< sample_len
; i
++)
486 /* **************************************************************** */
488 /* Functions to manipulate pipes */
490 /* **************************************************************** */
498 if ((r
= pipe (pv
)) < 0)
501 pv
[0] = move_to_high_fd (pv
[0], 1, 64);
502 pv
[1] = move_to_high_fd (pv
[1], 1, 64);
521 /* **************************************************************** */
523 /* Functions to inspect pathnames */
525 /* **************************************************************** */
533 return (stat (fn
, &sb
) == 0);
542 return ((stat (fn
, &sb
) == 0) && S_ISDIR (sb
.st_mode
));
549 return (file_isdir (fn
) && sh_eaccess (fn
, W_OK
) == 0);
552 /* Return 1 if STRING contains an absolute pathname, else 0. Used by `cd'
553 to decide whether or not to look up a directory name in $CDPATH. */
555 absolute_pathname (string
)
558 if (string
== 0 || *string
== '\0')
564 if (string
[0] == '.' && PATHSEP(string
[1])) /* . and ./ */
567 if (string
[0] == '.' && string
[1] == '.' && PATHSEP(string
[2])) /* .. and ../ */
573 /* Return 1 if STRING is an absolute program name; it is absolute if it
574 contains any slashes. This is used to decide whether or not to look
577 absolute_program (string
)
580 return ((char *)xstrchr (string
, '/') != (char *)NULL
);
583 /* **************************************************************** */
585 /* Functions to manipulate pathnames */
587 /* **************************************************************** */
589 /* Turn STRING (a pathname) into an absolute pathname, assuming that
590 DOT_PATH contains the symbolic location of `.'. This always
591 returns a new string, even if STRING was an absolute pathname to
594 make_absolute (string
, dot_path
)
595 char *string
, *dot_path
;
599 if (dot_path
== 0 || ABSPATH(string
))
602 char pathbuf
[PATH_MAX
+ 1];
604 cygwin_conv_to_full_posix_path (string
, pathbuf
);
605 result
= savestring (pathbuf
);
608 result
= savestring (string
);
611 result
= sh_makepath (dot_path
, string
, 0);
616 /* Return the `basename' of the pathname in STRING (the stuff after the
617 last '/'). If STRING is `/', just return it. */
619 base_pathname (string
)
625 if (absolute_pathname (string
) == 0)
629 if (string
[0] == '/' && string
[1] == 0)
632 p
= (char *)strrchr (string
, '/');
633 return (p
? ++p
: string
);
636 /* Return the full pathname of FILE. Easy. Filenames that begin
637 with a '/' are returned as themselves. Other filenames have
638 the current working directory prepended. A new string is
639 returned in either case. */
646 file
= (*file
== '~') ? bash_tilde_expand (file
, 0) : savestring (file
);
651 ret
= sh_makepath ((char *)NULL
, file
, (MP_DOCWD
|MP_RMDOT
));
657 /* A slightly related function. Get the prettiest name of this
658 directory possible. */
659 static char tdir
[PATH_MAX
];
661 /* Return a pretty pathname. If the first part of the pathname is
662 the same as $HOME, then replace that with `~'. */
664 polite_directory_format (name
)
670 home
= get_string_value ("HOME");
671 l
= home
? strlen (home
) : 0;
672 if (l
> 1 && strncmp (home
, name
, l
) == 0 && (!name
[l
] || name
[l
] == '/'))
674 strncpy (tdir
+ 1, name
+ l
, sizeof(tdir
) - 2);
676 tdir
[sizeof(tdir
) - 1] = '\0';
683 /* Trim NAME. If NAME begins with `~/', skip over tilde prefix. Trim to
684 keep any tilde prefix and PROMPT_DIRTRIM trailing directory components
685 and replace the intervening characters with `...' */
687 trim_pathname (name
, maxlen
)
693 char *nbeg
, *nend
, *ntail
, *v
;
695 if (name
== 0 || (nlen
= strlen (name
)) == 0)
699 v
= get_string_value ("PROMPT_DIRTRIM");
700 if (v
== 0 || *v
== 0)
702 if (legal_number (v
, &nskip
) == 0 || nskip
<= 0)
705 /* Skip over tilde prefix */
708 for (nbeg
= name
; *nbeg
; nbeg
++)
717 for (ndirs
= 0, ntail
= nbeg
; *ntail
; ntail
++)
723 for (ntail
= (*nend
== '/') ? nend
: nend
- 1; ntail
> nbeg
; ntail
--)
733 /* Now we want to return name[0..nbeg]+"..."+ntail, modifying name in place */
743 memcpy (nbeg
, ntail
, nlen
);
749 /* Given a string containing units of information separated by colons,
750 return the next one pointed to by (P_INDEX), or NULL if there are no more.
751 Advance (P_INDEX) to the character after the colon. */
753 extract_colon_unit (string
, p_index
)
763 len
= strlen (string
);
765 return ((char *)NULL
);
769 /* Each call to this routine leaves the index pointing at a colon if
770 there is more to the path. If I is > 0, then increment past the
771 `:'. If I is 0, then the path has a leading colon. Trailing colons
772 are handled OK by the `else' part of the if statement; an empty
773 string is returned in that case. */
774 if (i
&& string
[i
] == ':')
777 for (start
= i
; string
[i
] && string
[i
] != ':'; i
++)
786 /* Return "" in the case of a trailing `:'. */
787 value
= (char *)xmalloc (1);
791 value
= substring (string
, start
, i
);
796 /* **************************************************************** */
798 /* Tilde Initialization and Expansion */
800 /* **************************************************************** */
802 #if defined (PUSHD_AND_POPD)
803 extern char *get_dirstack_from_string
__P((char *));
806 static char **bash_tilde_prefixes
;
807 static char **bash_tilde_prefixes2
;
808 static char **bash_tilde_suffixes
;
809 static char **bash_tilde_suffixes2
;
811 /* If tilde_expand hasn't been able to expand the text, perhaps it
812 is a special shell expansion. This function is installed as the
813 tilde_expansion_preexpansion_hook. It knows how to expand ~- and ~+.
814 If PUSHD_AND_POPD is defined, ~[+-]N expands to directories from the
817 bash_special_tilde_expansions (text
)
822 result
= (char *)NULL
;
824 if (text
[0] == '+' && text
[1] == '\0')
825 result
= get_string_value ("PWD");
826 else if (text
[0] == '-' && text
[1] == '\0')
827 result
= get_string_value ("OLDPWD");
828 #if defined (PUSHD_AND_POPD)
829 else if (DIGIT (*text
) || ((*text
== '+' || *text
== '-') && DIGIT (text
[1])))
830 result
= get_dirstack_from_string (text
);
833 return (result
? savestring (result
) : (char *)NULL
);
836 /* Initialize the tilde expander. In Bash, we handle `~-' and `~+', as
837 well as handling special tilde prefixes; `:~" and `=~' are indications
838 that we should do tilde expansion. */
842 static int times_called
= 0;
844 /* Tell the tilde expander that we want a crack first. */
845 tilde_expansion_preexpansion_hook
= bash_special_tilde_expansions
;
847 /* Tell the tilde expander about special strings which start a tilde
848 expansion, and the special strings that end one. Only do this once.
849 tilde_initialize () is called from within bashline_reinitialize (). */
850 if (times_called
++ == 0)
852 bash_tilde_prefixes
= strvec_create (3);
853 bash_tilde_prefixes
[0] = "=~";
854 bash_tilde_prefixes
[1] = ":~";
855 bash_tilde_prefixes
[2] = (char *)NULL
;
857 bash_tilde_prefixes2
= strvec_create (2);
858 bash_tilde_prefixes2
[0] = ":~";
859 bash_tilde_prefixes2
[1] = (char *)NULL
;
861 tilde_additional_prefixes
= bash_tilde_prefixes
;
863 bash_tilde_suffixes
= strvec_create (3);
864 bash_tilde_suffixes
[0] = ":";
865 bash_tilde_suffixes
[1] = "=~"; /* XXX - ?? */
866 bash_tilde_suffixes
[2] = (char *)NULL
;
868 tilde_additional_suffixes
= bash_tilde_suffixes
;
870 bash_tilde_suffixes2
= strvec_create (2);
871 bash_tilde_suffixes2
[0] = ":";
872 bash_tilde_suffixes2
[1] = (char *)NULL
;
876 /* POSIX.2, 3.6.1: A tilde-prefix consists of an unquoted tilde character
877 at the beginning of the word, followed by all of the characters preceding
878 the first unquoted slash in the word, or all the characters in the word
879 if there is no slash...If none of the characters in the tilde-prefix are
880 quoted, the characters in the tilde-prefix following the tilde shell be
881 treated as a possible login name. */
883 #define TILDE_END(c) ((c) == '\0' || (c) == '/' || (c) == ':')
886 unquoted_tilde_word (s
)
891 for (r
= s
; TILDE_END(*r
) == 0; r
++)
904 /* Find the end of the tilde-prefix starting at S, and return the tilde
905 prefix in newly-allocated memory. Return the length of the string in
906 *LENP. FLAGS tells whether or not we're in an assignment context --
907 if so, `:' delimits the end of the tilde prefix as well. */
909 bash_tilde_find_word (s
, flags
, lenp
)
917 for (r
= s
; *r
&& *r
!= '/'; r
++)
919 /* Short-circuit immediately if we see a quote character. Even though
920 POSIX says that `the first unquoted slash' (or `:') terminates the
921 tilde-prefix, in practice, any quoted portion of the tilde prefix
922 will cause it to not be expanded. */
923 if (*r
== '\\' || *r
== '\'' || *r
== '"')
925 ret
= savestring (s
);
930 else if (flags
&& *r
== ':')
934 ret
= xmalloc (l
+ 1);
942 /* Tilde-expand S by running it through the tilde expansion library.
943 ASSIGN_P is 1 if this is a variable assignment, so the alternate
944 tilde prefixes should be enabled (`=~' and `:~', see above). If
945 ASSIGN_P is 2, we are expanding the rhs of an assignment statement,
946 so `=~' is not valid. */
948 bash_tilde_expand (s
, assign_p
)
952 int old_immed
, old_term
, r
;
955 old_immed
= interrupt_immediately
;
956 old_term
= terminate_immediately
;
957 interrupt_immediately
= terminate_immediately
= 1;
959 tilde_additional_prefixes
= assign_p
== 0 ? (char **)0
960 : (assign_p
== 2 ? bash_tilde_prefixes2
: bash_tilde_prefixes
);
962 tilde_additional_suffixes
= bash_tilde_suffixes2
;
964 r
= (*s
== '~') ? unquoted_tilde_word (s
) : 1;
965 ret
= r
? tilde_expand (s
) : savestring (s
);
966 interrupt_immediately
= old_immed
;
967 terminate_immediately
= old_term
;
971 /* **************************************************************** */
973 /* Functions to manipulate and search the group list */
975 /* **************************************************************** */
977 static int ngroups
, maxgroups
;
979 /* The set of groups that this user is a member of. */
980 static GETGROUPS_T
*group_array
= (GETGROUPS_T
*)NULL
;
982 #if !defined (NOGROUP)
983 # define NOGROUP (gid_t) -1
987 initialize_group_array ()
992 maxgroups
= getmaxgroups ();
995 group_array
= (GETGROUPS_T
*)xrealloc (group_array
, maxgroups
* sizeof (GETGROUPS_T
));
997 #if defined (HAVE_GETGROUPS)
998 ngroups
= getgroups (maxgroups
, group_array
);
1001 /* If getgroups returns nothing, or the OS does not support getgroups(),
1002 make sure the groups array includes at least the current gid. */
1005 group_array
[0] = current_user
.gid
;
1009 /* If the primary group is not in the groups array, add it as group_array[0]
1010 and shuffle everything else up 1, if there's room. */
1011 for (i
= 0; i
< ngroups
; i
++)
1012 if (current_user
.gid
== (gid_t
)group_array
[i
])
1014 if (i
== ngroups
&& ngroups
< maxgroups
)
1016 for (i
= ngroups
; i
> 0; i
--)
1017 group_array
[i
] = group_array
[i
- 1];
1018 group_array
[0] = current_user
.gid
;
1022 /* If the primary group is not group_array[0], swap group_array[0] and
1023 whatever the current group is. The vast majority of systems should
1024 not need this; a notable exception is Linux. */
1025 if (group_array
[0] != current_user
.gid
)
1027 for (i
= 0; i
< ngroups
; i
++)
1028 if (group_array
[i
] == current_user
.gid
)
1032 group_array
[i
] = group_array
[0];
1033 group_array
[0] = current_user
.gid
;
1038 /* Return non-zero if GID is one that we have in our groups list. */
1040 #if defined (__STDC__) || defined ( _MINIX)
1041 group_member (gid_t gid
)
1045 #endif /* !__STDC__ && !_MINIX */
1047 #if defined (HAVE_GETGROUPS)
1051 /* Short-circuit if possible, maybe saving a call to getgroups(). */
1052 if (gid
== current_user
.gid
|| gid
== current_user
.egid
)
1055 #if defined (HAVE_GETGROUPS)
1057 initialize_group_array ();
1059 /* In case of error, the user loses. */
1063 /* Search through the list looking for GID. */
1064 for (i
= 0; i
< ngroups
; i
++)
1065 if (gid
== (gid_t
)group_array
[i
])
1073 get_group_list (ngp
)
1076 static char **group_vector
= (char **)NULL
;
1083 return group_vector
;
1087 initialize_group_array ();
1093 return (char **)NULL
;
1096 group_vector
= strvec_create (ngroups
);
1097 for (i
= 0; i
< ngroups
; i
++)
1098 group_vector
[i
] = itos (group_array
[i
]);
1102 return group_vector
;
1106 get_group_array (ngp
)
1110 static int *group_iarray
= (int *)NULL
;
1116 return (group_iarray
);
1120 initialize_group_array ();
1129 group_iarray
= (int *)xmalloc (ngroups
* sizeof (int));
1130 for (i
= 0; i
< ngroups
; i
++)
1131 group_iarray
[i
] = (int)group_array
[i
];
1135 return group_iarray
;