home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / rcp / util.c < prev   
C/C++ Source or Header  |  1996-09-28  |  4KB  |  171 lines

  1. /*-
  2.  * Copyright (c) 1992, 1993
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #ifndef lint
  35. static char sccsid[] = "@(#)util.c    8.2 (Berkeley) 4/2/94";
  36. #endif /* not lint */
  37.  
  38. #ifdef HAVE_CONFIG_H
  39. #include <config.h>
  40. #endif
  41.  
  42. #include <sys/param.h>
  43. #include <sys/stat.h>
  44. #include <sys/wait.h>
  45.  
  46. #include <ctype.h>
  47. #include <err.h>
  48. #include <errno.h>
  49. #include <signal.h>
  50. #include <stdio.h>
  51. #include <stdlib.h>
  52. #include <string.h>
  53. #include <unistd.h>
  54.  
  55. #include "extern.h"
  56.  
  57. char *
  58. colon(cp)
  59.     char *cp;
  60. {
  61.     if (*cp == ':')        /* Leading colon is part of file name. */
  62.         return (0);
  63.  
  64.     for (; *cp; ++cp) {
  65.         if (*cp == ':')
  66.             return (cp);
  67.         if (*cp == '/')
  68.             return (0);
  69.     }
  70.     return (0);
  71. }
  72.  
  73. void
  74. verifydir(cp)
  75.     char *cp;
  76. {
  77.     struct stat stb;
  78.  
  79.     if (!stat(cp, &stb)) {
  80.         if (S_ISDIR(stb.st_mode))
  81.             return;
  82.         errno = ENOTDIR;
  83.     }
  84.     run_err("%s: %s", cp, strerror(errno));
  85.     exit(1);
  86. }
  87.  
  88. int
  89. okname(cp0)
  90.     char *cp0;
  91. {
  92.     int c;
  93.     char *cp;
  94.  
  95.     cp = cp0;
  96.     do {
  97.         c = *cp;
  98.         if (c & 0200)
  99.             goto bad;
  100.         if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-')
  101.             goto bad;
  102.     } while (*++cp);
  103.     return (1);
  104.  
  105. bad:    warnx("%s: invalid user name", cp0);
  106.     return (0);
  107. }
  108.  
  109. int
  110. susystem(s, userid)
  111.     int userid;
  112.     char *s;
  113. {
  114.     sig_t istat, qstat;
  115.     int status, w;
  116.     pid_t pid;
  117.  
  118.     pid = vfork();
  119.     switch (pid) {
  120.     case -1:
  121.         return (127);
  122.     
  123.     case 0:
  124.         (void)setuid(userid);
  125.         execl(PATH_BSHELL, "sh", "-c", s, NULL);
  126.         _exit(127);
  127.     }
  128.     istat = signal(SIGINT, SIG_IGN);
  129.     qstat = signal(SIGQUIT, SIG_IGN);
  130.     if (waitpid(pid, &status, 0) < 0)
  131.         status = -1;
  132.     (void)signal(SIGINT, istat);
  133.     (void)signal(SIGQUIT, qstat);
  134.     return (status);
  135. }
  136.  
  137. BUF *
  138. allocbuf(bp, fd, blksize)
  139.     BUF *bp;
  140.     int fd, blksize;
  141. {
  142.     struct stat stb;
  143.     size_t size;
  144.  
  145.     if (fstat(fd, &stb) < 0) {
  146.         run_err("fstat: %s", strerror(errno));
  147.         return (0);
  148.     }
  149.     size = roundup(stb.st_blksize, blksize);
  150.     if (size == 0)
  151.         size = blksize;
  152.     if (bp->cnt >= size)
  153.         return (bp);
  154.     if ((bp->buf = realloc(bp->buf, size)) == NULL) {
  155.         bp->cnt = 0;
  156.         run_err("%s", strerror(errno));
  157.         return (0);
  158.     }
  159.     bp->cnt = size;
  160.     return (bp);
  161. }
  162.  
  163. void
  164. lostconn(signo)
  165.     int signo;
  166. {
  167.     if (!iamremote)
  168.         warnx("lost connection");
  169.     exit(1);
  170. }
  171.