blob: 087689eb74cceb246eab3d7147de9d63cdb2ffeb [file] [log] [blame]
Jari Aalto726f6381996-08-26 18:22:31 +00001/* general.c -- Stuff that is used by all files. */
2
Chet Rameyac50fba2014-02-26 09:36:43 -05003/* Copyright (C) 1987-2011 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"
Chet Rameyac50fba2014-02-26 09:36:43 -050024#if defined (HAVE_SYS_PARAM_H)
Jari Aaltocce855b1998-04-17 19:52:44 +000025# 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"
Chet Rameyac50fba2014-02-26 09:36:43 -050043#include "trap.h"
Jari Aalto95732b42005-12-07 14:08:12 +000044
Jari Aalto726f6381996-08-26 18:22:31 +000045#include <tilde/tilde.h>
46
Jari Aalto726f6381996-08-26 18:22:31 +000047#if !defined (errno)
48extern int errno;
49#endif /* !errno */
50
Jari Aaltof73dda02001-11-13 17:56:06 +000051extern int expand_aliases;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000052extern int interactive_comments;
Jari Aalto28ef6c32001-04-06 19:14:31 +000053extern int check_hashed_filenames;
54extern int source_uses_path;
55extern int source_searches_cwd;
Jari Aaltocce855b1998-04-17 19:52:44 +000056
Jari Aalto7117c2d2002-07-17 14:10:11 +000057static char *bash_special_tilde_expansions __P((char *));
58static int unquoted_tilde_word __P((const char *));
59static void initialize_group_array __P((void));
60
Jari Aaltocce855b1998-04-17 19:52:44 +000061/* A standard error message to use when getcwd() returns NULL. */
Jari Aalto31859422009-01-12 13:36:28 +000062const char * const bash_getcwd_errstr = N_("getcwd: cannot access parent directories");
Jari Aalto726f6381996-08-26 18:22:31 +000063
Jari Aaltoccc6cda1996-12-23 17:02:34 +000064/* Do whatever is necessary to initialize `Posix mode'. */
Jari Aalto726f6381996-08-26 18:22:31 +000065void
Jari Aaltoccc6cda1996-12-23 17:02:34 +000066posix_initialize (on)
67 int on;
Jari Aalto726f6381996-08-26 18:22:31 +000068{
Jari Aalto28ef6c32001-04-06 19:14:31 +000069 /* Things that should be turned on when posix mode is enabled. */
70 if (on != 0)
71 {
72 interactive_comments = source_uses_path = expand_aliases = 1;
Jari Aalto31859422009-01-12 13:36:28 +000073 source_searches_cwd = 0;
Jari Aalto28ef6c32001-04-06 19:14:31 +000074 }
75
76 /* Things that should be turned on when posix mode is disabled. */
77 if (on == 0)
78 {
79 source_searches_cwd = 1;
80 expand_aliases = interactive_shell;
81 }
Jari Aalto726f6381996-08-26 18:22:31 +000082}
83
84/* **************************************************************** */
85/* */
Jari Aaltoccc6cda1996-12-23 17:02:34 +000086/* Functions to convert to and from and display non-standard types */
87/* */
88/* **************************************************************** */
89
Jari Aalto726f6381996-08-26 18:22:31 +000090#if defined (RLIMTYPE)
91RLIMTYPE
92string_to_rlimtype (s)
93 char *s;
94{
Jari Aaltocce855b1998-04-17 19:52:44 +000095 RLIMTYPE ret;
96 int neg;
Jari Aalto726f6381996-08-26 18:22:31 +000097
Jari Aaltocce855b1998-04-17 19:52:44 +000098 ret = 0;
99 neg = 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000100 while (s && *s && whitespace (*s))
101 s++;
Chet Ramey00018032011-11-21 20:51:19 -0500102 if (s && (*s == '-' || *s == '+'))
Jari Aalto726f6381996-08-26 18:22:31 +0000103 {
104 neg = *s == '-';
105 s++;
106 }
Jari Aaltof73dda02001-11-13 17:56:06 +0000107 for ( ; s && *s && DIGIT (*s); s++)
108 ret = (ret * 10) + TODIGIT (*s);
Jari Aalto726f6381996-08-26 18:22:31 +0000109 return (neg ? -ret : ret);
110}
111
112void
113print_rlimtype (n, addnl)
114 RLIMTYPE n;
115 int addnl;
116{
Jari Aaltof73dda02001-11-13 17:56:06 +0000117 char s[INT_STRLEN_BOUND (RLIMTYPE) + 1], *p;
Jari Aalto726f6381996-08-26 18:22:31 +0000118
Jari Aaltof73dda02001-11-13 17:56:06 +0000119 p = s + sizeof(s);
120 *--p = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000121
122 if (n < 0)
123 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000124 do
125 *--p = '0' - n % 10;
126 while ((n /= 10) != 0);
127
128 *--p = '-';
129 }
130 else
131 {
132 do
133 *--p = '0' + n % 10;
134 while ((n /= 10) != 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000135 }
136
Jari Aaltof73dda02001-11-13 17:56:06 +0000137 printf ("%s%s", p, addnl ? "\n" : "");
Jari Aalto726f6381996-08-26 18:22:31 +0000138}
139#endif /* RLIMTYPE */
140
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000141/* **************************************************************** */
142/* */
143/* Input Validation Functions */
144/* */
145/* **************************************************************** */
146
147/* Return non-zero if all of the characters in STRING are digits. */
148int
149all_digits (string)
150 char *string;
151{
Jari Aalto28ef6c32001-04-06 19:14:31 +0000152 register char *s;
153
154 for (s = string; *s; s++)
Jari Aaltof73dda02001-11-13 17:56:06 +0000155 if (DIGIT (*s) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000156 return (0);
157
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000158 return (1);
159}
160
161/* Return non-zero if the characters pointed to by STRING constitute a
162 valid number. Stuff the converted number into RESULT if RESULT is
Jari Aaltof73dda02001-11-13 17:56:06 +0000163 not null. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000164int
165legal_number (string, result)
Jari Aalto31859422009-01-12 13:36:28 +0000166 const char *string;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000167 intmax_t *result;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000168{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000169 intmax_t value;
Jari Aaltocce855b1998-04-17 19:52:44 +0000170 char *ep;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000171
172 if (result)
173 *result = 0;
174
Chet Rameyac50fba2014-02-26 09:36:43 -0500175 if (string == 0)
176 return 0;
177
Jari Aaltof73dda02001-11-13 17:56:06 +0000178 errno = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000179 value = strtoimax (string, &ep, 10);
Jari Aalto31859422009-01-12 13:36:28 +0000180 if (errno || ep == string)
Jari Aaltof73dda02001-11-13 17:56:06 +0000181 return 0; /* errno is set on overflow or underflow */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000182
Jari Aalto7117c2d2002-07-17 14:10:11 +0000183 /* Skip any trailing whitespace, since strtoimax does not. */
Jari Aalto28ef6c32001-04-06 19:14:31 +0000184 while (whitespace (*ep))
185 ep++;
186
Jari Aaltocce855b1998-04-17 19:52:44 +0000187 /* If *string is not '\0' but *ep is '\0' on return, the entire string
188 is valid. */
Chet Rameyac50fba2014-02-26 09:36:43 -0500189 if (*string && *ep == '\0')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000190 {
191 if (result)
Jari Aaltocce855b1998-04-17 19:52:44 +0000192 *result = value;
193 /* The SunOS4 implementation of strtol() will happily ignore
194 overflow conditions, so this cannot do overflow correctly
195 on those systems. */
196 return 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000197 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000198
199 return (0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000200}
201
Jari Aalto726f6381996-08-26 18:22:31 +0000202/* Return 1 if this token is a legal shell `identifier'; that is, it consists
203 solely of letters, digits, and underscores, and does not begin with a
204 digit. */
205int
206legal_identifier (name)
207 char *name;
208{
209 register char *s;
Jari Aaltof73dda02001-11-13 17:56:06 +0000210 unsigned char c;
Jari Aalto726f6381996-08-26 18:22:31 +0000211
Jari Aaltof73dda02001-11-13 17:56:06 +0000212 if (!name || !(c = *name) || (legal_variable_starter (c) == 0))
Jari Aalto726f6381996-08-26 18:22:31 +0000213 return (0);
214
Jari Aaltof73dda02001-11-13 17:56:06 +0000215 for (s = name + 1; (c = *s) != 0; s++)
Jari Aalto726f6381996-08-26 18:22:31 +0000216 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000217 if (legal_variable_char (c) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000218 return (0);
Jari Aalto726f6381996-08-26 18:22:31 +0000219 }
220 return (1);
221}
222
223/* Make sure that WORD is a valid shell identifier, i.e.
224 does not contain a dollar sign, nor is quoted in any way. Nor
225 does it consist of all digits. If CHECK_WORD is non-zero,
226 the word is checked to ensure that it consists of only letters,
227 digits, and underscores. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000228int
Jari Aalto726f6381996-08-26 18:22:31 +0000229check_identifier (word, check_word)
230 WORD_DESC *word;
231 int check_word;
232{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000233 if ((word->flags & (W_HASDOLLAR|W_QUOTED)) || all_digits (word->word))
Jari Aalto726f6381996-08-26 18:22:31 +0000234 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000235 internal_error (_("`%s': not a valid identifier"), word->word);
Jari Aalto726f6381996-08-26 18:22:31 +0000236 return (0);
237 }
238 else if (check_word && legal_identifier (word->word) == 0)
239 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000240 internal_error (_("`%s': not a valid identifier"), word->word);
Jari Aalto726f6381996-08-26 18:22:31 +0000241 return (0);
242 }
243 else
244 return (1);
245}
246
Jari Aaltob80f6442004-07-27 13:29:18 +0000247/* Return 1 if STRING comprises a valid alias name. The shell accepts
248 essentially all characters except those which must be quoted to the
249 parser (which disqualifies them from alias expansion anyway) and `/'. */
250int
251legal_alias_name (string, flags)
252 char *string;
253 int flags;
254{
255 register char *s;
256
257 for (s = string; *s; s++)
258 if (shellbreak (*s) || shellxquote (*s) || shellexp (*s) || (*s == '/'))
259 return 0;
260 return 1;
261}
262
Jari Aalto7117c2d2002-07-17 14:10:11 +0000263/* Returns non-zero if STRING is an assignment statement. The returned value
264 is the index of the `=' sign. */
265int
Jari Aaltob80f6442004-07-27 13:29:18 +0000266assignment (string, flags)
Jari Aalto7117c2d2002-07-17 14:10:11 +0000267 const char *string;
Jari Aaltob80f6442004-07-27 13:29:18 +0000268 int flags;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000269{
270 register unsigned char c;
271 register int newi, indx;
272
273 c = string[indx = 0];
274
Jari Aaltob80f6442004-07-27 13:29:18 +0000275#if defined (ARRAY_VARS)
Jari Aaltoeb873672004-11-09 21:37:25 +0000276 if ((legal_variable_starter (c) == 0) && (flags == 0 || c != '[')) /* ] */
Jari Aaltob80f6442004-07-27 13:29:18 +0000277#else
Jari Aalto7117c2d2002-07-17 14:10:11 +0000278 if (legal_variable_starter (c) == 0)
Jari Aaltob80f6442004-07-27 13:29:18 +0000279#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +0000280 return (0);
281
282 while (c = string[indx])
283 {
284 /* The following is safe. Note that '=' at the start of a word
285 is not an assignment statement. */
286 if (c == '=')
287 return (indx);
288
289#if defined (ARRAY_VARS)
290 if (c == '[')
291 {
Chet Ramey00018032011-11-21 20:51:19 -0500292 newi = skipsubscript (string, indx, 0);
Jari Aalto7117c2d2002-07-17 14:10:11 +0000293 if (string[newi++] != ']')
294 return (0);
Jari Aalto95732b42005-12-07 14:08:12 +0000295 if (string[newi] == '+' && string[newi+1] == '=')
296 return (newi + 1);
Jari Aalto7117c2d2002-07-17 14:10:11 +0000297 return ((string[newi] == '=') ? newi : 0);
298 }
299#endif /* ARRAY_VARS */
300
Jari Aalto95732b42005-12-07 14:08:12 +0000301 /* Check for `+=' */
302 if (c == '+' && string[indx+1] == '=')
303 return (indx + 1);
304
Jari Aalto7117c2d2002-07-17 14:10:11 +0000305 /* Variable names in assignment statements may contain only letters,
306 digits, and `_'. */
307 if (legal_variable_char (c) == 0)
308 return (0);
309
310 indx++;
311 }
312 return (0);
313}
314
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000315/* **************************************************************** */
316/* */
317/* Functions to manage files and file descriptors */
318/* */
319/* **************************************************************** */
320
Jari Aalto726f6381996-08-26 18:22:31 +0000321/* A function to unset no-delay mode on a file descriptor. Used in shell.c
322 to unset it on the fd passed as stdin. Should be called on stdin if
323 readline gets an EAGAIN or EWOULDBLOCK when trying to read input. */
324
325#if !defined (O_NDELAY)
326# if defined (FNDELAY)
327# define O_NDELAY FNDELAY
328# endif
329#endif /* O_NDELAY */
330
331/* Make sure no-delay mode is not set on file descriptor FD. */
Jari Aaltobb706242000-03-17 21:46:59 +0000332int
Jari Aalto28ef6c32001-04-06 19:14:31 +0000333sh_unset_nodelay_mode (fd)
Jari Aalto726f6381996-08-26 18:22:31 +0000334 int fd;
335{
Jari Aaltobb706242000-03-17 21:46:59 +0000336 int flags, bflags;
Jari Aalto726f6381996-08-26 18:22:31 +0000337
338 if ((flags = fcntl (fd, F_GETFL, 0)) < 0)
Jari Aaltobb706242000-03-17 21:46:59 +0000339 return -1;
Jari Aalto726f6381996-08-26 18:22:31 +0000340
Jari Aaltobb706242000-03-17 21:46:59 +0000341 bflags = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000342
343 /* This is defined to O_NDELAY in filecntl.h if O_NONBLOCK is not present
344 and O_NDELAY is defined. */
Jari Aaltobb706242000-03-17 21:46:59 +0000345#ifdef O_NONBLOCK
346 bflags |= O_NONBLOCK;
347#endif
348
349#ifdef O_NDELAY
350 bflags |= O_NDELAY;
351#endif
352
353 if (flags & bflags)
Jari Aalto726f6381996-08-26 18:22:31 +0000354 {
Jari Aaltobb706242000-03-17 21:46:59 +0000355 flags &= ~bflags;
356 return (fcntl (fd, F_SETFL, flags));
Jari Aalto726f6381996-08-26 18:22:31 +0000357 }
Jari Aalto726f6381996-08-26 18:22:31 +0000358
Jari Aaltobb706242000-03-17 21:46:59 +0000359 return 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000360}
361
Jari Aalto7117c2d2002-07-17 14:10:11 +0000362/* Return 1 if file descriptor FD is valid; 0 otherwise. */
363int
364sh_validfd (fd)
365 int fd;
366{
367 return (fcntl (fd, F_GETFD, 0) >= 0);
368}
369
Chet Ramey495aee42011-11-22 19:11:26 -0500370int
371fd_ispipe (fd)
372 int fd;
373{
374 errno = 0;
375 if (lseek ((fd), 0L, SEEK_CUR) < 0)
376 return (errno == ESPIPE);
377 return 0;
378}
379
Jari Aaltob72432f1999-02-19 17:11:39 +0000380/* There is a bug in the NeXT 2.1 rlogind that causes opens
381 of /dev/tty to fail. */
382
383#if defined (__BEOS__)
384/* On BeOS, opening in non-blocking mode exposes a bug in BeOS, so turn it
385 into a no-op. This should probably go away in the future. */
386# undef O_NONBLOCK
387# define O_NONBLOCK 0
388#endif /* __BEOS__ */
389
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000390void
391check_dev_tty ()
392{
393 int tty_fd;
394 char *tty;
395
Jari Aaltod166f041997-06-05 14:59:13 +0000396 tty_fd = open ("/dev/tty", O_RDWR|O_NONBLOCK);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000397
398 if (tty_fd < 0)
399 {
400 tty = (char *)ttyname (fileno (stdin));
401 if (tty == 0)
402 return;
Jari Aaltod166f041997-06-05 14:59:13 +0000403 tty_fd = open (tty, O_RDWR|O_NONBLOCK);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000404 }
Chet Rameyac50fba2014-02-26 09:36:43 -0500405 if (tty_fd >= 0)
406 close (tty_fd);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000407}
408
409/* Return 1 if PATH1 and PATH2 are the same file. This is kind of
410 expensive. If non-NULL STP1 and STP2 point to stat structures
411 corresponding to PATH1 and PATH2, respectively. */
412int
413same_file (path1, path2, stp1, stp2)
414 char *path1, *path2;
415 struct stat *stp1, *stp2;
416{
417 struct stat st1, st2;
418
419 if (stp1 == NULL)
420 {
421 if (stat (path1, &st1) != 0)
422 return (0);
423 stp1 = &st1;
424 }
425
426 if (stp2 == NULL)
427 {
428 if (stat (path2, &st2) != 0)
429 return (0);
430 stp2 = &st2;
431 }
432
433 return ((stp1->st_dev == stp2->st_dev) && (stp1->st_ino == stp2->st_ino));
434}
435
436/* Move FD to a number close to the maximum number of file descriptors
437 allowed in the shell process, to avoid the user stepping on it with
438 redirection and causing us extra work. If CHECK_NEW is non-zero,
439 we check whether or not the file descriptors are in use before
Jari Aaltod166f041997-06-05 14:59:13 +0000440 duplicating FD onto them. MAXFD says where to start checking the
441 file descriptors. If it's less than 20, we get the maximum value
442 available from getdtablesize(2). */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000443int
Jari Aaltod166f041997-06-05 14:59:13 +0000444move_to_high_fd (fd, check_new, maxfd)
445 int fd, check_new, maxfd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000446{
447 int script_fd, nfds, ignore;
448
Jari Aaltod166f041997-06-05 14:59:13 +0000449 if (maxfd < 20)
450 {
451 nfds = getdtablesize ();
452 if (nfds <= 0)
453 nfds = 20;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000454 if (nfds > HIGH_FD_MAX)
455 nfds = HIGH_FD_MAX; /* reasonable maximum */
Jari Aaltod166f041997-06-05 14:59:13 +0000456 }
457 else
458 nfds = maxfd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000459
460 for (nfds--; check_new && nfds > 3; nfds--)
461 if (fcntl (nfds, F_GETFD, &ignore) == -1)
462 break;
463
Jari Aalto7117c2d2002-07-17 14:10:11 +0000464 if (nfds > 3 && fd != nfds && (script_fd = dup2 (fd, nfds)) != -1)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000465 {
466 if (check_new == 0 || fd != fileno (stderr)) /* don't close stderr */
467 close (fd);
468 return (script_fd);
469 }
470
Jari Aalto7117c2d2002-07-17 14:10:11 +0000471 /* OK, we didn't find one less than our artificial maximum; return the
472 original file descriptor. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000473 return (fd);
474}
475
476/* Return non-zero if the characters from SAMPLE are not all valid
477 characters to be found in the first line of a shell script. We
478 check up to the first newline, or SAMPLE_LEN, whichever comes first.
479 All of the characters must be printable or whitespace. */
480
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000481int
482check_binary_file (sample, sample_len)
Jari Aaltof73dda02001-11-13 17:56:06 +0000483 char *sample;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000484 int sample_len;
485{
486 register int i;
Jari Aaltof73dda02001-11-13 17:56:06 +0000487 unsigned char c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000488
489 for (i = 0; i < sample_len; i++)
490 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000491 c = sample[i];
492 if (c == '\n')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000493 return (0);
Jari Aalto06285672006-10-10 14:15:34 +0000494 if (c == '\0')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000495 return (1);
496 }
497
498 return (0);
499}
Jari Aalto726f6381996-08-26 18:22:31 +0000500
501/* **************************************************************** */
502/* */
Jari Aalto31859422009-01-12 13:36:28 +0000503/* Functions to manipulate pipes */
504/* */
505/* **************************************************************** */
506
507int
508sh_openpipe (pv)
509 int *pv;
510{
511 int r;
512
513 if ((r = pipe (pv)) < 0)
514 return r;
515
516 pv[0] = move_to_high_fd (pv[0], 1, 64);
517 pv[1] = move_to_high_fd (pv[1], 1, 64);
518
519 return 0;
520}
521
522int
523sh_closepipe (pv)
524 int *pv;
525{
526 if (pv[0] >= 0)
527 close (pv[0]);
528
529 if (pv[1] >= 0)
530 close (pv[1]);
531
532 pv[0] = pv[1] = -1;
533 return 0;
534}
535
536/* **************************************************************** */
537/* */
Jari Aaltob80f6442004-07-27 13:29:18 +0000538/* Functions to inspect pathnames */
539/* */
540/* **************************************************************** */
541
542int
Jari Aalto31859422009-01-12 13:36:28 +0000543file_exists (fn)
544 char *fn;
545{
546 struct stat sb;
547
548 return (stat (fn, &sb) == 0);
549}
550
551int
Jari Aaltob80f6442004-07-27 13:29:18 +0000552file_isdir (fn)
553 char *fn;
554{
555 struct stat sb;
556
557 return ((stat (fn, &sb) == 0) && S_ISDIR (sb.st_mode));
558}
559
560int
561file_iswdir (fn)
562 char *fn;
563{
Jari Aalto06285672006-10-10 14:15:34 +0000564 return (file_isdir (fn) && sh_eaccess (fn, W_OK) == 0);
Jari Aaltob80f6442004-07-27 13:29:18 +0000565}
566
Chet Ramey495aee42011-11-22 19:11:26 -0500567/* Return 1 if STRING is "." or "..", optionally followed by a directory
568 separator */
569int
Chet Rameyac50fba2014-02-26 09:36:43 -0500570path_dot_or_dotdot (string)
Chet Ramey495aee42011-11-22 19:11:26 -0500571 const char *string;
572{
573 if (string == 0 || *string == '\0' || *string != '.')
574 return (0);
575
576 /* string[0] == '.' */
577 if (PATHSEP(string[1]) || (string[1] == '.' && PATHSEP(string[2])))
578 return (1);
579
580 return (0);
581}
582
Jari Aalto95732b42005-12-07 14:08:12 +0000583/* Return 1 if STRING contains an absolute pathname, else 0. Used by `cd'
584 to decide whether or not to look up a directory name in $CDPATH. */
585int
586absolute_pathname (string)
587 const char *string;
588{
589 if (string == 0 || *string == '\0')
590 return (0);
591
592 if (ABSPATH(string))
593 return (1);
594
595 if (string[0] == '.' && PATHSEP(string[1])) /* . and ./ */
596 return (1);
597
598 if (string[0] == '.' && string[1] == '.' && PATHSEP(string[2])) /* .. and ../ */
599 return (1);
600
601 return (0);
602}
603
604/* Return 1 if STRING is an absolute program name; it is absolute if it
605 contains any slashes. This is used to decide whether or not to look
606 up through $PATH. */
607int
608absolute_program (string)
609 const char *string;
610{
Chet Ramey00018032011-11-21 20:51:19 -0500611 return ((char *)mbschr (string, '/') != (char *)NULL);
Jari Aalto95732b42005-12-07 14:08:12 +0000612}
Jari Aaltob80f6442004-07-27 13:29:18 +0000613
614/* **************************************************************** */
615/* */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000616/* Functions to manipulate pathnames */
Jari Aalto726f6381996-08-26 18:22:31 +0000617/* */
618/* **************************************************************** */
619
Jari Aalto726f6381996-08-26 18:22:31 +0000620/* Turn STRING (a pathname) into an absolute pathname, assuming that
621 DOT_PATH contains the symbolic location of `.'. This always
622 returns a new string, even if STRING was an absolute pathname to
623 begin with. */
624char *
625make_absolute (string, dot_path)
626 char *string, *dot_path;
627{
628 char *result;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000629
Jari Aalto28ef6c32001-04-06 19:14:31 +0000630 if (dot_path == 0 || ABSPATH(string))
Jari Aaltob80f6442004-07-27 13:29:18 +0000631#ifdef __CYGWIN__
632 {
633 char pathbuf[PATH_MAX + 1];
634
635 cygwin_conv_to_full_posix_path (string, pathbuf);
636 result = savestring (pathbuf);
637 }
638#else
Jari Aalto726f6381996-08-26 18:22:31 +0000639 result = savestring (string);
Jari Aaltob80f6442004-07-27 13:29:18 +0000640#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000641 else
Jari Aaltobb706242000-03-17 21:46:59 +0000642 result = sh_makepath (dot_path, string, 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000643
644 return (result);
645}
646
Jari Aalto726f6381996-08-26 18:22:31 +0000647/* Return the `basename' of the pathname in STRING (the stuff after the
Jari Aalto95732b42005-12-07 14:08:12 +0000648 last '/'). If STRING is `/', just return it. */
Jari Aalto726f6381996-08-26 18:22:31 +0000649char *
650base_pathname (string)
651 char *string;
652{
653 char *p;
654
Jari Aalto95732b42005-12-07 14:08:12 +0000655#if 0
Jari Aalto28ef6c32001-04-06 19:14:31 +0000656 if (absolute_pathname (string) == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000657 return (string);
Jari Aalto95732b42005-12-07 14:08:12 +0000658#endif
659
660 if (string[0] == '/' && string[1] == 0)
661 return (string);
Jari Aalto726f6381996-08-26 18:22:31 +0000662
663 p = (char *)strrchr (string, '/');
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000664 return (p ? ++p : string);
Jari Aalto726f6381996-08-26 18:22:31 +0000665}
666
667/* Return the full pathname of FILE. Easy. Filenames that begin
668 with a '/' are returned as themselves. Other filenames have
669 the current working directory prepended. A new string is
670 returned in either case. */
671char *
672full_pathname (file)
673 char *file;
674{
Jari Aaltobb706242000-03-17 21:46:59 +0000675 char *ret;
Jari Aalto726f6381996-08-26 18:22:31 +0000676
Jari Aalto7117c2d2002-07-17 14:10:11 +0000677 file = (*file == '~') ? bash_tilde_expand (file, 0) : savestring (file);
Jari Aalto726f6381996-08-26 18:22:31 +0000678
Jari Aalto28ef6c32001-04-06 19:14:31 +0000679 if (ABSPATH(file))
Jari Aalto726f6381996-08-26 18:22:31 +0000680 return (file);
681
Jari Aaltobb706242000-03-17 21:46:59 +0000682 ret = sh_makepath ((char *)NULL, file, (MP_DOCWD|MP_RMDOT));
683 free (file);
Jari Aalto726f6381996-08-26 18:22:31 +0000684
Jari Aaltobb706242000-03-17 21:46:59 +0000685 return (ret);
Jari Aalto726f6381996-08-26 18:22:31 +0000686}
687
Jari Aalto726f6381996-08-26 18:22:31 +0000688/* A slightly related function. Get the prettiest name of this
689 directory possible. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000690static char tdir[PATH_MAX];
Jari Aalto726f6381996-08-26 18:22:31 +0000691
692/* Return a pretty pathname. If the first part of the pathname is
693 the same as $HOME, then replace that with `~'. */
694char *
695polite_directory_format (name)
696 char *name;
697{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000698 char *home;
699 int l;
Jari Aalto726f6381996-08-26 18:22:31 +0000700
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000701 home = get_string_value ("HOME");
702 l = home ? strlen (home) : 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000703 if (l > 1 && strncmp (home, name, l) == 0 && (!name[l] || name[l] == '/'))
704 {
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000705 strncpy (tdir + 1, name + l, sizeof(tdir) - 2);
Jari Aalto726f6381996-08-26 18:22:31 +0000706 tdir[0] = '~';
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000707 tdir[sizeof(tdir) - 1] = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000708 return (tdir);
709 }
710 else
711 return (name);
712}
713
Jari Aalto31859422009-01-12 13:36:28 +0000714/* Trim NAME. If NAME begins with `~/', skip over tilde prefix. Trim to
715 keep any tilde prefix and PROMPT_DIRTRIM trailing directory components
716 and replace the intervening characters with `...' */
717char *
718trim_pathname (name, maxlen)
719 char *name;
720 int maxlen;
721{
722 int nlen, ndirs;
723 intmax_t nskip;
724 char *nbeg, *nend, *ntail, *v;
725
726 if (name == 0 || (nlen = strlen (name)) == 0)
727 return name;
728 nend = name + nlen;
729
730 v = get_string_value ("PROMPT_DIRTRIM");
731 if (v == 0 || *v == 0)
732 return name;
733 if (legal_number (v, &nskip) == 0 || nskip <= 0)
734 return name;
735
736 /* Skip over tilde prefix */
737 nbeg = name;
738 if (name[0] == '~')
739 for (nbeg = name; *nbeg; nbeg++)
740 if (*nbeg == '/')
741 {
742 nbeg++;
743 break;
744 }
745 if (*nbeg == 0)
746 return name;
747
748 for (ndirs = 0, ntail = nbeg; *ntail; ntail++)
749 if (*ntail == '/')
750 ndirs++;
Chet Ramey00018032011-11-21 20:51:19 -0500751 if (ndirs < nskip)
Jari Aalto31859422009-01-12 13:36:28 +0000752 return name;
753
754 for (ntail = (*nend == '/') ? nend : nend - 1; ntail > nbeg; ntail--)
755 {
756 if (*ntail == '/')
757 nskip--;
758 if (nskip == 0)
759 break;
760 }
761 if (ntail == nbeg)
762 return name;
763
764 /* Now we want to return name[0..nbeg]+"..."+ntail, modifying name in place */
765 nlen = ntail - nbeg;
766 if (nlen <= 3)
767 return name;
768
769 *nbeg++ = '.';
770 *nbeg++ = '.';
771 *nbeg++ = '.';
772
773 nlen = nend - ntail;
Chet Rameyac50fba2014-02-26 09:36:43 -0500774 memmove (nbeg, ntail, nlen);
Jari Aalto31859422009-01-12 13:36:28 +0000775 nbeg[nlen] = '\0';
776
777 return name;
778}
779
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000780/* Given a string containing units of information separated by colons,
781 return the next one pointed to by (P_INDEX), or NULL if there are no more.
782 Advance (P_INDEX) to the character after the colon. */
783char *
784extract_colon_unit (string, p_index)
785 char *string;
786 int *p_index;
Jari Aalto726f6381996-08-26 18:22:31 +0000787{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000788 int i, start, len;
789 char *value;
790
791 if (string == 0)
792 return (string);
793
794 len = strlen (string);
795 if (*p_index >= len)
796 return ((char *)NULL);
797
798 i = *p_index;
799
800 /* Each call to this routine leaves the index pointing at a colon if
801 there is more to the path. If I is > 0, then increment past the
802 `:'. If I is 0, then the path has a leading colon. Trailing colons
803 are handled OK by the `else' part of the if statement; an empty
804 string is returned in that case. */
805 if (i && string[i] == ':')
806 i++;
807
808 for (start = i; string[i] && string[i] != ':'; i++)
809 ;
810
811 *p_index = i;
812
813 if (i == start)
Jari Aalto726f6381996-08-26 18:22:31 +0000814 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000815 if (string[i])
816 (*p_index)++;
817 /* Return "" in the case of a trailing `:'. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000818 value = (char *)xmalloc (1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000819 value[0] = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +0000820 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000821 else
Jari Aaltobb706242000-03-17 21:46:59 +0000822 value = substring (string, start, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000823
824 return (value);
Jari Aalto726f6381996-08-26 18:22:31 +0000825}
826
Jari Aalto726f6381996-08-26 18:22:31 +0000827/* **************************************************************** */
828/* */
829/* Tilde Initialization and Expansion */
830/* */
831/* **************************************************************** */
832
Jari Aaltocce855b1998-04-17 19:52:44 +0000833#if defined (PUSHD_AND_POPD)
834extern char *get_dirstack_from_string __P((char *));
835#endif
836
Jari Aaltof73dda02001-11-13 17:56:06 +0000837static char **bash_tilde_prefixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000838static char **bash_tilde_prefixes2;
Jari Aaltof73dda02001-11-13 17:56:06 +0000839static char **bash_tilde_suffixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000840static char **bash_tilde_suffixes2;
Jari Aaltof73dda02001-11-13 17:56:06 +0000841
Jari Aalto726f6381996-08-26 18:22:31 +0000842/* If tilde_expand hasn't been able to expand the text, perhaps it
843 is a special shell expansion. This function is installed as the
Jari Aaltocce855b1998-04-17 19:52:44 +0000844 tilde_expansion_preexpansion_hook. It knows how to expand ~- and ~+.
845 If PUSHD_AND_POPD is defined, ~[+-]N expands to directories from the
846 directory stack. */
Jari Aalto726f6381996-08-26 18:22:31 +0000847static char *
Jari Aaltod166f041997-06-05 14:59:13 +0000848bash_special_tilde_expansions (text)
Jari Aalto726f6381996-08-26 18:22:31 +0000849 char *text;
850{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000851 char *result;
Jari Aalto726f6381996-08-26 18:22:31 +0000852
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000853 result = (char *)NULL;
Jari Aaltocce855b1998-04-17 19:52:44 +0000854
855 if (text[0] == '+' && text[1] == '\0')
856 result = get_string_value ("PWD");
857 else if (text[0] == '-' && text[1] == '\0')
858 result = get_string_value ("OLDPWD");
859#if defined (PUSHD_AND_POPD)
Jari Aaltof73dda02001-11-13 17:56:06 +0000860 else if (DIGIT (*text) || ((*text == '+' || *text == '-') && DIGIT (text[1])))
Jari Aaltocce855b1998-04-17 19:52:44 +0000861 result = get_dirstack_from_string (text);
862#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000863
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000864 return (result ? savestring (result) : (char *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +0000865}
866
867/* Initialize the tilde expander. In Bash, we handle `~-' and `~+', as
868 well as handling special tilde prefixes; `:~" and `=~' are indications
869 that we should do tilde expansion. */
870void
871tilde_initialize ()
872{
873 static int times_called = 0;
874
Jari Aaltod166f041997-06-05 14:59:13 +0000875 /* Tell the tilde expander that we want a crack first. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000876 tilde_expansion_preexpansion_hook = bash_special_tilde_expansions;
Jari Aalto726f6381996-08-26 18:22:31 +0000877
878 /* Tell the tilde expander about special strings which start a tilde
879 expansion, and the special strings that end one. Only do this once.
880 tilde_initialize () is called from within bashline_reinitialize (). */
Jari Aaltocce855b1998-04-17 19:52:44 +0000881 if (times_called++ == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000882 {
Jari Aalto7117c2d2002-07-17 14:10:11 +0000883 bash_tilde_prefixes = strvec_create (3);
Jari Aaltof73dda02001-11-13 17:56:06 +0000884 bash_tilde_prefixes[0] = "=~";
885 bash_tilde_prefixes[1] = ":~";
886 bash_tilde_prefixes[2] = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +0000887
Jari Aalto95732b42005-12-07 14:08:12 +0000888 bash_tilde_prefixes2 = strvec_create (2);
889 bash_tilde_prefixes2[0] = ":~";
890 bash_tilde_prefixes2[1] = (char *)NULL;
891
Jari Aaltof73dda02001-11-13 17:56:06 +0000892 tilde_additional_prefixes = bash_tilde_prefixes;
893
Jari Aalto7117c2d2002-07-17 14:10:11 +0000894 bash_tilde_suffixes = strvec_create (3);
Jari Aaltof73dda02001-11-13 17:56:06 +0000895 bash_tilde_suffixes[0] = ":";
896 bash_tilde_suffixes[1] = "=~"; /* XXX - ?? */
897 bash_tilde_suffixes[2] = (char *)NULL;
898
899 tilde_additional_suffixes = bash_tilde_suffixes;
Jari Aalto95732b42005-12-07 14:08:12 +0000900
901 bash_tilde_suffixes2 = strvec_create (2);
902 bash_tilde_suffixes2[0] = ":";
903 bash_tilde_suffixes2[1] = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +0000904 }
Jari Aalto726f6381996-08-26 18:22:31 +0000905}
906
Jari Aaltof73dda02001-11-13 17:56:06 +0000907/* POSIX.2, 3.6.1: A tilde-prefix consists of an unquoted tilde character
908 at the beginning of the word, followed by all of the characters preceding
909 the first unquoted slash in the word, or all the characters in the word
910 if there is no slash...If none of the characters in the tilde-prefix are
911 quoted, the characters in the tilde-prefix following the tilde shell be
912 treated as a possible login name. */
913
914#define TILDE_END(c) ((c) == '\0' || (c) == '/' || (c) == ':')
915
916static int
917unquoted_tilde_word (s)
918 const char *s;
919{
920 const char *r;
921
922 for (r = s; TILDE_END(*r) == 0; r++)
923 {
924 switch (*r)
925 {
926 case '\\':
927 case '\'':
928 case '"':
929 return 0;
930 }
931 }
932 return 1;
933}
934
Jari Aalto95732b42005-12-07 14:08:12 +0000935/* Find the end of the tilde-prefix starting at S, and return the tilde
936 prefix in newly-allocated memory. Return the length of the string in
937 *LENP. FLAGS tells whether or not we're in an assignment context --
938 if so, `:' delimits the end of the tilde prefix as well. */
939char *
940bash_tilde_find_word (s, flags, lenp)
941 const char *s;
942 int flags, *lenp;
943{
944 const char *r;
945 char *ret;
946 int l;
947
948 for (r = s; *r && *r != '/'; r++)
949 {
950 /* Short-circuit immediately if we see a quote character. Even though
951 POSIX says that `the first unquoted slash' (or `:') terminates the
952 tilde-prefix, in practice, any quoted portion of the tilde prefix
953 will cause it to not be expanded. */
954 if (*r == '\\' || *r == '\'' || *r == '"')
955 {
956 ret = savestring (s);
957 if (lenp)
958 *lenp = 0;
959 return ret;
960 }
961 else if (flags && *r == ':')
962 break;
963 }
964 l = r - s;
965 ret = xmalloc (l + 1);
966 strncpy (ret, s, l);
967 ret[l] = '\0';
968 if (lenp)
969 *lenp = l;
970 return ret;
971}
972
Jari Aalto7117c2d2002-07-17 14:10:11 +0000973/* Tilde-expand S by running it through the tilde expansion library.
974 ASSIGN_P is 1 if this is a variable assignment, so the alternate
Jari Aalto95732b42005-12-07 14:08:12 +0000975 tilde prefixes should be enabled (`=~' and `:~', see above). If
976 ASSIGN_P is 2, we are expanding the rhs of an assignment statement,
977 so `=~' is not valid. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000978char *
Jari Aalto7117c2d2002-07-17 14:10:11 +0000979bash_tilde_expand (s, assign_p)
Jari Aaltof73dda02001-11-13 17:56:06 +0000980 const char *s;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000981 int assign_p;
Jari Aalto726f6381996-08-26 18:22:31 +0000982{
Jari Aalto31859422009-01-12 13:36:28 +0000983 int old_immed, old_term, r;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000984 char *ret;
Jari Aalto726f6381996-08-26 18:22:31 +0000985
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000986 old_immed = interrupt_immediately;
Jari Aalto31859422009-01-12 13:36:28 +0000987 old_term = terminate_immediately;
Chet Rameyac50fba2014-02-26 09:36:43 -0500988 /* We want to be able to interrupt tilde expansion. Ordinarily, we can just
989 jump to top_level, but we don't want to run any trap commands in a signal
990 handler context. We might be able to get away with just checking for
991 things like SIGINT and SIGQUIT. */
992 if (any_signals_trapped () < 0)
993 interrupt_immediately = 1;
994 terminate_immediately = 1;
Jari Aalto95732b42005-12-07 14:08:12 +0000995
996 tilde_additional_prefixes = assign_p == 0 ? (char **)0
997 : (assign_p == 2 ? bash_tilde_prefixes2 : bash_tilde_prefixes);
998 if (assign_p == 2)
999 tilde_additional_suffixes = bash_tilde_suffixes2;
1000
Jari Aaltof73dda02001-11-13 17:56:06 +00001001 r = (*s == '~') ? unquoted_tilde_word (s) : 1;
1002 ret = r ? tilde_expand (s) : savestring (s);
Chet Rameyac50fba2014-02-26 09:36:43 -05001003
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001004 interrupt_immediately = old_immed;
Jari Aalto31859422009-01-12 13:36:28 +00001005 terminate_immediately = old_term;
Chet Rameyac50fba2014-02-26 09:36:43 -05001006
1007 QUIT;
1008
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001009 return (ret);
Jari Aalto726f6381996-08-26 18:22:31 +00001010}
Jari Aaltod166f041997-06-05 14:59:13 +00001011
1012/* **************************************************************** */
1013/* */
1014/* Functions to manipulate and search the group list */
1015/* */
1016/* **************************************************************** */
1017
1018static int ngroups, maxgroups;
1019
1020/* The set of groups that this user is a member of. */
1021static GETGROUPS_T *group_array = (GETGROUPS_T *)NULL;
1022
1023#if !defined (NOGROUP)
1024# define NOGROUP (gid_t) -1
1025#endif
1026
Jari Aaltod166f041997-06-05 14:59:13 +00001027static void
1028initialize_group_array ()
1029{
1030 register int i;
1031
1032 if (maxgroups == 0)
1033 maxgroups = getmaxgroups ();
1034
1035 ngroups = 0;
1036 group_array = (GETGROUPS_T *)xrealloc (group_array, maxgroups * sizeof (GETGROUPS_T));
1037
1038#if defined (HAVE_GETGROUPS)
1039 ngroups = getgroups (maxgroups, group_array);
1040#endif
1041
1042 /* If getgroups returns nothing, or the OS does not support getgroups(),
1043 make sure the groups array includes at least the current gid. */
1044 if (ngroups == 0)
1045 {
1046 group_array[0] = current_user.gid;
1047 ngroups = 1;
1048 }
1049
1050 /* If the primary group is not in the groups array, add it as group_array[0]
1051 and shuffle everything else up 1, if there's room. */
1052 for (i = 0; i < ngroups; i++)
1053 if (current_user.gid == (gid_t)group_array[i])
1054 break;
1055 if (i == ngroups && ngroups < maxgroups)
1056 {
1057 for (i = ngroups; i > 0; i--)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001058 group_array[i] = group_array[i - 1];
Jari Aaltod166f041997-06-05 14:59:13 +00001059 group_array[0] = current_user.gid;
1060 ngroups++;
1061 }
Jari Aaltocce855b1998-04-17 19:52:44 +00001062
1063 /* If the primary group is not group_array[0], swap group_array[0] and
1064 whatever the current group is. The vast majority of systems should
1065 not need this; a notable exception is Linux. */
1066 if (group_array[0] != current_user.gid)
1067 {
1068 for (i = 0; i < ngroups; i++)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001069 if (group_array[i] == current_user.gid)
1070 break;
Jari Aaltocce855b1998-04-17 19:52:44 +00001071 if (i < ngroups)
1072 {
1073 group_array[i] = group_array[0];
1074 group_array[0] = current_user.gid;
1075 }
1076 }
Jari Aaltod166f041997-06-05 14:59:13 +00001077}
1078
1079/* Return non-zero if GID is one that we have in our groups list. */
1080int
Jari Aaltocce855b1998-04-17 19:52:44 +00001081#if defined (__STDC__) || defined ( _MINIX)
1082group_member (gid_t gid)
1083#else
Jari Aaltod166f041997-06-05 14:59:13 +00001084group_member (gid)
1085 gid_t gid;
Jari Aaltocce855b1998-04-17 19:52:44 +00001086#endif /* !__STDC__ && !_MINIX */
Jari Aaltod166f041997-06-05 14:59:13 +00001087{
1088#if defined (HAVE_GETGROUPS)
1089 register int i;
1090#endif
1091
1092 /* Short-circuit if possible, maybe saving a call to getgroups(). */
1093 if (gid == current_user.gid || gid == current_user.egid)
1094 return (1);
1095
1096#if defined (HAVE_GETGROUPS)
1097 if (ngroups == 0)
1098 initialize_group_array ();
1099
1100 /* In case of error, the user loses. */
1101 if (ngroups <= 0)
1102 return (0);
1103
1104 /* Search through the list looking for GID. */
1105 for (i = 0; i < ngroups; i++)
1106 if (gid == (gid_t)group_array[i])
1107 return (1);
1108#endif
1109
1110 return (0);
1111}
1112
1113char **
1114get_group_list (ngp)
1115 int *ngp;
1116{
1117 static char **group_vector = (char **)NULL;
1118 register int i;
Jari Aaltod166f041997-06-05 14:59:13 +00001119
1120 if (group_vector)
1121 {
1122 if (ngp)
1123 *ngp = ngroups;
1124 return group_vector;
1125 }
1126
1127 if (ngroups == 0)
1128 initialize_group_array ();
1129
1130 if (ngroups <= 0)
1131 {
1132 if (ngp)
1133 *ngp = 0;
1134 return (char **)NULL;
1135 }
1136
Jari Aalto7117c2d2002-07-17 14:10:11 +00001137 group_vector = strvec_create (ngroups);
Jari Aaltod166f041997-06-05 14:59:13 +00001138 for (i = 0; i < ngroups; i++)
Jari Aalto7117c2d2002-07-17 14:10:11 +00001139 group_vector[i] = itos (group_array[i]);
Jari Aaltob72432f1999-02-19 17:11:39 +00001140
Jari Aaltod166f041997-06-05 14:59:13 +00001141 if (ngp)
1142 *ngp = ngroups;
1143 return group_vector;
1144}
Jari Aaltob72432f1999-02-19 17:11:39 +00001145
1146int *
1147get_group_array (ngp)
1148 int *ngp;
1149{
1150 int i;
1151 static int *group_iarray = (int *)NULL;
1152
1153 if (group_iarray)
1154 {
1155 if (ngp)
1156 *ngp = ngroups;
1157 return (group_iarray);
1158 }
1159
1160 if (ngroups == 0)
1161 initialize_group_array ();
1162
1163 if (ngroups <= 0)
1164 {
1165 if (ngp)
1166 *ngp = 0;
1167 return (int *)NULL;
1168 }
1169
1170 group_iarray = (int *)xmalloc (ngroups * sizeof (int));
1171 for (i = 0; i < ngroups; i++)
1172 group_iarray[i] = (int)group_array[i];
1173
1174 if (ngp)
1175 *ngp = ngroups;
1176 return group_iarray;
1177}