]> git.ipfire.org Git - thirdparty/bash.git/blob - builtins/read.def
Bash-4.4 patch 16
[thirdparty/bash.git] / builtins / read.def
1 This file is read.def, from which is created read.c.
2 It implements the builtin "read" in Bash.
3
4 Copyright (C) 1987-2015 Free Software Foundation, Inc.
5
6 This file is part of GNU Bash, the Bourne Again SHell.
7
8 Bash is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 Bash is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Bash. If not, see <http://www.gnu.org/licenses/>.
20
21 $PRODUCES read.c
22
23 $BUILTIN read
24 $FUNCTION read_builtin
25 $SHORT_DOC read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]
26 Read a line from the standard input and split it into fields.
27
28 Reads a single line from the standard input, or from file descriptor FD
29 if the -u option is supplied. The line is split into fields as with word
30 splitting, and the first word is assigned to the first NAME, the second
31 word to the second NAME, and so on, with any leftover words assigned to
32 the last NAME. Only the characters found in $IFS are recognized as word
33 delimiters.
34
35 If no NAMEs are supplied, the line read is stored in the REPLY variable.
36
37 Options:
38 -a array assign the words read to sequential indices of the array
39 variable ARRAY, starting at zero
40 -d delim continue until the first character of DELIM is read, rather
41 than newline
42 -e use Readline to obtain the line in an interactive shell
43 -i text use TEXT as the initial text for Readline
44 -n nchars return after reading NCHARS characters rather than waiting
45 for a newline, but honor a delimiter if fewer than
46 NCHARS characters are read before the delimiter
47 -N nchars return only after reading exactly NCHARS characters, unless
48 EOF is encountered or read times out, ignoring any
49 delimiter
50 -p prompt output the string PROMPT without a trailing newline before
51 attempting to read
52 -r do not allow backslashes to escape any characters
53 -s do not echo input coming from a terminal
54 -t timeout time out and return failure if a complete line of
55 input is not read within TIMEOUT seconds. The value of the
56 TMOUT variable is the default timeout. TIMEOUT may be a
57 fractional number. If TIMEOUT is 0, read returns
58 immediately, without trying to read any data, returning
59 success only if input is available on the specified
60 file descriptor. The exit status is greater than 128
61 if the timeout is exceeded
62 -u fd read from file descriptor FD instead of the standard input
63
64 Exit Status:
65 The return code is zero, unless end-of-file is encountered, read times out
66 (in which case it's greater than 128), a variable assignment error occurs,
67 or an invalid file descriptor is supplied as the argument to -u.
68 $END
69
70 #include <config.h>
71
72 #include "bashtypes.h"
73 #include "posixstat.h"
74
75 #include <stdio.h>
76
77 #include "bashansi.h"
78
79 #if defined (HAVE_UNISTD_H)
80 # include <unistd.h>
81 #endif
82
83 #include <signal.h>
84 #include <errno.h>
85
86 #ifdef __CYGWIN__
87 # include <fcntl.h>
88 # include <io.h>
89 #endif
90
91 #include "../bashintl.h"
92
93 #include "../shell.h"
94 #include "common.h"
95 #include "bashgetopt.h"
96
97 #include <shtty.h>
98
99 #if defined (READLINE)
100 #include "../bashline.h"
101 #include <readline/readline.h>
102 #endif
103
104 #if defined (BUFFERED_INPUT)
105 # include "input.h"
106 #endif
107
108 #include "shmbutil.h"
109
110 #if !defined(errno)
111 extern int errno;
112 #endif
113
114 extern void run_pending_traps __P((void));
115
116 extern int posixly_correct;
117 extern int trapped_signal_received;
118
119 struct ttsave
120 {
121 int fd;
122 TTYSTRUCT *attrs;
123 };
124
125 #if defined (READLINE)
126 static void reset_attempted_completion_function __P((char *));
127 static int set_itext __P((void));
128 static char *edit_line __P((char *, char *));
129 static void set_eol_delim __P((int));
130 static void reset_eol_delim __P((char *));
131 #endif
132 static SHELL_VAR *bind_read_variable __P((char *, char *));
133 #if defined (HANDLE_MULTIBYTE)
134 static int read_mbchar __P((int, char *, int, int, int));
135 #endif
136 static void ttyrestore __P((struct ttsave *));
137
138 static sighandler sigalrm __P((int));
139 static void reset_alarm __P((void));
140
141 /* Try this to see what the rest of the shell can do with the information. */
142 procenv_t alrmbuf;
143 int sigalrm_seen;
144
145 static int reading, tty_modified;
146 static SigHandler *old_alrm;
147 static unsigned char delim;
148
149 static struct ttsave termsave;
150
151 /* In all cases, SIGALRM just sets a flag that we check periodically. This
152 avoids problems with the semi-tricky stuff we do with the xfree of
153 input_string at the top of the unwind-protect list (see below). */
154
155 /* Set a flag that CHECK_ALRM can check. This relies on zread calling
156 trap.c:check_signals_and_traps(), which knows about sigalrm_seen and
157 alrmbuf. */
158 static sighandler
159 sigalrm (s)
160 int s;
161 {
162 sigalrm_seen = 1;
163 }
164
165 static void
166 reset_alarm ()
167 {
168 /* Cancel alarm before restoring signal handler. */
169 falarm (0, 0);
170 set_signal_handler (SIGALRM, old_alrm);
171 }
172
173 /* Read the value of the shell variables whose names follow.
174 The reading is done from the current input stream, whatever
175 that may be. Successive words of the input line are assigned
176 to the variables mentioned in LIST. The last variable in LIST
177 gets the remainder of the words on the line. If no variables
178 are mentioned in LIST, then the default variable is $REPLY. */
179 int
180 read_builtin (list)
181 WORD_LIST *list;
182 {
183 register char *varname;
184 int size, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
185 volatile int i;
186 int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
187 int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
188 unsigned int tmsec, tmusec;
189 long ival, uval;
190 intmax_t intval;
191 char c;
192 char *input_string, *orig_input_string, *ifs_chars, *prompt, *arrayname;
193 char *e, *t, *t1, *ps2, *tofree;
194 struct stat tsb;
195 SHELL_VAR *var;
196 TTYSTRUCT ttattrs, ttset;
197 #if defined (ARRAY_VARS)
198 WORD_LIST *alist;
199 #endif
200 #if defined (READLINE)
201 char *rlbuf, *itext;
202 int rlind;
203 #endif
204
205 USE_VAR(size);
206 USE_VAR(i);
207 USE_VAR(pass_next);
208 USE_VAR(print_ps2);
209 USE_VAR(saw_escape);
210 USE_VAR(input_is_pipe);
211 /* USE_VAR(raw); */
212 USE_VAR(edit);
213 USE_VAR(tmsec);
214 USE_VAR(tmusec);
215 USE_VAR(nchars);
216 USE_VAR(silent);
217 USE_VAR(ifs_chars);
218 USE_VAR(prompt);
219 USE_VAR(arrayname);
220 #if defined (READLINE)
221 USE_VAR(rlbuf);
222 USE_VAR(rlind);
223 USE_VAR(itext);
224 #endif
225 USE_VAR(list);
226 USE_VAR(ps2);
227 USE_VAR(lastsig);
228
229 sigalrm_seen = reading = tty_modified = 0;
230
231 i = 0; /* Index into the string that we are reading. */
232 raw = edit = 0; /* Not reading raw input by default. */
233 silent = 0;
234 arrayname = prompt = (char *)NULL;
235 fd = 0; /* file descriptor to read from */
236
237 #if defined (READLINE)
238 rlbuf = itext = (char *)0;
239 rlind = 0;
240 #endif
241
242 tmsec = tmusec = 0; /* no timeout */
243 nr = nchars = input_is_tty = input_is_pipe = unbuffered_read = have_timeout = 0;
244 delim = '\n'; /* read until newline */
245 ignore_delim = 0;
246
247 reset_internal_getopt ();
248 while ((opt = internal_getopt (list, "ersa:d:i:n:p:t:u:N:")) != -1)
249 {
250 switch (opt)
251 {
252 case 'r':
253 raw = 1;
254 break;
255 case 'p':
256 prompt = list_optarg;
257 break;
258 case 's':
259 silent = 1;
260 break;
261 case 'e':
262 #if defined (READLINE)
263 edit = 1;
264 #endif
265 break;
266 case 'i':
267 #if defined (READLINE)
268 itext = list_optarg;
269 #endif
270 break;
271 #if defined (ARRAY_VARS)
272 case 'a':
273 arrayname = list_optarg;
274 break;
275 #endif
276 case 't':
277 code = uconvert (list_optarg, &ival, &uval);
278 if (code == 0 || ival < 0 || uval < 0)
279 {
280 builtin_error (_("%s: invalid timeout specification"), list_optarg);
281 return (EXECUTION_FAILURE);
282 }
283 else
284 {
285 have_timeout = 1;
286 tmsec = ival;
287 tmusec = uval;
288 }
289 break;
290 case 'N':
291 ignore_delim = 1;
292 delim = -1;
293 case 'n':
294 code = legal_number (list_optarg, &intval);
295 if (code == 0 || intval < 0 || intval != (int)intval)
296 {
297 sh_invalidnum (list_optarg);
298 return (EXECUTION_FAILURE);
299 }
300 else
301 nchars = intval;
302 break;
303 case 'u':
304 code = legal_number (list_optarg, &intval);
305 if (code == 0 || intval < 0 || intval != (int)intval)
306 {
307 builtin_error (_("%s: invalid file descriptor specification"), list_optarg);
308 return (EXECUTION_FAILURE);
309 }
310 else
311 fd = intval;
312 if (sh_validfd (fd) == 0)
313 {
314 builtin_error (_("%d: invalid file descriptor: %s"), fd, strerror (errno));
315 return (EXECUTION_FAILURE);
316 }
317 break;
318 case 'd':
319 delim = *list_optarg;
320 break;
321 CASE_HELPOPT;
322 default:
323 builtin_usage ();
324 return (EX_USAGE);
325 }
326 }
327 list = loptend;
328
329 /* `read -t 0 var' tests whether input is available with select/FIONREAD,
330 and fails if those are unavailable */
331 if (have_timeout && tmsec == 0 && tmusec == 0)
332 #if 0
333 return (EXECUTION_FAILURE);
334 #else
335 return (input_avail (fd) ? EXECUTION_SUCCESS : EXECUTION_FAILURE);
336 #endif
337
338 /* Convenience: check early whether or not the first of possibly several
339 variable names is a valid identifier, and bail early if so. */
340 #if defined (ARRAY_VARS)
341 if (list && legal_identifier (list->word->word) == 0 && valid_array_reference (list->word->word, 0) == 0)
342 #else
343 if (list && legal_identifier (list->word->word) == 0)
344 #endif
345 {
346 sh_invalidid (list->word->word);
347 return (EXECUTION_FAILURE);
348 }
349
350 /* If we're asked to ignore the delimiter, make sure we do. */
351 if (ignore_delim)
352 delim = -1;
353
354 /* IF IFS is unset, we use the default of " \t\n". */
355 ifs_chars = getifs ();
356 if (ifs_chars == 0) /* XXX - shouldn't happen */
357 ifs_chars = "";
358 /* If we want to read exactly NCHARS chars, don't split on IFS */
359 if (ignore_delim)
360 ifs_chars = "";
361 for (skip_ctlesc = skip_ctlnul = 0, e = ifs_chars; *e; e++)
362 skip_ctlesc |= *e == CTLESC, skip_ctlnul |= *e == CTLNUL;
363
364 input_string = (char *)xmalloc (size = 112); /* XXX was 128 */
365 input_string[0] = '\0';
366
367 /* $TMOUT, if set, is the default timeout for read. */
368 if (have_timeout == 0 && (e = get_string_value ("TMOUT")))
369 {
370 code = uconvert (e, &ival, &uval);
371 if (code == 0 || ival < 0 || uval < 0)
372 tmsec = tmusec = 0;
373 else
374 {
375 tmsec = ival;
376 tmusec = uval;
377 }
378 }
379
380 begin_unwind_frame ("read_builtin");
381
382 #if defined (BUFFERED_INPUT)
383 if (interactive == 0 && default_buffered_input >= 0 && fd_is_bash_input (fd))
384 sync_buffered_stream (default_buffered_input);
385 #endif
386
387 input_is_tty = isatty (fd);
388 if (input_is_tty == 0)
389 #ifndef __CYGWIN__
390 input_is_pipe = (lseek (fd, 0L, SEEK_CUR) < 0) && (errno == ESPIPE);
391 #else
392 input_is_pipe = 1;
393 #endif
394
395 /* If the -p, -e or -s flags were given, but input is not coming from the
396 terminal, turn them off. */
397 if ((prompt || edit || silent) && input_is_tty == 0)
398 {
399 prompt = (char *)NULL;
400 #if defined (READLINE)
401 itext = (char *)NULL;
402 #endif
403 edit = silent = 0;
404 }
405
406 #if defined (READLINE)
407 if (edit)
408 add_unwind_protect (xfree, rlbuf);
409 #endif
410
411 pass_next = 0; /* Non-zero signifies last char was backslash. */
412 saw_escape = 0; /* Non-zero signifies that we saw an escape char */
413
414 if (tmsec > 0 || tmusec > 0)
415 {
416 /* Turn off the timeout if stdin is a regular file (e.g. from
417 input redirection). */
418 if ((fstat (fd, &tsb) < 0) || S_ISREG (tsb.st_mode))
419 tmsec = tmusec = 0;
420 }
421
422 if (tmsec > 0 || tmusec > 0)
423 {
424 code = setjmp_nosigs (alrmbuf);
425 if (code)
426 {
427 sigalrm_seen = 0;
428 /* Tricky. The top of the unwind-protect stack is the free of
429 input_string. We want to run all the rest and use input_string,
430 so we have to save input_string temporarily, run the unwind-
431 protects, then restore input_string so we can use it later */
432 orig_input_string = 0;
433 input_string[i] = '\0'; /* make sure it's terminated */
434 if (i == 0)
435 {
436 t = (char *)xmalloc (1);
437 t[0] = 0;
438 }
439 else
440 t = savestring (input_string);
441
442 run_unwind_frame ("read_builtin");
443 input_string = t;
444 retval = 128+SIGALRM;
445 goto assign_vars;
446 }
447 if (interactive_shell == 0)
448 initialize_terminating_signals ();
449 old_alrm = set_signal_handler (SIGALRM, sigalrm);
450 add_unwind_protect (reset_alarm, (char *)NULL);
451 #if defined (READLINE)
452 if (edit)
453 {
454 add_unwind_protect (reset_attempted_completion_function, (char *)NULL);
455 add_unwind_protect (bashline_reset_event_hook, (char *)NULL);
456 }
457 #endif
458 falarm (tmsec, tmusec);
459 }
460
461 /* If we've been asked to read only NCHARS chars, or we're using some
462 character other than newline to terminate the line, do the right
463 thing to readline or the tty. */
464 if (nchars > 0 || delim != '\n')
465 {
466 #if defined (READLINE)
467 if (edit)
468 {
469 if (nchars > 0)
470 {
471 unwind_protect_int (rl_num_chars_to_read);
472 rl_num_chars_to_read = nchars;
473 }
474 if (delim != '\n')
475 {
476 set_eol_delim (delim);
477 add_unwind_protect (reset_eol_delim, (char *)NULL);
478 }
479 }
480 else
481 #endif
482 if (input_is_tty)
483 {
484 /* ttsave() */
485 termsave.fd = fd;
486 ttgetattr (fd, &ttattrs);
487 termsave.attrs = &ttattrs;
488
489 ttset = ttattrs;
490 i = silent ? ttfd_cbreak (fd, &ttset) : ttfd_onechar (fd, &ttset);
491 if (i < 0)
492 sh_ttyerror (1);
493 tty_modified = 1;
494 add_unwind_protect ((Function *)ttyrestore, (char *)&termsave);
495 if (interactive_shell == 0)
496 initialize_terminating_signals ();
497 }
498 }
499 else if (silent) /* turn off echo but leave term in canonical mode */
500 {
501 /* ttsave (); */
502 termsave.fd = fd;
503 ttgetattr (fd, &ttattrs);
504 termsave.attrs = &ttattrs;
505
506 ttset = ttattrs;
507 i = ttfd_noecho (fd, &ttset); /* ttnoecho (); */
508 if (i < 0)
509 sh_ttyerror (1);
510
511 tty_modified = 1;
512 add_unwind_protect ((Function *)ttyrestore, (char *)&termsave);
513 if (interactive_shell == 0)
514 initialize_terminating_signals ();
515 }
516
517 /* This *must* be the top unwind-protect on the stack, so the manipulation
518 of the unwind-protect stack after the realloc() works right. */
519 add_unwind_protect (xfree, input_string);
520
521 CHECK_ALRM;
522 if ((nchars > 0) && (input_is_tty == 0) && ignore_delim) /* read -N */
523 unbuffered_read = 2;
524 else if ((nchars > 0) || (delim != '\n') || input_is_pipe)
525 unbuffered_read = 1;
526
527 if (prompt && edit == 0)
528 {
529 fprintf (stderr, "%s", prompt);
530 fflush (stderr);
531 }
532
533 #if defined (__CYGWIN__) && defined (O_TEXT)
534 setmode (0, O_TEXT);
535 #endif
536
537 ps2 = 0;
538 for (print_ps2 = eof = retval = 0;;)
539 {
540 CHECK_ALRM;
541
542 #if defined (READLINE)
543 if (edit)
544 {
545 if (rlbuf && rlbuf[rlind] == '\0')
546 {
547 xfree (rlbuf);
548 rlbuf = (char *)0;
549 }
550 if (rlbuf == 0)
551 {
552 reading = 1;
553 rlbuf = edit_line (prompt ? prompt : "", itext);
554 reading = 0;
555 rlind = 0;
556 }
557 if (rlbuf == 0)
558 {
559 eof = 1;
560 break;
561 }
562 c = rlbuf[rlind++];
563 }
564 else
565 {
566 #endif
567
568 if (print_ps2)
569 {
570 if (ps2 == 0)
571 ps2 = get_string_value ("PS2");
572 fprintf (stderr, "%s", ps2 ? ps2 : "");
573 fflush (stderr);
574 print_ps2 = 0;
575 }
576
577 #if 0
578 if (posixly_correct == 0)
579 interrupt_immediately++;
580 #endif
581 reading = 1;
582 if (unbuffered_read == 2)
583 retval = posixly_correct ? zreadintr (fd, &c, 1) : zreadn (fd, &c, nchars - nr);
584 else if (unbuffered_read)
585 retval = posixly_correct ? zreadintr (fd, &c, 1) : zread (fd, &c, 1);
586 else
587 retval = posixly_correct ? zreadcintr (fd, &c) : zreadc (fd, &c);
588 reading = 0;
589 #if 0
590 if (posixly_correct == 0)
591 interrupt_immediately--;
592 #endif
593
594 if (retval <= 0)
595 {
596 if (retval < 0 && errno == EINTR)
597 {
598 lastsig = LASTSIG();
599 if (lastsig == 0)
600 lastsig = trapped_signal_received;
601 run_pending_traps (); /* because interrupt_immediately is not set */
602 }
603 else
604 lastsig = 0;
605 if (terminating_signal && tty_modified)
606 ttyrestore (&termsave); /* fix terminal before exiting */
607 CHECK_TERMSIG;
608 eof = 1;
609 break;
610 }
611
612 CHECK_ALRM;
613
614 #if defined (READLINE)
615 }
616 #endif
617
618 CHECK_ALRM;
619 if (i + 4 >= size) /* XXX was i + 2; use i + 4 for multibyte/read_mbchar */
620 {
621 char *t;
622 t = (char *)xrealloc (input_string, size += 128);
623
624 /* Only need to change unwind-protect if input_string changes */
625 if (t != input_string)
626 {
627 input_string = t;
628 remove_unwind_protect ();
629 add_unwind_protect (xfree, input_string);
630 }
631 }
632
633 /* If the next character is to be accepted verbatim, a backslash
634 newline pair still disappears from the input. */
635 if (pass_next)
636 {
637 pass_next = 0;
638 if (c == '\n')
639 {
640 i--; /* back up over the CTLESC */
641 if (interactive && input_is_tty && raw == 0)
642 print_ps2 = 1;
643 }
644 else
645 goto add_char;
646 continue;
647 }
648
649 /* This may cause problems if IFS contains CTLESC */
650 if (c == '\\' && raw == 0)
651 {
652 pass_next++;
653 if (skip_ctlesc == 0)
654 {
655 saw_escape++;
656 input_string[i++] = CTLESC;
657 }
658 continue;
659 }
660
661 if (ignore_delim == 0 && (unsigned char)c == delim)
662 break;
663
664 if (c == '\0' && delim != '\0')
665 continue; /* skip NUL bytes in input */
666
667 if ((skip_ctlesc == 0 && c == CTLESC) || (skip_ctlnul == 0 && c == CTLNUL))
668 {
669 saw_escape++;
670 input_string[i++] = CTLESC;
671 }
672
673 add_char:
674 input_string[i++] = c;
675 CHECK_ALRM;
676
677 #if defined (HANDLE_MULTIBYTE)
678 if (nchars > 0 && MB_CUR_MAX > 1 && is_basic (c) == 0)
679 {
680 input_string[i] = '\0'; /* for simplicity and debugging */
681 i += read_mbchar (fd, input_string, i, c, unbuffered_read);
682 }
683 #endif
684
685 nr++;
686
687 if (nchars > 0 && nr >= nchars)
688 break;
689 }
690 input_string[i] = '\0';
691 CHECK_ALRM;
692
693 if (retval < 0)
694 {
695 t_errno = errno;
696 if (errno != EINTR)
697 builtin_error (_("read error: %d: %s"), fd, strerror (errno));
698 run_unwind_frame ("read_builtin");
699 return ((t_errno != EINTR) ? EXECUTION_FAILURE : 128+lastsig);
700 }
701
702 if (tmsec > 0 || tmusec > 0)
703 reset_alarm ();
704
705 if (nchars > 0 || delim != '\n')
706 {
707 #if defined (READLINE)
708 if (edit)
709 {
710 if (nchars > 0)
711 rl_num_chars_to_read = 0;
712 if (delim != '\n')
713 reset_eol_delim ((char *)NULL);
714 }
715 else
716 #endif
717 if (input_is_tty)
718 ttyrestore (&termsave);
719 }
720 else if (silent)
721 ttyrestore (&termsave);
722
723 if (unbuffered_read == 0)
724 zsyncfd (fd);
725
726 discard_unwind_frame ("read_builtin");
727
728 retval = eof ? EXECUTION_FAILURE : EXECUTION_SUCCESS;
729
730 assign_vars:
731
732 #if defined (ARRAY_VARS)
733 /* If -a was given, take the string read, break it into a list of words,
734 an assign them to `arrayname' in turn. */
735 if (arrayname)
736 {
737 if (legal_identifier (arrayname) == 0)
738 {
739 sh_invalidid (arrayname);
740 xfree (input_string);
741 return (EXECUTION_FAILURE);
742 }
743
744 var = find_or_make_array_variable (arrayname, 1);
745 if (var == 0)
746 {
747 xfree (input_string);
748 return EXECUTION_FAILURE; /* readonly or noassign */
749 }
750 if (assoc_p (var))
751 {
752 builtin_error (_("%s: cannot convert associative to indexed array"), arrayname);
753 xfree (input_string);
754 return EXECUTION_FAILURE; /* existing associative array */
755 }
756 else if (invisible_p (var))
757 VUNSETATTR (var, att_invisible);
758 array_flush (array_cell (var));
759
760 alist = list_string (input_string, ifs_chars, 0);
761 if (alist)
762 {
763 if (saw_escape)
764 dequote_list (alist);
765 else
766 word_list_remove_quoted_nulls (alist);
767 assign_array_var_from_word_list (var, alist, 0);
768 dispose_words (alist);
769 }
770 xfree (input_string);
771 return (retval);
772 }
773 #endif /* ARRAY_VARS */
774
775 /* If there are no variables, save the text of the line read to the
776 variable $REPLY. ksh93 strips leading and trailing IFS whitespace,
777 so that `read x ; echo "$x"' and `read ; echo "$REPLY"' behave the
778 same way, but I believe that the difference in behaviors is useful
779 enough to not do it. Without the bash behavior, there is no way
780 to read a line completely without interpretation or modification
781 unless you mess with $IFS (e.g., setting it to the empty string).
782 If you disagree, change the occurrences of `#if 0' to `#if 1' below. */
783 if (list == 0)
784 {
785 #if 0
786 orig_input_string = input_string;
787 for (t = input_string; ifs_chars && *ifs_chars && spctabnl(*t) && isifs(*t); t++)
788 ;
789 input_string = t;
790 input_string = strip_trailing_ifs_whitespace (input_string, ifs_chars, saw_escape);
791 #endif
792
793 if (saw_escape)
794 {
795 t = dequote_string (input_string);
796 var = bind_variable ("REPLY", t, 0);
797 free (t);
798 }
799 else
800 var = bind_variable ("REPLY", input_string, 0);
801 if (var == 0 || readonly_p (var) || noassign_p (var))
802 retval = EXECUTION_FAILURE;
803 else
804 VUNSETATTR (var, att_invisible);
805
806 xfree (input_string);
807 return (retval);
808 }
809
810 /* This code implements the Posix.2 spec for splitting the words
811 read and assigning them to variables. */
812 orig_input_string = input_string;
813
814 /* Remove IFS white space at the beginning of the input string. If
815 $IFS is null, no field splitting is performed. */
816 for (t = input_string; ifs_chars && *ifs_chars && spctabnl(*t) && isifs(*t); t++)
817 ;
818 input_string = t;
819 for (; list->next; list = list->next)
820 {
821 varname = list->word->word;
822 #if defined (ARRAY_VARS)
823 if (legal_identifier (varname) == 0 && valid_array_reference (varname, 0) == 0)
824 #else
825 if (legal_identifier (varname) == 0)
826 #endif
827 {
828 sh_invalidid (varname);
829 xfree (orig_input_string);
830 return (EXECUTION_FAILURE);
831 }
832
833 /* If there are more variables than words read from the input,
834 the remaining variables are set to the empty string. */
835 if (*input_string)
836 {
837 /* This call updates INPUT_STRING. */
838 t = get_word_from_string (&input_string, ifs_chars, &e);
839 if (t)
840 *e = '\0';
841 /* Don't bother to remove the CTLESC unless we added one
842 somewhere while reading the string. */
843 if (t && saw_escape)
844 {
845 t1 = dequote_string (t);
846 var = bind_read_variable (varname, t1);
847 xfree (t1);
848 }
849 else
850 var = bind_read_variable (varname, t ? t : "");
851 }
852 else
853 {
854 t = (char *)0;
855 var = bind_read_variable (varname, "");
856 }
857
858 FREE (t);
859 if (var == 0)
860 {
861 xfree (orig_input_string);
862 return (EXECUTION_FAILURE);
863 }
864
865 stupidly_hack_special_variables (varname);
866 VUNSETATTR (var, att_invisible);
867 }
868
869 /* Now assign the rest of the line to the last variable argument. */
870 #if defined (ARRAY_VARS)
871 if (legal_identifier (list->word->word) == 0 && valid_array_reference (list->word->word, 0) == 0)
872 #else
873 if (legal_identifier (list->word->word) == 0)
874 #endif
875 {
876 sh_invalidid (list->word->word);
877 xfree (orig_input_string);
878 return (EXECUTION_FAILURE);
879 }
880
881 #if 0
882 /* This has to be done this way rather than using string_list
883 and list_string because Posix.2 says that the last variable gets the
884 remaining words and their intervening separators. */
885 input_string = strip_trailing_ifs_whitespace (input_string, ifs_chars, saw_escape);
886 #else
887 /* Check whether or not the number of fields is exactly the same as the
888 number of variables. */
889 tofree = NULL;
890 if (*input_string)
891 {
892 t1 = input_string;
893 t = get_word_from_string (&input_string, ifs_chars, &e);
894 if (*input_string == 0)
895 tofree = input_string = t;
896 else
897 {
898 input_string = strip_trailing_ifs_whitespace (t1, ifs_chars, saw_escape);
899 tofree = t;
900 }
901 }
902 #endif
903
904 if (saw_escape && input_string && *input_string)
905 {
906 t = dequote_string (input_string);
907 var = bind_read_variable (list->word->word, t);
908 xfree (t);
909 }
910 else
911 var = bind_read_variable (list->word->word, input_string ? input_string : "");
912
913 if (var)
914 {
915 stupidly_hack_special_variables (list->word->word);
916 VUNSETATTR (var, att_invisible);
917 }
918 else
919 retval = EXECUTION_FAILURE;
920
921 FREE (tofree);
922 xfree (orig_input_string);
923
924 return (retval);
925 }
926
927 static SHELL_VAR *
928 bind_read_variable (name, value)
929 char *name, *value;
930 {
931 SHELL_VAR *v;
932
933 #if defined (ARRAY_VARS)
934 if (valid_array_reference (name, 0) == 0)
935 v = bind_variable (name, value, 0);
936 else
937 v = assign_array_element (name, value, 0);
938 #else /* !ARRAY_VARS */
939 v = bind_variable (name, value, 0);
940 #endif /* !ARRAY_VARS */
941 return (v == 0 ? v
942 : ((readonly_p (v) || noassign_p (v)) ? (SHELL_VAR *)NULL : v));
943 }
944
945 #if defined (HANDLE_MULTIBYTE)
946 static int
947 read_mbchar (fd, string, ind, ch, unbuffered)
948 int fd;
949 char *string;
950 int ind, ch, unbuffered;
951 {
952 char mbchar[MB_LEN_MAX + 1];
953 int i, n, r;
954 char c;
955 size_t ret;
956 mbstate_t ps, ps_back;
957 wchar_t wc;
958
959 memset (&ps, '\0', sizeof (mbstate_t));
960 memset (&ps_back, '\0', sizeof (mbstate_t));
961
962 mbchar[0] = ch;
963 i = 1;
964 for (n = 0; n <= MB_LEN_MAX; n++)
965 {
966 ps_back = ps;
967 ret = mbrtowc (&wc, mbchar, i, &ps);
968 if (ret == (size_t)-2)
969 {
970 ps = ps_back;
971 /* We don't want to be interrupted during a multibyte char read */
972 if (unbuffered)
973 r = zread (fd, &c, 1);
974 else
975 r = zreadc (fd, &c);
976 if (r < 0)
977 goto mbchar_return;
978 mbchar[i++] = c;
979 continue;
980 }
981 else if (ret == (size_t)-1 || ret == (size_t)0 || ret > (size_t)0)
982 break;
983 }
984
985 mbchar_return:
986 if (i > 1) /* read a multibyte char */
987 /* mbchar[0] is already string[ind-1] */
988 for (r = 1; r < i; r++)
989 string[ind+r-1] = mbchar[r];
990 return i - 1;
991 }
992 #endif
993
994
995 static void
996 ttyrestore (ttp)
997 struct ttsave *ttp;
998 {
999 ttsetattr (ttp->fd, ttp->attrs);
1000 tty_modified = 0;
1001 }
1002
1003 void
1004 read_tty_cleanup ()
1005 {
1006 if (tty_modified)
1007 ttyrestore (&termsave);
1008 }
1009
1010 int
1011 read_tty_modified ()
1012 {
1013 return (tty_modified);
1014 }
1015
1016 #if defined (READLINE)
1017 static rl_completion_func_t *old_attempted_completion_function = 0;
1018 static rl_hook_func_t *old_startup_hook;
1019 static char *deftext;
1020
1021 static void
1022 reset_attempted_completion_function (cp)
1023 char *cp;
1024 {
1025 if (rl_attempted_completion_function == 0 && old_attempted_completion_function)
1026 rl_attempted_completion_function = old_attempted_completion_function;
1027 }
1028
1029 static int
1030 set_itext ()
1031 {
1032 int r1, r2;
1033
1034 r1 = r2 = 0;
1035 if (old_startup_hook)
1036 r1 = (*old_startup_hook) ();
1037 if (deftext)
1038 {
1039 r2 = rl_insert_text (deftext);
1040 deftext = (char *)NULL;
1041 rl_startup_hook = old_startup_hook;
1042 old_startup_hook = (rl_hook_func_t *)NULL;
1043 }
1044 return (r1 || r2);
1045 }
1046
1047 static char *
1048 edit_line (p, itext)
1049 char *p;
1050 char *itext;
1051 {
1052 char *ret;
1053 int len;
1054
1055 if (bash_readline_initialized == 0)
1056 initialize_readline ();
1057
1058 old_attempted_completion_function = rl_attempted_completion_function;
1059 rl_attempted_completion_function = (rl_completion_func_t *)NULL;
1060 bashline_set_event_hook ();
1061 if (itext)
1062 {
1063 old_startup_hook = rl_startup_hook;
1064 rl_startup_hook = set_itext;
1065 deftext = itext;
1066 }
1067
1068 ret = readline (p);
1069
1070 rl_attempted_completion_function = old_attempted_completion_function;
1071 old_attempted_completion_function = (rl_completion_func_t *)NULL;
1072 bashline_reset_event_hook ();
1073
1074 if (ret == 0)
1075 return ret;
1076 len = strlen (ret);
1077 ret = (char *)xrealloc (ret, len + 2);
1078 ret[len++] = delim;
1079 ret[len] = '\0';
1080 return ret;
1081 }
1082
1083 static int old_delim_ctype;
1084 static rl_command_func_t *old_delim_func;
1085 static int old_newline_ctype;
1086 static rl_command_func_t *old_newline_func;
1087
1088 static unsigned char delim_char;
1089
1090 static void
1091 set_eol_delim (c)
1092 int c;
1093 {
1094 Keymap cmap;
1095
1096 if (bash_readline_initialized == 0)
1097 initialize_readline ();
1098 cmap = rl_get_keymap ();
1099
1100 /* Change newline to self-insert */
1101 old_newline_ctype = cmap[RETURN].type;
1102 old_newline_func = cmap[RETURN].function;
1103 cmap[RETURN].type = ISFUNC;
1104 cmap[RETURN].function = rl_insert;
1105
1106 /* Bind the delimiter character to accept-line. */
1107 old_delim_ctype = cmap[c].type;
1108 old_delim_func = cmap[c].function;
1109 cmap[c].type = ISFUNC;
1110 cmap[c].function = rl_newline;
1111
1112 delim_char = c;
1113 }
1114
1115 static void
1116 reset_eol_delim (cp)
1117 char *cp;
1118 {
1119 Keymap cmap;
1120
1121 cmap = rl_get_keymap ();
1122
1123 cmap[RETURN].type = old_newline_ctype;
1124 cmap[RETURN].function = old_newline_func;
1125
1126 cmap[delim_char].type = old_delim_ctype;
1127 cmap[delim_char].function = old_delim_func;
1128 }
1129 #endif