Subversion Repositories planix.SVN

Rev

Blame | Last modification | View Log | RSS feed

/*
 * Copyright (c) 1980 Regents of the University of California.
 * All rights reserved.  The Berkeley software License Agreement
 * specifies the terms and conditions for redistribution.
 */

#if     !defined(lint) && defined(DOSCCS)
char *copyright =
"@(#) Copyright (c) 1980 Regents of the University of California.\n\
 All rights reserved.\n";

static char *sccsid = "@(#)expreserve.c 7.13.2 (2.11BSD GTE) 1996/10/26";
#endif

#include <stdio.h>
#include <ctype.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/dir.h>
#include <pwd.h>
#include "uparm.h"

#define TMP     "/tmp"

#ifdef VMUNIX
#define HBLKS   2
#else
#define HBLKS   1
#endif

char xstr[1];                   /* make loader happy */

/*
 * Expreserve - preserve a file in /usr/preserve
 * Bill Joy UCB November 13, 1977
 *
 * This routine is very naive - it doesn't remove anything from
 * /usr/preserve... this may mean that we leave
 * stuff there... the danger in doing anything with /usr/preserve
 * is that the clock may be screwed up and we may get confused.
 *
 * We are called in two ways - first from the editor with no argumentss
 * and the standard input open on the temp file. Second with an argument
 * to preserve the entire contents of /tmp (root only).
 *
 * BUG: should do something about preserving Rx... (register contents)
 *      temporaries.
 */

#ifndef VMUNIX
#define LBLKS   125
#else
#define LBLKS   900
#endif
#define FNSIZE  128

struct  header {
        time_t  Time;                   /* Time temp file last updated */
        int     Uid;                    /* This users identity */
#ifndef VMUNIX
        short   Flines;                 /* Number of lines in file */
#else
        int     Flines;
#endif
        char    Savedfile[FNSIZE];      /* The current file name */
        short   Blocks[LBLKS];          /* Blocks where line pointers stashed */
} H;

#ifdef  lint
#define ignore(a)       Ignore(a)
#define ignorl(a)       Ignorl(a)
#else
#define ignore(a)       a
#define ignorl(a)       a
#endif

struct  passwd *getpwuid();
off_t   lseek();
FILE    *popen();

#define eq(a, b) strcmp(a, b) == 0

main(argc)
        int argc;
{
        register DIR *tf;
        struct direct *dirent;
        struct stat stbuf;

        /*
         * If only one argument, then preserve the standard input.
         */
        if (argc == 1) {
                if (copyout((char *) 0))
                        exit(1);
                exit(0);
        }

        /*
         * If not super user, then can only preserve standard input.
         */
        if (getuid()) {
                fprintf(stderr, "NOT super user\n");
                exit(1);
        }

        /*
         * ... else preserve all the stuff in /tmp, removing
         * it as we go.
         */
        if (chdir(TMP) < 0) {
                perror(TMP);
                exit(1);
        }

        tf = opendir(".");
        if (tf == NULL) {
                perror(TMP);
                exit(1);
        }
        while ((dirent = readdir(tf)) != NULL) {
                /* Ex temporaries must begin with Ex. */
                if (dirent->d_name[0] != 'E' || dirent->d_name[1] != 'x')
                        continue;
                if (stat(dirent->d_name, &stbuf))
                        continue;
                if ((stbuf.st_mode & S_IFMT) != S_IFREG)
                        continue;
                /*
                 * Save the bastard.
                 */
                ignore(copyout(dirent->d_name));
        }
        closedir(tf);
        exit(0);
}

char    pattern[] =     "/usr/preserve/Exaa`XXXXX";

/*
 * Copy file name into /usr/preserve/...
 * If name is (char *) 0, then do the standard input.
 * We make some checks on the input to make sure it is
 * really an editor temporary, generate a name for the
 * file (this is the slowest thing since we must stat
 * to find a unique name), and finally copy the file.
 */
copyout(name)
        char *name;
{
        int i;
        static int reenter;
        char buf[BUFSIZ];

        /*
         * The first time we put in the digits of our
         * process number at the end of the pattern.
         */
        if (reenter == 0) {
                mkdigits(pattern);
                reenter++;
        }

        /*
         * If a file name was given, make it the standard
         * input if possible.
         */
        if (name != 0) {
                ignore(close(0));
                /*
                 * Need read/write access for arcane reasons
                 * (see below).
                 */
                if (open(name, 2) < 0)
                        return (-1);
        }

        /*
         * Get the header block.
         */
        ignorl(lseek(0, 0l, 0));
        if (read(0, (char *) &H, sizeof H) != sizeof H) {
format:
                if (name == 0)
                        fprintf(stderr, "Buffer format error\t");
                return (-1);
        }

        /*
         * Consistency checsks so we don't copy out garbage.
         */
        if (H.Flines < 0) {
#ifdef DEBUG
                fprintf(stderr, "Negative number of lines\n");
#endif
                goto format;
        }
        if (H.Blocks[0] != HBLKS || H.Blocks[1] != HBLKS+1) {
#ifdef DEBUG
                fprintf(stderr, "Blocks %d %d\n", H.Blocks[0], H.Blocks[1]);
#endif
                goto format;
        }
        if (name == 0 && H.Uid != getuid()) {
#ifdef DEBUG
                fprintf(stderr, "Wrong user-id\n");
#endif
                goto format;
        }
        if (lseek(0, 0l, 0)) {
#ifdef DEBUG
                fprintf(stderr, "Negative number of lines\n");
#endif
                goto format;
        }

        /*
         * If no name was assigned to the file, then give it the name
         * LOST, by putting this in the header.
         */
        if (H.Savedfile[0] == 0) {
                strcpy(H.Savedfile, "LOST");
                ignore(write(0, (char *) &H, sizeof H));
                H.Savedfile[0] = 0;
                lseek(0, 0l, 0);
        }

        /*
         * File is good.  Get a name and create a file for the copy.
         */
        mknext(pattern);
        ignore(close(1));
        if (creat(pattern, 0600) < 0) {
                if (name == 0)
                        perror(pattern);
                return (1);
        }

        /*
         * Make the target be owned by the owner of the file.
         */
        ignore(chown(pattern, H.Uid, 0));

        /*
         * Copy the file.
         */
        for (;;) {
                i = read(0, buf, BUFSIZ);
                if (i < 0) {
                        if (name)
                                perror("Buffer read error");
                        ignore(unlink(pattern));
                        return (-1);
                }
                if (i == 0) {
                        if (name)
                                ignore(unlink(name));
                        notify(H.Uid, H.Savedfile, (int) name, H.Time);
                        return (0);
                }
                if (write(1, buf, i) != i) {
                        if (name == 0)
                                perror(pattern);
                        unlink(pattern);
                        return (-1);
                }
        }
}

/*
 * Blast the last 5 characters of cp to be the process number.
 */
mkdigits(cp)
        char *cp;
{
        register int i, j;

        for (i = getpid(), j = 5, cp += strlen(cp); j > 0; i /= 10, j--)
                *--cp = i % 10 | '0';
}

/*
 * Make the name in cp be unique by clobbering up to
 * three alphabetic characters into a sequence of the form 'aab', 'aac', etc.
 * Mktemp gets weird names too quickly to be useful here.
 */
mknext(cp)
        char *cp;
{
        char *dcp;
        struct stat stb;

        dcp = cp + strlen(cp) - 1;
        while (isdigit(*dcp))
                dcp--;
whoops:
        if (dcp[0] == 'z') {
                dcp[0] = 'a';
                if (dcp[-1] == 'z') {
                        dcp[-1] = 'a';
                        if (dcp[-2] == 'z')
                                fprintf(stderr, "Can't find a name\t");
                        dcp[-2]++;
                } else
                        dcp[-1]++;
        } else
                dcp[0]++;
        if (stat(cp, &stb) == 0)
                goto whoops;
}

/*
 * Notify user uid that his file fname has been saved.
 */
notify(uid, fname, flag, time)
        int uid;
        char *fname;
        time_t  time;
{
        struct passwd *pp = getpwuid(uid);
        register FILE *mf;
        char    cmd[BUFSIZ];
        char    hostname[128];
        char    croak[128];
        char    *timestamp, *ctime();

        if (pp == NULL)
                return;
        gethostname(hostname, sizeof(hostname));
        timestamp = ctime(&time);
        timestamp[16] = 0;      /* blast from seconds on */
        sprintf(cmd, "/bin/mail %s", pp->pw_name);
        setuid(getuid());
        mf = popen(cmd, "w");
        if (mf == NULL)
                return;
        setbuf(mf, cmd);
        /*
         *      flag says how the editor croaked:
         * "the editor was killed" is perhaps still not an ideal
         * error message.  Usually, either it was forcably terminated
         * or the phone was hung up, but we don't know which.
         */
        sprintf(croak, flag
                ? "the system went down"
                : "the editor was killed");
        if (fname[0] == 0) {
                fname = "LOST";
                fprintf(mf,
"Subject: editor saved ``LOST''\n");
                fprintf(mf,
"You were editing a file without a name\n");
                fprintf(mf,
"at <%s> on the machine ``%s'' when %s.\n", timestamp, hostname, croak);
                fprintf(mf,
"Since the file had no name, it has been named \"LOST\".\n");
        } else {
                fprintf(mf,
"Subject: editor saved ``%s''\n", fname);
                fprintf(mf,
"You were editing the file \"%s\"\n", fname);
                fprintf(mf,
"at <%s> on the machine ``%s''\n", timestamp, hostname);
                fprintf(mf,
"when %s.\n", croak);
        }
        fprintf(mf,
"\nYou can retrieve most of your changes to this file\n");
        fprintf(mf,
"using the \"recover\" command of the editor.\n");
        fprintf(mf,
"An easy way to do this is to give the command \"vi -r %s\".\n", fname);
        fprintf(mf,
"This method also works using \"ex\" and \"edit\".\n");
        pclose(mf);
}

/*
 *      people making love
 *      never exactly the same
 *      just like a snowflake 
 */

#ifdef lint
Ignore(a)
        int a;
{

        a = a;
}

Ignorl(a)
        long a;
{

        a = a;
}
#endif