VirtualBox

source: kBuild/trunk/src/kash/input.c@ 2438

Last change on this file since 2438 was 2424, checked in by bird, 14 years ago

kash: Some S-bahn optimizations.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 12.5 KB
Line 
1/* $NetBSD: input.c,v 1.39 2003/08/07 09:05:32 agc Exp $ */
2
3/*-
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Kenneth Almquist.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#if 0
36#ifndef lint
37static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
38#else
39__RCSID("$NetBSD: input.c,v 1.39 2003/08/07 09:05:32 agc Exp $");
40#endif /* not lint */
41#endif
42
43#include <stdio.h> /* defines BUFSIZ */
44#include <errno.h>
45#include <stdlib.h>
46#include <string.h>
47
48/*
49 * This file implements the input routines used by the parser.
50 */
51
52#include "shell.h"
53#include "redir.h"
54#include "syntax.h"
55#include "input.h"
56#include "output.h"
57#include "options.h"
58#include "memalloc.h"
59#include "error.h"
60#include "alias.h"
61#include "parser.h"
62#include "myhistedit.h"
63#include "shinstance.h"
64
65#define EOF_NLEFT -99 /* value of parsenleft when EOF pushed back */
66
67//MKINIT
68//struct strpush {
69// struct strpush *prev; /* preceding string on stack */
70// char *prevstring;
71// int prevnleft;
72// int prevlleft;
73// struct alias *ap; /* if push was associated with an alias */
74//};
75//
76///*
77// * The parsefile structure pointed to by the global variable parsefile
78// * contains information about the current file being read.
79// */
80//
81//MKINIT
82//struct parsefile {
83// struct parsefile *prev; /* preceding file on stack */
84// int linno; /* current line */
85// int fd; /* file descriptor (or -1 if string) */
86// int nleft; /* number of chars left in this line */
87// int lleft; /* number of chars left in this buffer */
88// char *nextc; /* next char in buffer */
89// char *buf; /* input buffer */
90// struct strpush *strpush; /* for pushing strings at this level */
91// struct strpush basestrpush; /* so pushing one is fast */
92//};
93//
94//
95//int plinno = 1; /* input line number */
96//int parsenleft; /* copy of parsefile->nleft */
97//MKINIT int parselleft; /* copy of parsefile->lleft */
98//char *parsenextc; /* copy of parsefile->nextc */
99//MKINIT struct parsefile basepf; /* top level input file */
100//MKINIT char basebuf[BUFSIZ]; /* buffer for top level input file */
101//struct parsefile *parsefile = &basepf; /* current input file */
102//int init_editline = 0; /* editline library initialized? */
103//int whichprompt; /* 1 == PS1, 2 == PS2 */
104//
105//#ifndef SMALL
106//EditLine *el; /* cookie for editline package */
107//#endif
108
109STATIC void pushfile(shinstance *psh);
110static int preadfd(shinstance *psh);
111
112#ifdef mkinit
113INCLUDE <stdio.h>
114INCLUDE "input.h"
115INCLUDE "error.h"
116
117INIT {
118 psh->basepf.nextc = psh->basepf.buf = psh->basebuf;
119}
120
121RESET {
122 if (psh->exception != EXSHELLPROC)
123 psh->parselleft = psh->parsenleft = 0; /* clear input buffer */
124 popallfiles(psh);
125}
126
127SHELLPROC {
128 popallfiles(psh);
129}
130#endif
131
132
133/*
134 * Read a line from the script.
135 */
136
137char *
138pfgets(shinstance *psh, char *line, int len)
139{
140 char *p = line;
141 int nleft = len;
142 int c;
143
144 while (--nleft > 0) {
145 c = pgetc_macro(psh);
146 if (c == PEOF) {
147 if (p == line)
148 return NULL;
149 break;
150 }
151 *p++ = c;
152 if (c == '\n')
153 break;
154 }
155 *p = '\0';
156 return line;
157}
158
159
160
161/*
162 * Read a character from the script, returning PEOF on end of file.
163 * Nul characters in the input are silently discarded.
164 */
165
166int
167pgetc(shinstance *psh)
168{
169 return pgetc_macro(psh);
170}
171
172
173static int
174preadfd(shinstance *psh)
175{
176 int nr;
177 char *buf = psh->parsefile->buf;
178 psh->parsenextc = buf;
179
180retry:
181#ifndef SMALL
182 if (psh->parsefile->fd == 0 && psh->el) {
183 static const char *rl_cp;
184 static int el_len;
185
186 if (rl_cp == NULL)
187 rl_cp = el_gets(psh->el, &el_len);
188 if (rl_cp == NULL)
189 nr = 0;
190 else {
191 nr = el_len;
192 if (nr > BUFSIZ - 8)
193 nr = BUFSIZ - 8;
194 memcpy(buf, rl_cp, nr);
195 if (nr != el_len) {
196 el_len -= nr;
197 rl_cp += nr;
198 } else
199 rl_cp = 0;
200 }
201
202 } else
203#endif
204 nr = shfile_read(&psh->fdtab, psh->parsefile->fd, buf, BUFSIZ - 8);
205
206
207 if (nr <= 0) {
208 if (nr < 0) {
209 if (errno == EINTR)
210 goto retry;
211 if (psh->parsefile->fd == 0 && errno == EWOULDBLOCK) {
212 int flags = shfile_fcntl(&psh->fdtab, 0, F_GETFL, 0);
213 if (flags >= 0 && flags & O_NONBLOCK) {
214 flags &=~ O_NONBLOCK;
215 if (shfile_fcntl(&psh->fdtab, 0, F_SETFL, flags) >= 0) {
216 out2str(psh, "sh: turning off NDELAY mode\n");
217 goto retry;
218 }
219 }
220 }
221 }
222 nr = -1;
223 } else {
224#ifdef SH_DEAL_WITH_CRLF
225 char *cr = memchr(buf, '\r', nr);
226 while (cr) {
227 size_t left = nr - (cr - buf);
228 if (left > 1 && cr[1] == '\n') {
229 left--;
230 nr--;
231 memmove(cr, cr + 1, left);
232 cr = memchr(cr, '\r', left);
233 } else {
234 cr = memchr(cr + 1, '\r', left);
235 }
236 }
237#endif
238 }
239 return nr;
240}
241
242/*
243 * Refill the input buffer and return the next input character:
244 *
245 * 1) If a string was pushed back on the input, pop it;
246 * 2) If an EOF was pushed back (parsenleft == EOF_NLEFT) or we are reading
247 * from a string so we can't refill the buffer, return EOF.
248 * 3) If the is more stuff in this buffer, use it else call read to fill it.
249 * 4) Process input up to the next newline, deleting nul characters.
250 */
251
252int
253preadbuffer(shinstance *psh)
254{
255 char *p, *q;
256 int more;
257 int something;
258 char savec;
259
260 if (psh->parsefile->strpush) {
261 popstring(psh);
262 if (--psh->parsenleft >= 0)
263 return (*psh->parsenextc++);
264 }
265 if (psh->parsenleft == EOF_NLEFT || psh->parsefile->buf == NULL)
266 return PEOF;
267 flushout(&psh->output);
268 flushout(&psh->errout);
269
270again:
271 if (psh->parselleft <= 0) {
272 if ((psh->parselleft = preadfd(psh)) == -1) {
273 psh->parselleft = psh->parsenleft = EOF_NLEFT;
274 return PEOF;
275 }
276 }
277
278 q = p = psh->parsenextc;
279
280 /* delete nul characters */
281 something = 0;
282 for (more = 1; more;) {
283 switch (*p) {
284 case '\0':
285 p++; /* Skip nul */
286 goto check;
287
288 case '\t':
289 case ' ':
290 break;
291
292 case '\n':
293 psh->parsenleft = (int)(q - psh->parsenextc);
294 more = 0; /* Stop processing here */
295 break;
296
297 default:
298 something = 1;
299 break;
300 }
301
302 *q++ = *p++;
303check:
304 if (--psh->parselleft <= 0) {
305 psh->parsenleft = (int)(q - psh->parsenextc - 1);
306 if (psh->parsenleft < 0)
307 goto again;
308 *q = '\0';
309 more = 0;
310 }
311 }
312
313 savec = *q;
314 *q = '\0';
315
316#ifndef SMALL
317 if (psh->parsefile->fd == 0 && hist && something) {
318 HistEvent he;
319 INTOFF;
320 history(hist, &he, psh->whichprompt == 1? H_ENTER : H_APPEND,
321 psh->parsenextc);
322 INTON;
323 }
324#endif
325
326 if (vflag(psh)) {
327 out2str(psh, psh->parsenextc);
328 flushout(psh->out2);
329 }
330
331 *q = savec;
332
333 return *psh->parsenextc++;
334}
335
336/*
337 * Undo the last call to pgetc. Only one character may be pushed back.
338 * PEOF may be pushed back.
339 */
340
341void
342pungetc(shinstance *psh)
343{
344 psh->parsenleft++;
345 psh->parsenextc--;
346}
347
348/*
349 * Push a string back onto the input at this current parsefile level.
350 * We handle aliases this way.
351 */
352void
353pushstring(shinstance *psh, char *s, size_t len, void *ap)
354{
355 struct strpush *sp;
356
357 INTOFF;
358/*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
359 if (psh->parsefile->strpush) {
360 sp = ckmalloc(psh, sizeof (struct strpush));
361 sp->prev = psh->parsefile->strpush;
362 psh->parsefile->strpush = sp;
363 } else
364 sp = psh->parsefile->strpush = &(psh->parsefile->basestrpush);
365 sp->prevstring = psh->parsenextc;
366 sp->prevnleft = psh->parsenleft;
367 sp->prevlleft = psh->parselleft;
368 sp->ap = (struct alias *)ap;
369 if (ap)
370 ((struct alias *)ap)->flag |= ALIASINUSE;
371 psh->parsenextc = s;
372 psh->parsenleft = (int)len;
373 INTON;
374}
375
376void
377popstring(shinstance *psh)
378{
379 struct strpush *sp = psh->parsefile->strpush;
380
381 INTOFF;
382 psh->parsenextc = sp->prevstring;
383 psh->parsenleft = sp->prevnleft;
384 psh->parselleft = sp->prevlleft;
385/*dprintf("*** calling popstring: restoring to '%s'\n", psh->parsenextc);*/
386 if (sp->ap)
387 sp->ap->flag &= ~ALIASINUSE;
388 psh->parsefile->strpush = sp->prev;
389 if (sp != &(psh->parsefile->basestrpush))
390 ckfree(psh, sp);
391 INTON;
392}
393
394/*
395 * Set the input to take input from a file. If push is set, push the
396 * old input onto the stack first.
397 */
398
399void
400setinputfile(shinstance *psh, const char *fname, int push)
401{
402 int fd;
403 int fd2;
404
405 INTOFF;
406/** @todo shfile fixme */
407 if ((fd = shfile_open(&psh->fdtab, fname, O_RDONLY, 0)) < 0)
408 error(psh, "Can't open %s", fname);
409 if (fd < 10) {
410 fd2 = movefd_above(psh, fd, 10);
411 if (fd2 < 0)
412 error(psh, "Out of file descriptors");
413 fd = fd2;
414 }
415 setinputfd(psh, fd, push);
416 INTON;
417}
418
419
420/*
421 * Like setinputfile, but takes an open file descriptor. Call this with
422 * interrupts off.
423 */
424
425void
426setinputfd(shinstance *psh, int fd, int push)
427{
428 (void) shfile_cloexec(&psh->fdtab, fd, 1 /* close it */);
429 if (push) {
430 pushfile(psh);
431 psh->parsefile->buf = ckmalloc(psh, BUFSIZ);
432 }
433 if (psh->parsefile->fd > 0)
434 shfile_close(&psh->fdtab, psh->parsefile->fd);
435 psh->parsefile->fd = fd;
436 if (psh->parsefile->buf == NULL)
437 psh->parsefile->buf = ckmalloc(psh, BUFSIZ);
438 psh->parselleft = psh->parsenleft = 0;
439 psh->plinno = 1;
440}
441
442
443/*
444 * Like setinputfile, but takes input from a string.
445 */
446
447void
448setinputstring(shinstance *psh, char *string, int push)
449{
450 INTOFF;
451 if (push)
452 pushfile(psh);
453 psh->parsenextc = string;
454 psh->parselleft = psh->parsenleft = (int)strlen(string);
455 psh->parsefile->buf = NULL;
456 psh->plinno = 1;
457 INTON;
458}
459
460
461
462/*
463 * To handle the "." command, a stack of input files is used. Pushfile
464 * adds a new entry to the stack and popfile restores the previous level.
465 */
466
467STATIC void
468pushfile(shinstance *psh)
469{
470 struct parsefile *pf;
471
472 psh->parsefile->nleft = psh->parsenleft;
473 psh->parsefile->lleft = psh->parselleft;
474 psh->parsefile->nextc = psh->parsenextc;
475 psh->parsefile->linno = psh->plinno;
476 pf = (struct parsefile *)ckmalloc(psh, sizeof (struct parsefile));
477 pf->prev = psh->parsefile;
478 pf->fd = -1;
479 pf->strpush = NULL;
480 pf->basestrpush.prev = NULL;
481 psh->parsefile = pf;
482}
483
484
485void
486popfile(shinstance *psh)
487{
488 struct parsefile *pf = psh->parsefile;
489
490 INTOFF;
491 if (pf->fd >= 0)
492 shfile_close(&psh->fdtab, pf->fd);
493 if (pf->buf)
494 ckfree(psh, pf->buf);
495 while (pf->strpush)
496 popstring(psh);
497 psh->parsefile = pf->prev;
498 ckfree(psh, pf);
499 psh->parsenleft = psh->parsefile->nleft;
500 psh->parselleft = psh->parsefile->lleft;
501 psh->parsenextc = psh->parsefile->nextc;
502 psh->plinno = psh->parsefile->linno;
503 INTON;
504}
505
506
507/*
508 * Return to top level.
509 */
510
511void
512popallfiles(shinstance *psh)
513{
514 while (psh->parsefile != &psh->basepf)
515 popfile(psh);
516}
517
518
519
520/*
521 * Close the file(s) that the shell is reading commands from. Called
522 * after a fork is done.
523 *
524 * Takes one arg, vfork, which tells it to not modify its global vars
525 * as it is still running in the parent.
526 *
527 * This code is (probably) unnecessary as the 'close on exec' flag is
528 * set and should be enough. In the vfork case it is definitely wrong
529 * to close the fds as another fork() may be done later to feed data
530 * from a 'here' document into a pipe and we don't want to close the
531 * pipe!
532 */
533
534void
535closescript(shinstance *psh, int vforked)
536{
537 if (vforked)
538 return;
539 popallfiles(psh);
540 if (psh->parsefile->fd > 0) {
541 shfile_close(&psh->fdtab, psh->parsefile->fd);
542 psh->parsefile->fd = 0;
543 }
544}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette