home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / xfe / popen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  5.0 KB  |  185 lines

  1. /* 
  2.  * Copyright (c) 1988, 1993
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * This code is derived from software written by Ken Arnold and
  6.  * published in UNIX Review, Vol. 6, No. 8.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  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. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  */
  36.  
  37.  
  38. #if defined(LIBC_SCCS) && !defined(lint)
  39. static char sccsid[] = "@(#)popen.c    8.1 (Berkeley) 6/4/93";
  40. #endif /* LIBC_SCCS and not lint */
  41.  
  42. #include <sys/param.h>
  43. #include <sys/wait.h>
  44.  
  45. #include <vfork.h>  /* lwei - need declaration of vfork */
  46. #include <stdio.h>  /* lwei - need declaration of fprintf */
  47. #include <signal.h>
  48. #ifdef SUNOS4
  49. /* lwei - need these declarations */
  50. int fclose();
  51. int sigblock();
  52. int sigsetmask();
  53. int fprintf();
  54. #endif
  55. #include <errno.h>
  56. #include <unistd.h>
  57. #include <stdio.h>
  58. #include <stdlib.h>
  59. #include <string.h>
  60. #if 0
  61. #include <paths.h>
  62. #endif
  63. static struct pid {
  64.     struct pid *next;
  65.     FILE *fp;
  66.     pid_t pid;
  67. } *pidlist;
  68.  
  69. FILE *
  70. popen(program, type)
  71.     const char *program;
  72.     const char *type;
  73. {
  74.     struct pid *cur;
  75.     FILE *iop;
  76.     int pdes[2], pid;
  77.  
  78. #ifdef DEBUG_lwei
  79.     fprintf (stderr, "xfe popen() is called\n");
  80. #endif
  81.  
  82.     if ( (*type != 'r' && *type != 'w') || type[1])
  83.         return (NULL);
  84.  
  85.     if ((cur = malloc(sizeof(struct pid))) == NULL)
  86.         return (NULL);
  87.  
  88.     if (pipe(pdes) < 0) {
  89.         free(cur);
  90.         return (NULL);
  91.     }
  92.  
  93.     switch (pid = vfork()) {
  94.     case -1:            /* Error. */
  95.         (void)close(pdes[0]);
  96.         (void)close(pdes[1]);
  97.         free(cur);
  98.         return (NULL);
  99.         /* NOTREACHED */
  100.     case 0:                /* Child. */
  101.         if (*type == 'r') {
  102.             if (pdes[1] != STDOUT_FILENO) {
  103.                 (void)dup2(pdes[1], STDOUT_FILENO);
  104.                 (void)close(pdes[1]);
  105.             }
  106.             (void) close(pdes[0]);
  107.         } else {
  108.             if (pdes[0] != STDIN_FILENO) {
  109.                 (void)dup2(pdes[0], STDIN_FILENO);
  110.                 (void)close(pdes[0]);
  111.             }
  112.             (void)close(pdes[1]);
  113.         }
  114. #ifdef SUNOS4
  115.         execl("/bin/sh", "sh", "-c", program, NULL);
  116. #else
  117.         /* lwei, _PATH_BSHELL undefined */
  118.         execl(_PATH_BSHELL, "sh", "-c", program, NULL);
  119. #endif
  120.         _exit(127);
  121.         /* NOTREACHED */
  122.     }
  123.  
  124.     /* Parent; assume fdopen can't fail. */
  125.     if (*type == 'r') {
  126.         iop = fdopen(pdes[0], type);
  127.         (void)close(pdes[1]);
  128.     } else {
  129.         iop = fdopen(pdes[1], type);
  130.         (void)close(pdes[0]);
  131.     }
  132.  
  133.     /* Link into list of file descriptors. */
  134.     cur->fp = iop;
  135.     cur->pid =  pid;
  136.     cur->next = pidlist;
  137.     pidlist = cur;
  138.  
  139.     return (iop);
  140. }
  141.  
  142. /*
  143.  * pclose --
  144.  *    Pclose returns -1 if stream is not associated with a `popened' command,
  145.  *    if already `pclosed', or waitpid returns an error.
  146.  */
  147. int
  148. pclose(iop)
  149.     FILE *iop;
  150. {
  151.     register struct pid *cur, *last;
  152.     int omask;
  153.     union wait pstat;
  154.     pid_t pid;
  155.  
  156. #ifdef DEBUG_lwei
  157.     fprintf (stderr, "xfe pclose() is called\n");
  158. #endif
  159.  
  160.     (void)fclose(iop);
  161.  
  162.     /* Find the appropriate file pointer. */
  163.     for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
  164.         if (cur->fp == iop)
  165.             break;
  166.     if (cur == NULL)
  167.         return (-1);
  168.  
  169.     /* Get the status of the process. */
  170.     omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
  171.     do {
  172.         pid = waitpid(cur->pid, (int *) &pstat, 0);
  173.     } while (pid == -1 && errno == EINTR);
  174.     (void)sigsetmask(omask);
  175.  
  176.     /* Remove the entry from the linked list. */
  177.     if (last == NULL)
  178.         pidlist = cur->next;
  179.     else
  180.         last->next = cur->next;
  181.     free(cur);
  182.  
  183.     return (pid == -1 ? -1 : pstat.w_status);
  184. }
  185.