blob: 4cf877fdefdd8451a5956aa611b5eeffaa782868 [file] [log] [blame]
Jari Aalto726f6381996-08-26 18:22:31 +00001/* general.c -- Stuff that is used by all files. */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 1987-2009 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00004
5 This file is part of GNU Bash, the Bourne Again SHell.
6
Jari Aalto31859422009-01-12 13:36:28 +00007 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.
Jari Aalto726f6381996-08-26 18:22:31 +000011
Jari Aalto31859422009-01-12 13:36:28 +000012 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.
Jari Aalto726f6381996-08-26 18:22:31 +000016
Jari Aalto31859422009-01-12 13:36:28 +000017 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
Jari Aalto726f6381996-08-26 18:22:31 +000020
Jari Aaltoccc6cda1996-12-23 17:02:34 +000021#include "config.h"
22
23#include "bashtypes.h"
Jari Aaltocce855b1998-04-17 19:52:44 +000024#ifndef _MINIX
25# include <sys/param.h>
26#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +000027#include "posixstat.h"
28
29#if defined (HAVE_UNISTD_H)
30# include <unistd.h>
31#endif
32
33#include "filecntl.h"
34#include "bashansi.h"
Jari Aalto726f6381996-08-26 18:22:31 +000035#include <stdio.h>
Jari Aaltof73dda02001-11-13 17:56:06 +000036#include "chartypes.h"
Jari Aalto726f6381996-08-26 18:22:31 +000037#include <errno.h>
Jari Aaltoccc6cda1996-12-23 17:02:34 +000038
Jari Aaltob80f6442004-07-27 13:29:18 +000039#include "bashintl.h"
40
Jari Aalto726f6381996-08-26 18:22:31 +000041#include "shell.h"
Jari Aalto95732b42005-12-07 14:08:12 +000042#include "test.h"
43
Jari Aalto726f6381996-08-26 18:22:31 +000044#include <tilde/tilde.h>
45
Jari Aalto726f6381996-08-26 18:22:31 +000046#if !defined (errno)
47extern int errno;
48#endif /* !errno */
49
Jari Aaltof73dda02001-11-13 17:56:06 +000050extern int expand_aliases;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000051extern int interactive_comments;
Jari Aalto28ef6c32001-04-06 19:14:31 +000052extern int check_hashed_filenames;
53extern int source_uses_path;
54extern int source_searches_cwd;
Jari Aaltocce855b1998-04-17 19:52:44 +000055
Jari Aalto7117c2d2002-07-17 14:10:11 +000056static char *bash_special_tilde_expansions __P((char *));
57static int unquoted_tilde_word __P((const char *));
58static void initialize_group_array __P((void));
59
Jari Aaltocce855b1998-04-17 19:52:44 +000060/* A standard error message to use when getcwd() returns NULL. */
Jari Aalto31859422009-01-12 13:36:28 +000061const char * const bash_getcwd_errstr = N_("getcwd: cannot access parent directories");
Jari Aalto726f6381996-08-26 18:22:31 +000062
Jari Aaltoccc6cda1996-12-23 17:02:34 +000063/* Do whatever is necessary to initialize `Posix mode'. */
Jari Aalto726f6381996-08-26 18:22:31 +000064void
Jari Aaltoccc6cda1996-12-23 17:02:34 +000065posix_initialize (on)
66 int on;
Jari Aalto726f6381996-08-26 18:22:31 +000067{
Jari Aalto28ef6c32001-04-06 19:14:31 +000068 /* Things that should be turned on when posix mode is enabled. */
69 if (on != 0)
70 {
71 interactive_comments = source_uses_path = expand_aliases = 1;
Jari Aalto31859422009-01-12 13:36:28 +000072 source_searches_cwd = 0;
Jari Aalto28ef6c32001-04-06 19:14:31 +000073 }
74
75 /* Things that should be turned on when posix mode is disabled. */
76 if (on == 0)
77 {
78 source_searches_cwd = 1;
79 expand_aliases = interactive_shell;
80 }
Jari Aalto726f6381996-08-26 18:22:31 +000081}
82
83/* **************************************************************** */
84/* */
Jari Aaltoccc6cda1996-12-23 17:02:34 +000085/* Functions to convert to and from and display non-standard types */
86/* */
87/* **************************************************************** */
88
Jari Aalto726f6381996-08-26 18:22:31 +000089#if defined (RLIMTYPE)
90RLIMTYPE
91string_to_rlimtype (s)
92 char *s;
93{
Jari Aaltocce855b1998-04-17 19:52:44 +000094 RLIMTYPE ret;
95 int neg;
Jari Aalto726f6381996-08-26 18:22:31 +000096
Jari Aaltocce855b1998-04-17 19:52:44 +000097 ret = 0;
98 neg = 0;
Jari Aalto726f6381996-08-26 18:22:31 +000099 while (s && *s && whitespace (*s))
100 s++;
101 if (*s == '-' || *s == '+')
102 {
103 neg = *s == '-';
104 s++;
105 }
Jari Aaltof73dda02001-11-13 17:56:06 +0000106 for ( ; s && *s && DIGIT (*s); s++)
107 ret = (ret * 10) + TODIGIT (*s);
Jari Aalto726f6381996-08-26 18:22:31 +0000108 return (neg ? -ret : ret);
109}
110
111void
112print_rlimtype (n, addnl)
113 RLIMTYPE n;
114 int addnl;
115{
Jari Aaltof73dda02001-11-13 17:56:06 +0000116 char s[INT_STRLEN_BOUND (RLIMTYPE) + 1], *p;
Jari Aalto726f6381996-08-26 18:22:31 +0000117
Jari Aaltof73dda02001-11-13 17:56:06 +0000118 p = s + sizeof(s);
119 *--p = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000120
121 if (n < 0)
122 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000123 do
124 *--p = '0' - n % 10;
125 while ((n /= 10) != 0);
126
127 *--p = '-';
128 }
129 else
130 {
131 do
132 *--p = '0' + n % 10;
133 while ((n /= 10) != 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000134 }
135
Jari Aaltof73dda02001-11-13 17:56:06 +0000136 printf ("%s%s", p, addnl ? "\n" : "");
Jari Aalto726f6381996-08-26 18:22:31 +0000137}
138#endif /* RLIMTYPE */
139
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000140/* **************************************************************** */
141/* */
142/* Input Validation Functions */
143/* */
144/* **************************************************************** */
145
146/* Return non-zero if all of the characters in STRING are digits. */
147int
148all_digits (string)
149 char *string;
150{
Jari Aalto28ef6c32001-04-06 19:14:31 +0000151 register char *s;
152
153 for (s = string; *s; s++)
Jari Aaltof73dda02001-11-13 17:56:06 +0000154 if (DIGIT (*s) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000155 return (0);
156
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000157 return (1);
158}
159
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
Jari Aaltof73dda02001-11-13 17:56:06 +0000162 not null. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000163int
164legal_number (string, result)
Jari Aalto31859422009-01-12 13:36:28 +0000165 const char *string;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000166 intmax_t *result;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000167{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000168 intmax_t value;
Jari Aaltocce855b1998-04-17 19:52:44 +0000169 char *ep;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000170
171 if (result)
172 *result = 0;
173
Jari Aaltof73dda02001-11-13 17:56:06 +0000174 errno = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000175 value = strtoimax (string, &ep, 10);
Jari Aalto31859422009-01-12 13:36:28 +0000176 if (errno || ep == string)
Jari Aaltof73dda02001-11-13 17:56:06 +0000177 return 0; /* errno is set on overflow or underflow */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000178
Jari Aalto7117c2d2002-07-17 14:10:11 +0000179 /* Skip any trailing whitespace, since strtoimax does not. */
Jari Aalto28ef6c32001-04-06 19:14:31 +0000180 while (whitespace (*ep))
181 ep++;
182
Jari Aaltocce855b1998-04-17 19:52:44 +0000183 /* If *string is not '\0' but *ep is '\0' on return, the entire string
184 is valid. */
185 if (string && *string && *ep == '\0')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000186 {
187 if (result)
Jari Aaltocce855b1998-04-17 19:52:44 +0000188 *result = value;
189 /* The SunOS4 implementation of strtol() will happily ignore
190 overflow conditions, so this cannot do overflow correctly
191 on those systems. */
192 return 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000193 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000194
195 return (0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000196}
197
Jari Aalto726f6381996-08-26 18:22:31 +0000198/* 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
200 digit. */
201int
202legal_identifier (name)
203 char *name;
204{
205 register char *s;
Jari Aaltof73dda02001-11-13 17:56:06 +0000206 unsigned char c;
Jari Aalto726f6381996-08-26 18:22:31 +0000207
Jari Aaltof73dda02001-11-13 17:56:06 +0000208 if (!name || !(c = *name) || (legal_variable_starter (c) == 0))
Jari Aalto726f6381996-08-26 18:22:31 +0000209 return (0);
210
Jari Aaltof73dda02001-11-13 17:56:06 +0000211 for (s = name + 1; (c = *s) != 0; s++)
Jari Aalto726f6381996-08-26 18:22:31 +0000212 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000213 if (legal_variable_char (c) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000214 return (0);
Jari Aalto726f6381996-08-26 18:22:31 +0000215 }
216 return (1);
217}
218
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. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000224int
Jari Aalto726f6381996-08-26 18:22:31 +0000225check_identifier (word, check_word)
226 WORD_DESC *word;
227 int check_word;
228{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000229 if ((word->flags & (W_HASDOLLAR|W_QUOTED)) || all_digits (word->word))
Jari Aalto726f6381996-08-26 18:22:31 +0000230 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000231 internal_error (_("`%s': not a valid identifier"), word->word);
Jari Aalto726f6381996-08-26 18:22:31 +0000232 return (0);
233 }
234 else if (check_word && legal_identifier (word->word) == 0)
235 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000236 internal_error (_("`%s': not a valid identifier"), word->word);
Jari Aalto726f6381996-08-26 18:22:31 +0000237 return (0);
238 }
239 else
240 return (1);
241}
242
Jari Aaltob80f6442004-07-27 13:29:18 +0000243/* 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 `/'. */
246int
247legal_alias_name (string, flags)
248 char *string;
249 int flags;
250{
251 register char *s;
252
253 for (s = string; *s; s++)
254 if (shellbreak (*s) || shellxquote (*s) || shellexp (*s) || (*s == '/'))
255 return 0;
256 return 1;
257}
258
Jari Aalto7117c2d2002-07-17 14:10:11 +0000259/* Returns non-zero if STRING is an assignment statement. The returned value
260 is the index of the `=' sign. */
261int
Jari Aaltob80f6442004-07-27 13:29:18 +0000262assignment (string, flags)
Jari Aalto7117c2d2002-07-17 14:10:11 +0000263 const char *string;
Jari Aaltob80f6442004-07-27 13:29:18 +0000264 int flags;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000265{
266 register unsigned char c;
267 register int newi, indx;
268
269 c = string[indx = 0];
270
Jari Aaltob80f6442004-07-27 13:29:18 +0000271#if defined (ARRAY_VARS)
Jari Aaltoeb873672004-11-09 21:37:25 +0000272 if ((legal_variable_starter (c) == 0) && (flags == 0 || c != '[')) /* ] */
Jari Aaltob80f6442004-07-27 13:29:18 +0000273#else
Jari Aalto7117c2d2002-07-17 14:10:11 +0000274 if (legal_variable_starter (c) == 0)
Jari Aaltob80f6442004-07-27 13:29:18 +0000275#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +0000276 return (0);
277
278 while (c = string[indx])
279 {
280 /* The following is safe. Note that '=' at the start of a word
281 is not an assignment statement. */
282 if (c == '=')
283 return (indx);
284
285#if defined (ARRAY_VARS)
286 if (c == '[')
287 {
288 newi = skipsubscript (string, indx);
289 if (string[newi++] != ']')
290 return (0);
Jari Aalto95732b42005-12-07 14:08:12 +0000291 if (string[newi] == '+' && string[newi+1] == '=')
292 return (newi + 1);
Jari Aalto7117c2d2002-07-17 14:10:11 +0000293 return ((string[newi] == '=') ? newi : 0);
294 }
295#endif /* ARRAY_VARS */
296
Jari Aalto95732b42005-12-07 14:08:12 +0000297 /* Check for `+=' */
298 if (c == '+' && string[indx+1] == '=')
299 return (indx + 1);
300
Jari Aalto7117c2d2002-07-17 14:10:11 +0000301 /* Variable names in assignment statements may contain only letters,
302 digits, and `_'. */
303 if (legal_variable_char (c) == 0)
304 return (0);
305
306 indx++;
307 }
308 return (0);
309}
310
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000311/* **************************************************************** */
312/* */
313/* Functions to manage files and file descriptors */
314/* */
315/* **************************************************************** */
316
Jari Aalto726f6381996-08-26 18:22:31 +0000317/* 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. */
320
321#if !defined (O_NDELAY)
322# if defined (FNDELAY)
323# define O_NDELAY FNDELAY
324# endif
325#endif /* O_NDELAY */
326
327/* Make sure no-delay mode is not set on file descriptor FD. */
Jari Aaltobb706242000-03-17 21:46:59 +0000328int
Jari Aalto28ef6c32001-04-06 19:14:31 +0000329sh_unset_nodelay_mode (fd)
Jari Aalto726f6381996-08-26 18:22:31 +0000330 int fd;
331{
Jari Aaltobb706242000-03-17 21:46:59 +0000332 int flags, bflags;
Jari Aalto726f6381996-08-26 18:22:31 +0000333
334 if ((flags = fcntl (fd, F_GETFL, 0)) < 0)
Jari Aaltobb706242000-03-17 21:46:59 +0000335 return -1;
Jari Aalto726f6381996-08-26 18:22:31 +0000336
Jari Aaltobb706242000-03-17 21:46:59 +0000337 bflags = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000338
339 /* This is defined to O_NDELAY in filecntl.h if O_NONBLOCK is not present
340 and O_NDELAY is defined. */
Jari Aaltobb706242000-03-17 21:46:59 +0000341#ifdef O_NONBLOCK
342 bflags |= O_NONBLOCK;
343#endif
344
345#ifdef O_NDELAY
346 bflags |= O_NDELAY;
347#endif
348
349 if (flags & bflags)
Jari Aalto726f6381996-08-26 18:22:31 +0000350 {
Jari Aaltobb706242000-03-17 21:46:59 +0000351 flags &= ~bflags;
352 return (fcntl (fd, F_SETFL, flags));
Jari Aalto726f6381996-08-26 18:22:31 +0000353 }
Jari Aalto726f6381996-08-26 18:22:31 +0000354
Jari Aaltobb706242000-03-17 21:46:59 +0000355 return 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000356}
357
Jari Aalto7117c2d2002-07-17 14:10:11 +0000358/* Return 1 if file descriptor FD is valid; 0 otherwise. */
359int
360sh_validfd (fd)
361 int fd;
362{
363 return (fcntl (fd, F_GETFD, 0) >= 0);
364}
365
Jari Aaltob72432f1999-02-19 17:11:39 +0000366/* There is a bug in the NeXT 2.1 rlogind that causes opens
367 of /dev/tty to fail. */
368
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. */
372# undef O_NONBLOCK
373# define O_NONBLOCK 0
374#endif /* __BEOS__ */
375
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000376void
377check_dev_tty ()
378{
379 int tty_fd;
380 char *tty;
381
Jari Aaltod166f041997-06-05 14:59:13 +0000382 tty_fd = open ("/dev/tty", O_RDWR|O_NONBLOCK);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000383
384 if (tty_fd < 0)
385 {
386 tty = (char *)ttyname (fileno (stdin));
387 if (tty == 0)
388 return;
Jari Aaltod166f041997-06-05 14:59:13 +0000389 tty_fd = open (tty, O_RDWR|O_NONBLOCK);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000390 }
391 close (tty_fd);
392}
393
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. */
397int
398same_file (path1, path2, stp1, stp2)
399 char *path1, *path2;
400 struct stat *stp1, *stp2;
401{
402 struct stat st1, st2;
403
404 if (stp1 == NULL)
405 {
406 if (stat (path1, &st1) != 0)
407 return (0);
408 stp1 = &st1;
409 }
410
411 if (stp2 == NULL)
412 {
413 if (stat (path2, &st2) != 0)
414 return (0);
415 stp2 = &st2;
416 }
417
418 return ((stp1->st_dev == stp2->st_dev) && (stp1->st_ino == stp2->st_ino));
419}
420
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
Jari Aaltod166f041997-06-05 14:59:13 +0000425 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). */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000428int
Jari Aaltod166f041997-06-05 14:59:13 +0000429move_to_high_fd (fd, check_new, maxfd)
430 int fd, check_new, maxfd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000431{
432 int script_fd, nfds, ignore;
433
Jari Aaltod166f041997-06-05 14:59:13 +0000434 if (maxfd < 20)
435 {
436 nfds = getdtablesize ();
437 if (nfds <= 0)
438 nfds = 20;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000439 if (nfds > HIGH_FD_MAX)
440 nfds = HIGH_FD_MAX; /* reasonable maximum */
Jari Aaltod166f041997-06-05 14:59:13 +0000441 }
442 else
443 nfds = maxfd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000444
445 for (nfds--; check_new && nfds > 3; nfds--)
446 if (fcntl (nfds, F_GETFD, &ignore) == -1)
447 break;
448
Jari Aalto7117c2d2002-07-17 14:10:11 +0000449 if (nfds > 3 && fd != nfds && (script_fd = dup2 (fd, nfds)) != -1)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000450 {
451 if (check_new == 0 || fd != fileno (stderr)) /* don't close stderr */
452 close (fd);
453 return (script_fd);
454 }
455
Jari Aalto7117c2d2002-07-17 14:10:11 +0000456 /* OK, we didn't find one less than our artificial maximum; return the
457 original file descriptor. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000458 return (fd);
459}
460
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. */
465
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000466int
467check_binary_file (sample, sample_len)
Jari Aaltof73dda02001-11-13 17:56:06 +0000468 char *sample;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000469 int sample_len;
470{
471 register int i;
Jari Aaltof73dda02001-11-13 17:56:06 +0000472 unsigned char c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000473
474 for (i = 0; i < sample_len; i++)
475 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000476 c = sample[i];
477 if (c == '\n')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000478 return (0);
Jari Aalto06285672006-10-10 14:15:34 +0000479 if (c == '\0')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000480 return (1);
481 }
482
483 return (0);
484}
Jari Aalto726f6381996-08-26 18:22:31 +0000485
486/* **************************************************************** */
487/* */
Jari Aalto31859422009-01-12 13:36:28 +0000488/* Functions to manipulate pipes */
489/* */
490/* **************************************************************** */
491
492int
493sh_openpipe (pv)
494 int *pv;
495{
496 int r;
497
498 if ((r = pipe (pv)) < 0)
499 return r;
500
501 pv[0] = move_to_high_fd (pv[0], 1, 64);
502 pv[1] = move_to_high_fd (pv[1], 1, 64);
503
504 return 0;
505}
506
507int
508sh_closepipe (pv)
509 int *pv;
510{
511 if (pv[0] >= 0)
512 close (pv[0]);
513
514 if (pv[1] >= 0)
515 close (pv[1]);
516
517 pv[0] = pv[1] = -1;
518 return 0;
519}
520
521/* **************************************************************** */
522/* */
Jari Aaltob80f6442004-07-27 13:29:18 +0000523/* Functions to inspect pathnames */
524/* */
525/* **************************************************************** */
526
527int
Jari Aalto31859422009-01-12 13:36:28 +0000528file_exists (fn)
529 char *fn;
530{
531 struct stat sb;
532
533 return (stat (fn, &sb) == 0);
534}
535
536int
Jari Aaltob80f6442004-07-27 13:29:18 +0000537file_isdir (fn)
538 char *fn;
539{
540 struct stat sb;
541
542 return ((stat (fn, &sb) == 0) && S_ISDIR (sb.st_mode));
543}
544
545int
546file_iswdir (fn)
547 char *fn;
548{
Jari Aalto06285672006-10-10 14:15:34 +0000549 return (file_isdir (fn) && sh_eaccess (fn, W_OK) == 0);
Jari Aaltob80f6442004-07-27 13:29:18 +0000550}
551
Jari Aalto95732b42005-12-07 14:08:12 +0000552/* 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. */
554int
555absolute_pathname (string)
556 const char *string;
557{
558 if (string == 0 || *string == '\0')
559 return (0);
560
561 if (ABSPATH(string))
562 return (1);
563
564 if (string[0] == '.' && PATHSEP(string[1])) /* . and ./ */
565 return (1);
566
567 if (string[0] == '.' && string[1] == '.' && PATHSEP(string[2])) /* .. and ../ */
568 return (1);
569
570 return (0);
571}
572
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
575 up through $PATH. */
576int
577absolute_program (string)
578 const char *string;
579{
580 return ((char *)xstrchr (string, '/') != (char *)NULL);
581}
Jari Aaltob80f6442004-07-27 13:29:18 +0000582
583/* **************************************************************** */
584/* */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000585/* Functions to manipulate pathnames */
Jari Aalto726f6381996-08-26 18:22:31 +0000586/* */
587/* **************************************************************** */
588
Jari Aalto726f6381996-08-26 18:22:31 +0000589/* 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
592 begin with. */
593char *
594make_absolute (string, dot_path)
595 char *string, *dot_path;
596{
597 char *result;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000598
Jari Aalto28ef6c32001-04-06 19:14:31 +0000599 if (dot_path == 0 || ABSPATH(string))
Jari Aaltob80f6442004-07-27 13:29:18 +0000600#ifdef __CYGWIN__
601 {
602 char pathbuf[PATH_MAX + 1];
603
604 cygwin_conv_to_full_posix_path (string, pathbuf);
605 result = savestring (pathbuf);
606 }
607#else
Jari Aalto726f6381996-08-26 18:22:31 +0000608 result = savestring (string);
Jari Aaltob80f6442004-07-27 13:29:18 +0000609#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000610 else
Jari Aaltobb706242000-03-17 21:46:59 +0000611 result = sh_makepath (dot_path, string, 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000612
613 return (result);
614}
615
Jari Aalto726f6381996-08-26 18:22:31 +0000616/* Return the `basename' of the pathname in STRING (the stuff after the
Jari Aalto95732b42005-12-07 14:08:12 +0000617 last '/'). If STRING is `/', just return it. */
Jari Aalto726f6381996-08-26 18:22:31 +0000618char *
619base_pathname (string)
620 char *string;
621{
622 char *p;
623
Jari Aalto95732b42005-12-07 14:08:12 +0000624#if 0
Jari Aalto28ef6c32001-04-06 19:14:31 +0000625 if (absolute_pathname (string) == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000626 return (string);
Jari Aalto95732b42005-12-07 14:08:12 +0000627#endif
628
629 if (string[0] == '/' && string[1] == 0)
630 return (string);
Jari Aalto726f6381996-08-26 18:22:31 +0000631
632 p = (char *)strrchr (string, '/');
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000633 return (p ? ++p : string);
Jari Aalto726f6381996-08-26 18:22:31 +0000634}
635
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. */
640char *
641full_pathname (file)
642 char *file;
643{
Jari Aaltobb706242000-03-17 21:46:59 +0000644 char *ret;
Jari Aalto726f6381996-08-26 18:22:31 +0000645
Jari Aalto7117c2d2002-07-17 14:10:11 +0000646 file = (*file == '~') ? bash_tilde_expand (file, 0) : savestring (file);
Jari Aalto726f6381996-08-26 18:22:31 +0000647
Jari Aalto28ef6c32001-04-06 19:14:31 +0000648 if (ABSPATH(file))
Jari Aalto726f6381996-08-26 18:22:31 +0000649 return (file);
650
Jari Aaltobb706242000-03-17 21:46:59 +0000651 ret = sh_makepath ((char *)NULL, file, (MP_DOCWD|MP_RMDOT));
652 free (file);
Jari Aalto726f6381996-08-26 18:22:31 +0000653
Jari Aaltobb706242000-03-17 21:46:59 +0000654 return (ret);
Jari Aalto726f6381996-08-26 18:22:31 +0000655}
656
Jari Aalto726f6381996-08-26 18:22:31 +0000657/* A slightly related function. Get the prettiest name of this
658 directory possible. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000659static char tdir[PATH_MAX];
Jari Aalto726f6381996-08-26 18:22:31 +0000660
661/* Return a pretty pathname. If the first part of the pathname is
662 the same as $HOME, then replace that with `~'. */
663char *
664polite_directory_format (name)
665 char *name;
666{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000667 char *home;
668 int l;
Jari Aalto726f6381996-08-26 18:22:31 +0000669
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000670 home = get_string_value ("HOME");
671 l = home ? strlen (home) : 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000672 if (l > 1 && strncmp (home, name, l) == 0 && (!name[l] || name[l] == '/'))
673 {
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000674 strncpy (tdir + 1, name + l, sizeof(tdir) - 2);
Jari Aalto726f6381996-08-26 18:22:31 +0000675 tdir[0] = '~';
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000676 tdir[sizeof(tdir) - 1] = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000677 return (tdir);
678 }
679 else
680 return (name);
681}
682
Jari Aalto31859422009-01-12 13:36:28 +0000683/* 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 `...' */
686char *
687trim_pathname (name, maxlen)
688 char *name;
689 int maxlen;
690{
691 int nlen, ndirs;
692 intmax_t nskip;
693 char *nbeg, *nend, *ntail, *v;
694
695 if (name == 0 || (nlen = strlen (name)) == 0)
696 return name;
697 nend = name + nlen;
698
699 v = get_string_value ("PROMPT_DIRTRIM");
700 if (v == 0 || *v == 0)
701 return name;
702 if (legal_number (v, &nskip) == 0 || nskip <= 0)
703 return name;
704
705 /* Skip over tilde prefix */
706 nbeg = name;
707 if (name[0] == '~')
708 for (nbeg = name; *nbeg; nbeg++)
709 if (*nbeg == '/')
710 {
711 nbeg++;
712 break;
713 }
714 if (*nbeg == 0)
715 return name;
716
717 for (ndirs = 0, ntail = nbeg; *ntail; ntail++)
718 if (*ntail == '/')
719 ndirs++;
720 if (ndirs <= nskip)
721 return name;
722
723 for (ntail = (*nend == '/') ? nend : nend - 1; ntail > nbeg; ntail--)
724 {
725 if (*ntail == '/')
726 nskip--;
727 if (nskip == 0)
728 break;
729 }
730 if (ntail == nbeg)
731 return name;
732
733 /* Now we want to return name[0..nbeg]+"..."+ntail, modifying name in place */
734 nlen = ntail - nbeg;
735 if (nlen <= 3)
736 return name;
737
738 *nbeg++ = '.';
739 *nbeg++ = '.';
740 *nbeg++ = '.';
741
742 nlen = nend - ntail;
743 memcpy (nbeg, ntail, nlen);
744 nbeg[nlen] = '\0';
745
746 return name;
747}
748
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000749/* 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. */
752char *
753extract_colon_unit (string, p_index)
754 char *string;
755 int *p_index;
Jari Aalto726f6381996-08-26 18:22:31 +0000756{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000757 int i, start, len;
758 char *value;
759
760 if (string == 0)
761 return (string);
762
763 len = strlen (string);
764 if (*p_index >= len)
765 return ((char *)NULL);
766
767 i = *p_index;
768
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] == ':')
775 i++;
776
777 for (start = i; string[i] && string[i] != ':'; i++)
778 ;
779
780 *p_index = i;
781
782 if (i == start)
Jari Aalto726f6381996-08-26 18:22:31 +0000783 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000784 if (string[i])
785 (*p_index)++;
786 /* Return "" in the case of a trailing `:'. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000787 value = (char *)xmalloc (1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000788 value[0] = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000789 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000790 else
Jari Aaltobb706242000-03-17 21:46:59 +0000791 value = substring (string, start, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000792
793 return (value);
Jari Aalto726f6381996-08-26 18:22:31 +0000794}
795
Jari Aalto726f6381996-08-26 18:22:31 +0000796/* **************************************************************** */
797/* */
798/* Tilde Initialization and Expansion */
799/* */
800/* **************************************************************** */
801
Jari Aaltocce855b1998-04-17 19:52:44 +0000802#if defined (PUSHD_AND_POPD)
803extern char *get_dirstack_from_string __P((char *));
804#endif
805
Jari Aaltof73dda02001-11-13 17:56:06 +0000806static char **bash_tilde_prefixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000807static char **bash_tilde_prefixes2;
Jari Aaltof73dda02001-11-13 17:56:06 +0000808static char **bash_tilde_suffixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000809static char **bash_tilde_suffixes2;
Jari Aaltof73dda02001-11-13 17:56:06 +0000810
Jari Aalto726f6381996-08-26 18:22:31 +0000811/* 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
Jari Aaltocce855b1998-04-17 19:52:44 +0000813 tilde_expansion_preexpansion_hook. It knows how to expand ~- and ~+.
814 If PUSHD_AND_POPD is defined, ~[+-]N expands to directories from the
815 directory stack. */
Jari Aalto726f6381996-08-26 18:22:31 +0000816static char *
Jari Aaltod166f041997-06-05 14:59:13 +0000817bash_special_tilde_expansions (text)
Jari Aalto726f6381996-08-26 18:22:31 +0000818 char *text;
819{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000820 char *result;
Jari Aalto726f6381996-08-26 18:22:31 +0000821
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000822 result = (char *)NULL;
Jari Aaltocce855b1998-04-17 19:52:44 +0000823
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)
Jari Aaltof73dda02001-11-13 17:56:06 +0000829 else if (DIGIT (*text) || ((*text == '+' || *text == '-') && DIGIT (text[1])))
Jari Aaltocce855b1998-04-17 19:52:44 +0000830 result = get_dirstack_from_string (text);
831#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000832
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000833 return (result ? savestring (result) : (char *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +0000834}
835
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. */
839void
840tilde_initialize ()
841{
842 static int times_called = 0;
843
Jari Aaltod166f041997-06-05 14:59:13 +0000844 /* Tell the tilde expander that we want a crack first. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000845 tilde_expansion_preexpansion_hook = bash_special_tilde_expansions;
Jari Aalto726f6381996-08-26 18:22:31 +0000846
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 (). */
Jari Aaltocce855b1998-04-17 19:52:44 +0000850 if (times_called++ == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000851 {
Jari Aalto7117c2d2002-07-17 14:10:11 +0000852 bash_tilde_prefixes = strvec_create (3);
Jari Aaltof73dda02001-11-13 17:56:06 +0000853 bash_tilde_prefixes[0] = "=~";
854 bash_tilde_prefixes[1] = ":~";
855 bash_tilde_prefixes[2] = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +0000856
Jari Aalto95732b42005-12-07 14:08:12 +0000857 bash_tilde_prefixes2 = strvec_create (2);
858 bash_tilde_prefixes2[0] = ":~";
859 bash_tilde_prefixes2[1] = (char *)NULL;
860
Jari Aaltof73dda02001-11-13 17:56:06 +0000861 tilde_additional_prefixes = bash_tilde_prefixes;
862
Jari Aalto7117c2d2002-07-17 14:10:11 +0000863 bash_tilde_suffixes = strvec_create (3);
Jari Aaltof73dda02001-11-13 17:56:06 +0000864 bash_tilde_suffixes[0] = ":";
865 bash_tilde_suffixes[1] = "=~"; /* XXX - ?? */
866 bash_tilde_suffixes[2] = (char *)NULL;
867
868 tilde_additional_suffixes = bash_tilde_suffixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000869
870 bash_tilde_suffixes2 = strvec_create (2);
871 bash_tilde_suffixes2[0] = ":";
872 bash_tilde_suffixes2[1] = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +0000873 }
Jari Aalto726f6381996-08-26 18:22:31 +0000874}
875
Jari Aaltof73dda02001-11-13 17:56:06 +0000876/* 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. */
882
883#define TILDE_END(c) ((c) == '\0' || (c) == '/' || (c) == ':')
884
885static int
886unquoted_tilde_word (s)
887 const char *s;
888{
889 const char *r;
890
891 for (r = s; TILDE_END(*r) == 0; r++)
892 {
893 switch (*r)
894 {
895 case '\\':
896 case '\'':
897 case '"':
898 return 0;
899 }
900 }
901 return 1;
902}
903
Jari Aalto95732b42005-12-07 14:08:12 +0000904/* 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. */
908char *
909bash_tilde_find_word (s, flags, lenp)
910 const char *s;
911 int flags, *lenp;
912{
913 const char *r;
914 char *ret;
915 int l;
916
917 for (r = s; *r && *r != '/'; r++)
918 {
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 == '"')
924 {
925 ret = savestring (s);
926 if (lenp)
927 *lenp = 0;
928 return ret;
929 }
930 else if (flags && *r == ':')
931 break;
932 }
933 l = r - s;
934 ret = xmalloc (l + 1);
935 strncpy (ret, s, l);
936 ret[l] = '\0';
937 if (lenp)
938 *lenp = l;
939 return ret;
940}
941
Jari Aalto7117c2d2002-07-17 14:10:11 +0000942/* 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
Jari Aalto95732b42005-12-07 14:08:12 +0000944 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. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000947char *
Jari Aalto7117c2d2002-07-17 14:10:11 +0000948bash_tilde_expand (s, assign_p)
Jari Aaltof73dda02001-11-13 17:56:06 +0000949 const char *s;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000950 int assign_p;
Jari Aalto726f6381996-08-26 18:22:31 +0000951{
Jari Aalto31859422009-01-12 13:36:28 +0000952 int old_immed, old_term, r;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000953 char *ret;
Jari Aalto726f6381996-08-26 18:22:31 +0000954
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000955 old_immed = interrupt_immediately;
Jari Aalto31859422009-01-12 13:36:28 +0000956 old_term = terminate_immediately;
957 interrupt_immediately = terminate_immediately = 1;
Jari Aalto95732b42005-12-07 14:08:12 +0000958
959 tilde_additional_prefixes = assign_p == 0 ? (char **)0
960 : (assign_p == 2 ? bash_tilde_prefixes2 : bash_tilde_prefixes);
961 if (assign_p == 2)
962 tilde_additional_suffixes = bash_tilde_suffixes2;
963
Jari Aaltof73dda02001-11-13 17:56:06 +0000964 r = (*s == '~') ? unquoted_tilde_word (s) : 1;
965 ret = r ? tilde_expand (s) : savestring (s);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000966 interrupt_immediately = old_immed;
Jari Aalto31859422009-01-12 13:36:28 +0000967 terminate_immediately = old_term;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000968 return (ret);
Jari Aalto726f6381996-08-26 18:22:31 +0000969}
Jari Aaltod166f041997-06-05 14:59:13 +0000970
971/* **************************************************************** */
972/* */
973/* Functions to manipulate and search the group list */
974/* */
975/* **************************************************************** */
976
977static int ngroups, maxgroups;
978
979/* The set of groups that this user is a member of. */
980static GETGROUPS_T *group_array = (GETGROUPS_T *)NULL;
981
982#if !defined (NOGROUP)
983# define NOGROUP (gid_t) -1
984#endif
985
Jari Aaltod166f041997-06-05 14:59:13 +0000986static void
987initialize_group_array ()
988{
989 register int i;
990
991 if (maxgroups == 0)
992 maxgroups = getmaxgroups ();
993
994 ngroups = 0;
995 group_array = (GETGROUPS_T *)xrealloc (group_array, maxgroups * sizeof (GETGROUPS_T));
996
997#if defined (HAVE_GETGROUPS)
998 ngroups = getgroups (maxgroups, group_array);
999#endif
1000
1001 /* If getgroups returns nothing, or the OS does not support getgroups(),
1002 make sure the groups array includes at least the current gid. */
1003 if (ngroups == 0)
1004 {
1005 group_array[0] = current_user.gid;
1006 ngroups = 1;
1007 }
1008
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])
1013 break;
1014 if (i == ngroups && ngroups < maxgroups)
1015 {
1016 for (i = ngroups; i > 0; i--)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001017 group_array[i] = group_array[i - 1];
Jari Aaltod166f041997-06-05 14:59:13 +00001018 group_array[0] = current_user.gid;
1019 ngroups++;
1020 }
Jari Aaltocce855b1998-04-17 19:52:44 +00001021
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)
1026 {
1027 for (i = 0; i < ngroups; i++)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001028 if (group_array[i] == current_user.gid)
1029 break;
Jari Aaltocce855b1998-04-17 19:52:44 +00001030 if (i < ngroups)
1031 {
1032 group_array[i] = group_array[0];
1033 group_array[0] = current_user.gid;
1034 }
1035 }
Jari Aaltod166f041997-06-05 14:59:13 +00001036}
1037
1038/* Return non-zero if GID is one that we have in our groups list. */
1039int
Jari Aaltocce855b1998-04-17 19:52:44 +00001040#if defined (__STDC__) || defined ( _MINIX)
1041group_member (gid_t gid)
1042#else
Jari Aaltod166f041997-06-05 14:59:13 +00001043group_member (gid)
1044 gid_t gid;
Jari Aaltocce855b1998-04-17 19:52:44 +00001045#endif /* !__STDC__ && !_MINIX */
Jari Aaltod166f041997-06-05 14:59:13 +00001046{
1047#if defined (HAVE_GETGROUPS)
1048 register int i;
1049#endif
1050
1051 /* Short-circuit if possible, maybe saving a call to getgroups(). */
1052 if (gid == current_user.gid || gid == current_user.egid)
1053 return (1);
1054
1055#if defined (HAVE_GETGROUPS)
1056 if (ngroups == 0)
1057 initialize_group_array ();
1058
1059 /* In case of error, the user loses. */
1060 if (ngroups <= 0)
1061 return (0);
1062
1063 /* Search through the list looking for GID. */
1064 for (i = 0; i < ngroups; i++)
1065 if (gid == (gid_t)group_array[i])
1066 return (1);
1067#endif
1068
1069 return (0);
1070}
1071
1072char **
1073get_group_list (ngp)
1074 int *ngp;
1075{
1076 static char **group_vector = (char **)NULL;
1077 register int i;
Jari Aaltod166f041997-06-05 14:59:13 +00001078
1079 if (group_vector)
1080 {
1081 if (ngp)
1082 *ngp = ngroups;
1083 return group_vector;
1084 }
1085
1086 if (ngroups == 0)
1087 initialize_group_array ();
1088
1089 if (ngroups <= 0)
1090 {
1091 if (ngp)
1092 *ngp = 0;
1093 return (char **)NULL;
1094 }
1095
Jari Aalto7117c2d2002-07-17 14:10:11 +00001096 group_vector = strvec_create (ngroups);
Jari Aaltod166f041997-06-05 14:59:13 +00001097 for (i = 0; i < ngroups; i++)
Jari Aalto7117c2d2002-07-17 14:10:11 +00001098 group_vector[i] = itos (group_array[i]);
Jari Aaltob72432f1999-02-19 17:11:39 +00001099
Jari Aaltod166f041997-06-05 14:59:13 +00001100 if (ngp)
1101 *ngp = ngroups;
1102 return group_vector;
1103}
Jari Aaltob72432f1999-02-19 17:11:39 +00001104
1105int *
1106get_group_array (ngp)
1107 int *ngp;
1108{
1109 int i;
1110 static int *group_iarray = (int *)NULL;
1111
1112 if (group_iarray)
1113 {
1114 if (ngp)
1115 *ngp = ngroups;
1116 return (group_iarray);
1117 }
1118
1119 if (ngroups == 0)
1120 initialize_group_array ();
1121
1122 if (ngroups <= 0)
1123 {
1124 if (ngp)
1125 *ngp = 0;
1126 return (int *)NULL;
1127 }
1128
1129 group_iarray = (int *)xmalloc (ngroups * sizeof (int));
1130 for (i = 0; i < ngroups; i++)
1131 group_iarray[i] = (int)group_array[i];
1132
1133 if (ngp)
1134 *ngp = ngroups;
1135 return group_iarray;
1136}