14b88c807SRodney W. Grimes /*- 24b88c807SRodney W. Grimes * Copyright (c) 1991, 1993 34b88c807SRodney W. Grimes * The Regents of the University of California. All rights reserved. 44b88c807SRodney W. Grimes * 54b88c807SRodney W. Grimes * This code is derived from software contributed to Berkeley by 64b88c807SRodney W. Grimes * Kenneth Almquist. 74b88c807SRodney W. Grimes * 84b88c807SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 94b88c807SRodney W. Grimes * modification, are permitted provided that the following conditions 104b88c807SRodney W. Grimes * are met: 114b88c807SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 124b88c807SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 134b88c807SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 144b88c807SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 154b88c807SRodney W. Grimes * documentation and/or other materials provided with the distribution. 164b88c807SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 174b88c807SRodney W. Grimes * must display the following acknowledgement: 184b88c807SRodney W. Grimes * This product includes software developed by the University of 194b88c807SRodney W. Grimes * California, Berkeley and its contributors. 204b88c807SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 214b88c807SRodney W. Grimes * may be used to endorse or promote products derived from this software 224b88c807SRodney W. Grimes * without specific prior written permission. 234b88c807SRodney W. Grimes * 244b88c807SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 254b88c807SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 264b88c807SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 274b88c807SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 284b88c807SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 294b88c807SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 304b88c807SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 314b88c807SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 324b88c807SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 334b88c807SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 344b88c807SRodney W. Grimes * SUCH DAMAGE. 3589730b29SDavid Greenman * 36769bbc65SJoerg Wunsch * $Id: redir.c,v 1.3 1995/05/30 00:07:22 rgrimes Exp $ 374b88c807SRodney W. Grimes */ 384b88c807SRodney W. Grimes 394b88c807SRodney W. Grimes #ifndef lint 404b88c807SRodney W. Grimes static char sccsid[] = "@(#)redir.c 8.1 (Berkeley) 5/31/93"; 414b88c807SRodney W. Grimes #endif /* not lint */ 424b88c807SRodney W. Grimes 434b88c807SRodney W. Grimes /* 444b88c807SRodney W. Grimes * Code for dealing with input/output redirection. 454b88c807SRodney W. Grimes */ 464b88c807SRodney W. Grimes 474b88c807SRodney W. Grimes #include "shell.h" 484b88c807SRodney W. Grimes #include "nodes.h" 494b88c807SRodney W. Grimes #include "jobs.h" 504b88c807SRodney W. Grimes #include "expand.h" 514b88c807SRodney W. Grimes #include "redir.h" 524b88c807SRodney W. Grimes #include "output.h" 534b88c807SRodney W. Grimes #include "memalloc.h" 544b88c807SRodney W. Grimes #include "error.h" 554b88c807SRodney W. Grimes #include <sys/types.h> 564b88c807SRodney W. Grimes #include <signal.h> 574b88c807SRodney W. Grimes #include <fcntl.h> 584b88c807SRodney W. Grimes #include <errno.h> 594b88c807SRodney W. Grimes #include <unistd.h> 604b88c807SRodney W. Grimes 614b88c807SRodney W. Grimes 624b88c807SRodney W. Grimes #define EMPTY -2 /* marks an unused slot in redirtab */ 634b88c807SRodney W. Grimes #define PIPESIZE 4096 /* amount of buffering in a pipe */ 644b88c807SRodney W. Grimes 654b88c807SRodney W. Grimes 664b88c807SRodney W. Grimes MKINIT 674b88c807SRodney W. Grimes struct redirtab { 684b88c807SRodney W. Grimes struct redirtab *next; 694b88c807SRodney W. Grimes short renamed[10]; 704b88c807SRodney W. Grimes }; 714b88c807SRodney W. Grimes 724b88c807SRodney W. Grimes 734b88c807SRodney W. Grimes MKINIT struct redirtab *redirlist; 744b88c807SRodney W. Grimes 754b88c807SRodney W. Grimes /* 764b88c807SRodney W. Grimes * We keep track of whether or not fd0 has been redirected. This is for 774b88c807SRodney W. Grimes * background commands, where we want to redirect fd0 to /dev/null only 784b88c807SRodney W. Grimes * if it hasn't already been redirected. 794b88c807SRodney W. Grimes */ 804b88c807SRodney W. Grimes int fd0_redirected = 0; 814b88c807SRodney W. Grimes 824b88c807SRodney W. Grimes #ifdef __STDC__ 834b88c807SRodney W. Grimes STATIC void openredirect(union node *, char *); 844b88c807SRodney W. Grimes STATIC int openhere(union node *); 854b88c807SRodney W. Grimes #else 864b88c807SRodney W. Grimes STATIC void openredirect(); 874b88c807SRodney W. Grimes STATIC int openhere(); 884b88c807SRodney W. Grimes #endif 894b88c807SRodney W. Grimes 904b88c807SRodney W. Grimes 914b88c807SRodney W. Grimes 924b88c807SRodney W. Grimes /* 934b88c807SRodney W. Grimes * Process a list of redirection commands. If the REDIR_PUSH flag is set, 944b88c807SRodney W. Grimes * old file descriptors are stashed away so that the redirection can be 954b88c807SRodney W. Grimes * undone by calling popredir. If the REDIR_BACKQ flag is set, then the 964b88c807SRodney W. Grimes * standard output, and the standard error if it becomes a duplicate of 974b88c807SRodney W. Grimes * stdout, is saved in memory. 984b88c807SRodney W. Grimes */ 994b88c807SRodney W. Grimes 1004b88c807SRodney W. Grimes void 1014b88c807SRodney W. Grimes redirect(redir, flags) 1024b88c807SRodney W. Grimes union node *redir; 1034b88c807SRodney W. Grimes int flags; 1044b88c807SRodney W. Grimes { 1054b88c807SRodney W. Grimes union node *n; 1064b88c807SRodney W. Grimes struct redirtab *sv; 1074b88c807SRodney W. Grimes int i; 1084b88c807SRodney W. Grimes int fd; 1094b88c807SRodney W. Grimes char memory[10]; /* file descriptors to write to memory */ 1104b88c807SRodney W. Grimes 1114b88c807SRodney W. Grimes for (i = 10 ; --i >= 0 ; ) 1124b88c807SRodney W. Grimes memory[i] = 0; 1134b88c807SRodney W. Grimes memory[1] = flags & REDIR_BACKQ; 1144b88c807SRodney W. Grimes if (flags & REDIR_PUSH) { 1154b88c807SRodney W. Grimes sv = ckmalloc(sizeof (struct redirtab)); 1164b88c807SRodney W. Grimes for (i = 0 ; i < 10 ; i++) 1174b88c807SRodney W. Grimes sv->renamed[i] = EMPTY; 1184b88c807SRodney W. Grimes sv->next = redirlist; 1194b88c807SRodney W. Grimes redirlist = sv; 1204b88c807SRodney W. Grimes } 1214b88c807SRodney W. Grimes for (n = redir ; n ; n = n->nfile.next) { 1224b88c807SRodney W. Grimes fd = n->nfile.fd; 123769bbc65SJoerg Wunsch if ((n->nfile.type == NTOFD || n->nfile.type == NFROMFD) && 124769bbc65SJoerg Wunsch n->ndup.dupfd == fd) 125769bbc65SJoerg Wunsch continue; /* redirect from/to myself */ 1264b88c807SRodney W. Grimes if ((flags & REDIR_PUSH) && sv->renamed[fd] == EMPTY) { 1274b88c807SRodney W. Grimes INTOFF; 1284b88c807SRodney W. Grimes if ((i = copyfd(fd, 10)) != EMPTY) { 1294b88c807SRodney W. Grimes sv->renamed[fd] = i; 1304b88c807SRodney W. Grimes close(fd); 1314b88c807SRodney W. Grimes } 1324b88c807SRodney W. Grimes INTON; 1334b88c807SRodney W. Grimes if (i == EMPTY) 1344b88c807SRodney W. Grimes error("Out of file descriptors"); 1354b88c807SRodney W. Grimes } else { 1364b88c807SRodney W. Grimes close(fd); 1374b88c807SRodney W. Grimes } 1384b88c807SRodney W. Grimes if (fd == 0) 1394b88c807SRodney W. Grimes fd0_redirected++; 1404b88c807SRodney W. Grimes openredirect(n, memory); 1414b88c807SRodney W. Grimes } 1424b88c807SRodney W. Grimes if (memory[1]) 1434b88c807SRodney W. Grimes out1 = &memout; 1444b88c807SRodney W. Grimes if (memory[2]) 1454b88c807SRodney W. Grimes out2 = &memout; 1464b88c807SRodney W. Grimes } 1474b88c807SRodney W. Grimes 1484b88c807SRodney W. Grimes 1494b88c807SRodney W. Grimes STATIC void 1504b88c807SRodney W. Grimes openredirect(redir, memory) 1514b88c807SRodney W. Grimes union node *redir; 1524b88c807SRodney W. Grimes char memory[10]; 1534b88c807SRodney W. Grimes { 1544b88c807SRodney W. Grimes int fd = redir->nfile.fd; 1554b88c807SRodney W. Grimes char *fname; 1564b88c807SRodney W. Grimes int f; 1574b88c807SRodney W. Grimes 1584b88c807SRodney W. Grimes /* 1594b88c807SRodney W. Grimes * We suppress interrupts so that we won't leave open file 1604b88c807SRodney W. Grimes * descriptors around. This may not be such a good idea because 1614b88c807SRodney W. Grimes * an open of a device or a fifo can block indefinitely. 1624b88c807SRodney W. Grimes */ 1634b88c807SRodney W. Grimes INTOFF; 1644b88c807SRodney W. Grimes memory[fd] = 0; 1654b88c807SRodney W. Grimes switch (redir->nfile.type) { 1664b88c807SRodney W. Grimes case NFROM: 1674b88c807SRodney W. Grimes fname = redir->nfile.expfname; 1684b88c807SRodney W. Grimes if ((f = open(fname, O_RDONLY)) < 0) 1694b88c807SRodney W. Grimes error("cannot open %s: %s", fname, errmsg(errno, E_OPEN)); 1704b88c807SRodney W. Grimes movefd: 1714b88c807SRodney W. Grimes if (f != fd) { 1724b88c807SRodney W. Grimes copyfd(f, fd); 1734b88c807SRodney W. Grimes close(f); 1744b88c807SRodney W. Grimes } 1754b88c807SRodney W. Grimes break; 1764b88c807SRodney W. Grimes case NTO: 1774b88c807SRodney W. Grimes fname = redir->nfile.expfname; 1784b88c807SRodney W. Grimes #ifdef O_CREAT 1794b88c807SRodney W. Grimes if ((f = open(fname, O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0) 1804b88c807SRodney W. Grimes error("cannot create %s: %s", fname, errmsg(errno, E_CREAT)); 1814b88c807SRodney W. Grimes #else 1824b88c807SRodney W. Grimes if ((f = creat(fname, 0666)) < 0) 1834b88c807SRodney W. Grimes error("cannot create %s: %s", fname, errmsg(errno, E_CREAT)); 1844b88c807SRodney W. Grimes #endif 1854b88c807SRodney W. Grimes goto movefd; 1864b88c807SRodney W. Grimes case NAPPEND: 1874b88c807SRodney W. Grimes fname = redir->nfile.expfname; 1884b88c807SRodney W. Grimes #ifdef O_APPEND 1894b88c807SRodney W. Grimes if ((f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666)) < 0) 1904b88c807SRodney W. Grimes error("cannot create %s: %s", fname, errmsg(errno, E_CREAT)); 1914b88c807SRodney W. Grimes #else 1924b88c807SRodney W. Grimes if ((f = open(fname, O_WRONLY)) < 0 1934b88c807SRodney W. Grimes && (f = creat(fname, 0666)) < 0) 1944b88c807SRodney W. Grimes error("cannot create %s: %s", fname, errmsg(errno, E_CREAT)); 1954b88c807SRodney W. Grimes lseek(f, (off_t)0, 2); 1964b88c807SRodney W. Grimes #endif 1974b88c807SRodney W. Grimes goto movefd; 1984b88c807SRodney W. Grimes case NTOFD: 1994b88c807SRodney W. Grimes case NFROMFD: 2004b88c807SRodney W. Grimes if (redir->ndup.dupfd >= 0) { /* if not ">&-" */ 2014b88c807SRodney W. Grimes if (memory[redir->ndup.dupfd]) 2024b88c807SRodney W. Grimes memory[fd] = 1; 2034b88c807SRodney W. Grimes else 2044b88c807SRodney W. Grimes copyfd(redir->ndup.dupfd, fd); 2054b88c807SRodney W. Grimes } 2064b88c807SRodney W. Grimes break; 2074b88c807SRodney W. Grimes case NHERE: 2084b88c807SRodney W. Grimes case NXHERE: 2094b88c807SRodney W. Grimes f = openhere(redir); 2104b88c807SRodney W. Grimes goto movefd; 2114b88c807SRodney W. Grimes default: 2124b88c807SRodney W. Grimes abort(); 2134b88c807SRodney W. Grimes } 2144b88c807SRodney W. Grimes INTON; 2154b88c807SRodney W. Grimes } 2164b88c807SRodney W. Grimes 2174b88c807SRodney W. Grimes 2184b88c807SRodney W. Grimes /* 2194b88c807SRodney W. Grimes * Handle here documents. Normally we fork off a process to write the 2204b88c807SRodney W. Grimes * data to a pipe. If the document is short, we can stuff the data in 2214b88c807SRodney W. Grimes * the pipe without forking. 2224b88c807SRodney W. Grimes */ 2234b88c807SRodney W. Grimes 2244b88c807SRodney W. Grimes STATIC int 2254b88c807SRodney W. Grimes openhere(redir) 2264b88c807SRodney W. Grimes union node *redir; 2274b88c807SRodney W. Grimes { 2284b88c807SRodney W. Grimes int pip[2]; 2294b88c807SRodney W. Grimes int len; 2304b88c807SRodney W. Grimes 2314b88c807SRodney W. Grimes if (pipe(pip) < 0) 2324b88c807SRodney W. Grimes error("Pipe call failed"); 2334b88c807SRodney W. Grimes if (redir->type == NHERE) { 2344b88c807SRodney W. Grimes len = strlen(redir->nhere.doc->narg.text); 2354b88c807SRodney W. Grimes if (len <= PIPESIZE) { 2364b88c807SRodney W. Grimes xwrite(pip[1], redir->nhere.doc->narg.text, len); 2374b88c807SRodney W. Grimes goto out; 2384b88c807SRodney W. Grimes } 2394b88c807SRodney W. Grimes } 2404b88c807SRodney W. Grimes if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) { 2414b88c807SRodney W. Grimes close(pip[0]); 2424b88c807SRodney W. Grimes signal(SIGINT, SIG_IGN); 2434b88c807SRodney W. Grimes signal(SIGQUIT, SIG_IGN); 2444b88c807SRodney W. Grimes signal(SIGHUP, SIG_IGN); 2454b88c807SRodney W. Grimes #ifdef SIGTSTP 2464b88c807SRodney W. Grimes signal(SIGTSTP, SIG_IGN); 2474b88c807SRodney W. Grimes #endif 2484b88c807SRodney W. Grimes signal(SIGPIPE, SIG_DFL); 2494b88c807SRodney W. Grimes if (redir->type == NHERE) 2504b88c807SRodney W. Grimes xwrite(pip[1], redir->nhere.doc->narg.text, len); 2514b88c807SRodney W. Grimes else 2524b88c807SRodney W. Grimes expandhere(redir->nhere.doc, pip[1]); 2534b88c807SRodney W. Grimes _exit(0); 2544b88c807SRodney W. Grimes } 2554b88c807SRodney W. Grimes out: 2564b88c807SRodney W. Grimes close(pip[1]); 2574b88c807SRodney W. Grimes return pip[0]; 2584b88c807SRodney W. Grimes } 2594b88c807SRodney W. Grimes 2604b88c807SRodney W. Grimes 2614b88c807SRodney W. Grimes 2624b88c807SRodney W. Grimes /* 2634b88c807SRodney W. Grimes * Undo the effects of the last redirection. 2644b88c807SRodney W. Grimes */ 2654b88c807SRodney W. Grimes 2664b88c807SRodney W. Grimes void 2674b88c807SRodney W. Grimes popredir() { 2684b88c807SRodney W. Grimes register struct redirtab *rp = redirlist; 2694b88c807SRodney W. Grimes int i; 2704b88c807SRodney W. Grimes 2714b88c807SRodney W. Grimes for (i = 0 ; i < 10 ; i++) { 2724b88c807SRodney W. Grimes if (rp->renamed[i] != EMPTY) { 2734b88c807SRodney W. Grimes if (i == 0) 2744b88c807SRodney W. Grimes fd0_redirected--; 2754b88c807SRodney W. Grimes close(i); 2764b88c807SRodney W. Grimes if (rp->renamed[i] >= 0) { 2774b88c807SRodney W. Grimes copyfd(rp->renamed[i], i); 2784b88c807SRodney W. Grimes close(rp->renamed[i]); 2794b88c807SRodney W. Grimes } 2804b88c807SRodney W. Grimes } 2814b88c807SRodney W. Grimes } 2824b88c807SRodney W. Grimes INTOFF; 2834b88c807SRodney W. Grimes redirlist = rp->next; 2844b88c807SRodney W. Grimes ckfree(rp); 2854b88c807SRodney W. Grimes INTON; 2864b88c807SRodney W. Grimes } 2874b88c807SRodney W. Grimes 2884b88c807SRodney W. Grimes /* 2894b88c807SRodney W. Grimes * Undo all redirections. Called on error or interrupt. 2904b88c807SRodney W. Grimes */ 2914b88c807SRodney W. Grimes 2924b88c807SRodney W. Grimes #ifdef mkinit 2934b88c807SRodney W. Grimes 2944b88c807SRodney W. Grimes INCLUDE "redir.h" 2954b88c807SRodney W. Grimes 2964b88c807SRodney W. Grimes RESET { 2974b88c807SRodney W. Grimes while (redirlist) 2984b88c807SRodney W. Grimes popredir(); 2994b88c807SRodney W. Grimes } 3004b88c807SRodney W. Grimes 3014b88c807SRodney W. Grimes SHELLPROC { 3024b88c807SRodney W. Grimes clearredir(); 3034b88c807SRodney W. Grimes } 3044b88c807SRodney W. Grimes 3054b88c807SRodney W. Grimes #endif 3064b88c807SRodney W. Grimes 3074b88c807SRodney W. Grimes /* Return true if fd 0 has already been redirected at least once. */ 3084b88c807SRodney W. Grimes int 3094b88c807SRodney W. Grimes fd0_redirected_p () { 3104b88c807SRodney W. Grimes return fd0_redirected != 0; 3114b88c807SRodney W. Grimes } 3124b88c807SRodney W. Grimes 3134b88c807SRodney W. Grimes /* 3144b88c807SRodney W. Grimes * Discard all saved file descriptors. 3154b88c807SRodney W. Grimes */ 3164b88c807SRodney W. Grimes 3174b88c807SRodney W. Grimes void 3184b88c807SRodney W. Grimes clearredir() { 3194b88c807SRodney W. Grimes register struct redirtab *rp; 3204b88c807SRodney W. Grimes int i; 3214b88c807SRodney W. Grimes 3224b88c807SRodney W. Grimes for (rp = redirlist ; rp ; rp = rp->next) { 3234b88c807SRodney W. Grimes for (i = 0 ; i < 10 ; i++) { 3244b88c807SRodney W. Grimes if (rp->renamed[i] >= 0) { 3254b88c807SRodney W. Grimes close(rp->renamed[i]); 3264b88c807SRodney W. Grimes } 3274b88c807SRodney W. Grimes rp->renamed[i] = EMPTY; 3284b88c807SRodney W. Grimes } 3294b88c807SRodney W. Grimes } 3304b88c807SRodney W. Grimes } 3314b88c807SRodney W. Grimes 3324b88c807SRodney W. Grimes 3334b88c807SRodney W. Grimes 3344b88c807SRodney W. Grimes /* 3354b88c807SRodney W. Grimes * Copy a file descriptor to be >= to. Returns -1 3364b88c807SRodney W. Grimes * if the source file descriptor is closed, EMPTY if there are no unused 3374b88c807SRodney W. Grimes * file descriptors left. 3384b88c807SRodney W. Grimes */ 3394b88c807SRodney W. Grimes 3404b88c807SRodney W. Grimes int 3414b88c807SRodney W. Grimes copyfd(from, to) { 3424b88c807SRodney W. Grimes int newfd; 3434b88c807SRodney W. Grimes 3444b88c807SRodney W. Grimes newfd = fcntl(from, F_DUPFD, to); 3454b88c807SRodney W. Grimes if (newfd < 0 && errno == EMFILE) 3464b88c807SRodney W. Grimes return EMPTY; 347769bbc65SJoerg Wunsch if (newfd < 0) 348769bbc65SJoerg Wunsch error("%d: %s", from, strerror(errno)); 3494b88c807SRodney W. Grimes return newfd; 3504b88c807SRodney W. Grimes } 351