]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/input.c
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD: head/bin/sh/input.c 314436 2017-02-28 23:42:47Z imp $");
41 #include <stdio.h> /* defines BUFSIZ */
49 * This file implements the input routines used by the parser.
62 #include "myhistedit.h"
65 #define EOF_NLEFT -99 /* value of parsenleft when EOF pushed back */
68 struct strpush
*prev
; /* preceding string on stack */
69 const char *prevstring
;
72 struct alias
*ap
; /* if push was associated with an alias */
76 * The parsefile structure pointed to by the global variable parsefile
77 * contains information about the current file being read.
81 struct parsefile
*prev
; /* preceding file on stack */
82 int linno
; /* current line */
83 int fd
; /* file descriptor (or -1 if string) */
84 int nleft
; /* number of chars left in this line */
85 int lleft
; /* number of lines left in this buffer */
86 const char *nextc
; /* next char in buffer */
87 char *buf
; /* input buffer */
88 struct strpush
*strpush
; /* for pushing strings at this level */
89 struct strpush basestrpush
; /* so pushing one is fast */
93 int plinno
= 1; /* input line number */
94 int parsenleft
; /* copy of parsefile->nleft */
95 static int parselleft
; /* copy of parsefile->lleft */
96 const char *parsenextc
; /* copy of parsefile->nextc */
97 static char basebuf
[BUFSIZ
+ 1];/* buffer for top level input file */
98 static struct parsefile basepf
= { /* top level input file */
102 static struct parsefile
*parsefile
= &basepf
; /* current input file */
103 int whichprompt
; /* 1 == PS1, 2 == PS2 */
106 EditLine
*el
; /* cookie for editline package */
107 #endif /* !__APPLE__ */
109 static void pushfile(void);
110 static int preadfd(void);
111 static void popstring(void);
114 // Remove when 28988691 is fixed. Added _ to avoid conflict with future libc definition.
116 strchrnul_(const char *p
, int ch
)
122 if (*p
== c
|| *p
== '\0')
127 #endif /* __APPLE__ */
133 parselleft
= parsenleft
= 0; /* clear input buffer */
139 * Read a character from the script, returning PEOF on end of file.
140 * Nul characters in the input are silently discarded.
146 return pgetc_macro();
154 parsenextc
= parsefile
->buf
;
158 if (parsefile
->fd
== 0 && el
) {
159 static const char *rl_cp
;
164 rl_cp
= el_gets(el
, &el_len
);
167 nr
= el_len
== 0 ? 0 : -1;
172 memcpy(parsefile
->buf
, rl_cp
, nr
);
181 nr
= read(parsefile
->fd
, parsefile
->buf
, BUFSIZ
);
187 if (parsefile
->fd
== 0 && errno
== EWOULDBLOCK
) {
188 int flags
= fcntl(0, F_GETFL
, 0);
189 if (flags
>= 0 && flags
& O_NONBLOCK
) {
190 flags
&=~ O_NONBLOCK
;
191 if (fcntl(0, F_SETFL
, flags
) >= 0) {
192 out2fmt_flush("sh: turning off NDELAY mode\n");
204 * Refill the input buffer and return the next input character:
206 * 1) If a string was pushed back on the input, pop it;
207 * 2) If an EOF was pushed back (parsenleft == EOF_NLEFT) or we are reading
208 * from a string so we can't refill the buffer, return EOF.
209 * 3) If there is more in this buffer, use it else call read to fill it.
210 * 4) Process input up to the next newline, deleting nul characters.
216 char *p
, *q
, *r
, *end
;
219 while (parsefile
->strpush
) {
221 * Add a space to the end of an alias to ensure that the
222 * alias remains in use while parsing its last word.
223 * This avoids alias recursions.
225 if (parsenleft
== -1 && parsefile
->strpush
->ap
!= NULL
)
228 if (--parsenleft
>= 0)
229 return (*parsenextc
++);
231 if (parsenleft
== EOF_NLEFT
|| parsefile
->buf
== NULL
)
235 if (parselleft
<= 0) {
236 if ((parselleft
= preadfd()) == -1) {
237 parselleft
= parsenleft
= EOF_NLEFT
;
242 p
= parsefile
->buf
+ (parsenextc
- parsefile
->buf
);
243 end
= p
+ parselleft
;
245 q
= strchrnul_(p
, '\n');
246 if (q
!= end
&& *q
== '\0') {
247 /* delete nul characters */
248 for (r
= q
; q
!= end
; q
++) {
252 parselleft
-= end
- r
;
255 end
= p
+ parselleft
;
257 q
= strchrnul_(p
, '\n');
260 parsenleft
= parselleft
;
262 } else /* *q == '\n' */ {
264 parsenleft
= q
- parsenextc
;
265 parselleft
-= parsenleft
;
273 if (parsefile
->fd
== 0 && hist
&&
274 parsenextc
[strspn(parsenextc
, " \t\n")] != '\0') {
277 history(hist
, &he
, whichprompt
== 1 ? H_ENTER
: H_ADD
,
290 return *parsenextc
++;
294 * Returns if we are certain we are at EOF. Does not cause any more input
295 * to be read from the outside world.
303 if (parsefile
->strpush
)
305 if (parsenleft
== EOF_NLEFT
|| parsefile
->buf
== NULL
)
311 * Undo the last call to pgetc. Only one character may be pushed back.
312 * PEOF may be pushed back.
323 * Push a string back onto the input at this current parsefile level.
324 * We handle aliases this way.
327 pushstring(const char *s
, int len
, struct alias
*ap
)
332 /*out2fmt_flush("*** calling pushstring: %s, %d\n", s, len);*/
333 if (parsefile
->strpush
) {
334 sp
= ckmalloc(sizeof (struct strpush
));
335 sp
->prev
= parsefile
->strpush
;
336 parsefile
->strpush
= sp
;
338 sp
= parsefile
->strpush
= &(parsefile
->basestrpush
);
339 sp
->prevstring
= parsenextc
;
340 sp
->prevnleft
= parsenleft
;
341 sp
->prevlleft
= parselleft
;
344 ap
->flag
|= ALIASINUSE
;
353 struct strpush
*sp
= parsefile
->strpush
;
357 if (parsenextc
!= sp
->ap
->val
&&
358 (parsenextc
[-1] == ' ' || parsenextc
[-1] == '\t'))
360 sp
->ap
->flag
&= ~ALIASINUSE
;
362 parsenextc
= sp
->prevstring
;
363 parsenleft
= sp
->prevnleft
;
364 parselleft
= sp
->prevlleft
;
365 /*out2fmt_flush("*** calling popstring: restoring to '%s'\n", parsenextc);*/
366 parsefile
->strpush
= sp
->prev
;
367 if (sp
!= &(parsefile
->basestrpush
))
373 * Set the input to take input from a file. If push is set, push the
374 * old input onto the stack first.
378 setinputfile(const char *fname
, int push
)
384 if ((fd
= open(fname
, O_RDONLY
| O_CLOEXEC
)) < 0)
385 error("cannot open %s: %s", fname
, strerror(errno
));
387 fd2
= fcntl(fd
, F_DUPFD_CLOEXEC
, 10);
390 error("Out of file descriptors");
393 setinputfd(fd
, push
);
399 * Like setinputfile, but takes an open file descriptor (which should have
400 * its FD_CLOEXEC flag already set). Call this with interrupts off.
404 setinputfd(int fd
, int push
)
408 parsefile
->buf
= ckmalloc(BUFSIZ
+ 1);
410 if (parsefile
->fd
> 0)
411 close(parsefile
->fd
);
413 if (parsefile
->buf
== NULL
)
414 parsefile
->buf
= ckmalloc(BUFSIZ
+ 1);
415 parselleft
= parsenleft
= 0;
421 * Like setinputfile, but takes input from a string.
425 setinputstring(const char *string
, int push
)
431 parselleft
= parsenleft
= strlen(string
);
432 parsefile
->buf
= NULL
;
440 * To handle the "." command, a stack of input files is used. Pushfile
441 * adds a new entry to the stack and popfile restores the previous level.
447 struct parsefile
*pf
;
449 parsefile
->nleft
= parsenleft
;
450 parsefile
->lleft
= parselleft
;
451 parsefile
->nextc
= parsenextc
;
452 parsefile
->linno
= plinno
;
453 pf
= (struct parsefile
*)ckmalloc(sizeof (struct parsefile
));
454 pf
->prev
= parsefile
;
457 pf
->basestrpush
.prev
= NULL
;
465 struct parsefile
*pf
= parsefile
;
474 parsefile
= pf
->prev
;
476 parsenleft
= parsefile
->nleft
;
477 parselleft
= parsefile
->lleft
;
478 parsenextc
= parsefile
->nextc
;
479 plinno
= parsefile
->linno
;
485 * Return current file (to go back to it later using popfilesupto()).
496 * Pop files until the given file is on top again. Useful for regular
497 * builtins that read shell commands from files or strings.
498 * If the given file is not an active file, an error is raised.
502 popfilesupto(struct parsefile
*file
)
504 while (parsefile
!= file
&& parsefile
!= &basepf
)
506 if (parsefile
!= file
)
507 error("popfilesupto() misused");
511 * Return to top level.
517 while (parsefile
!= &basepf
)
524 * Close the file(s) that the shell is reading commands from. Called
525 * after a fork is done.
532 if (parsefile
->fd
> 0) {
533 close(parsefile
->fd
);