[BACK]Return to at.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / at

Annotation of src/usr.bin/at/at.c, Revision 1.44

1.44    ! jmc         1: /*     $OpenBSD: at.c,v 1.43 2005/06/23 14:39:35 jmc Exp $     */
1.1       deraadt     2:
                      3: /*
1.7       millert     4:  *  at.c : Put file into atrun queue
                      5:  *  Copyright (C) 1993, 1994  Thomas Koenig
1.1       deraadt     6:  *
1.7       millert     7:  *  Atrun & Atq modifications
                      8:  *  Copyright (C) 1993  David Parsons
1.1       deraadt     9:  *
1.29      millert    10:  *  Traditional BSD behavior and other significant modifications
1.35      millert    11:  *  Copyright (C) 2002-2003  Todd C. Miller
1.29      millert    12:  *
1.1       deraadt    13:  * Redistribution and use in source and binary forms, with or without
                     14:  * modification, are permitted provided that the following conditions
                     15:  * are met:
                     16:  * 1. Redistributions of source code must retain the above copyright
                     17:  *    notice, this list of conditions and the following disclaimer.
                     18:  * 2. The name of the author(s) may not be used to endorse or promote
                     19:  *    products derived from this software without specific prior written
                     20:  *    permission.
                     21:  *
                     22:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
                     23:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     24:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1.7       millert    25:  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
1.1       deraadt    26:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     27:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     28:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     29:  * THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     30:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     31:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     32:  */
                     33:
1.35      millert    34: #define        MAIN_PROGRAM
1.1       deraadt    35:
1.35      millert    36: #include "cron.h"
1.1       deraadt    37: #include "at.h"
                     38: #include "privs.h"
1.35      millert    39: #include <limits.h>
1.1       deraadt    40:
                     41: #define ALARMC 10              /* Number of seconds to wait for timeout */
1.29      millert    42: #define TIMESIZE 50            /* Size of buffer passed to strftime() */
1.1       deraadt    43:
                     44: #ifndef lint
1.44    ! jmc        45: static const char rcsid[] = "$OpenBSD: at.c,v 1.43 2005/06/23 14:39:35 jmc Exp $";
1.1       deraadt    46: #endif
                     47:
1.29      millert    48: /* Variables to remove from the job's environment. */
1.1       deraadt    49: char *no_export[] =
                     50: {
1.28      millert    51:        "TERM", "TERMCAP", "DISPLAY", "_", "SHELLOPTS", "BASH_VERSINFO",
                     52:        "EUID", "GROUPS", "PPID", "UID", "SSH_AUTH_SOCK", "SSH_AGENT_PID",
1.1       deraadt    53: };
1.7       millert    54:
1.27      millert    55: int program = AT;              /* default program mode */
1.35      millert    56: char atfile[MAX_FNAME];                /* path to the at spool file */
1.29      millert    57: int fcreated;                  /* whether or not we created the file yet */
                     58: char *atinput = NULL;          /* where to get input from */
1.1       deraadt    59: char atqueue = 0;              /* which queue to examine for jobs (atq) */
1.29      millert    60: char vflag = 0;                        /* show completed but unremoved jobs (atq) */
                     61: char force = 0;                        /* suppress errors (atrm) */
                     62: char interactive = 0;          /* interactive mode (atrm) */
                     63: static int send_mail = 0;      /* whether we are sending mail */
1.7       millert    64:
1.21      millert    65: static void sigc(int);
                     66: static void alarmc(int);
1.35      millert    67: static void writefile(const char *, time_t, char);
1.29      millert    68: static void list_jobs(int, char **, int, int);
1.25      millert    69: static time_t ttime(const char *);
1.35      millert    70: static int check_permission(void);
                     71: static void panic(const char *);
                     72: static void perr(const char *);
                     73: static void perr2(const char *, const char *);
1.41      millert    74: static __dead void usage(void);
1.35      millert    75: time_t parsetime(int, char **);
                     76:
                     77: /*
                     78:  * Something fatal has happened, print error message and exit.
                     79:  */
                     80: static __dead void
                     81: panic(const char *a)
                     82: {
                     83:        (void)fprintf(stderr, "%s: %s\n", ProgramName, a);
                     84:        if (fcreated) {
                     85:                PRIV_START;
                     86:                unlink(atfile);
                     87:                PRIV_END;
                     88:        }
                     89:
                     90:        exit(ERROR_EXIT);
                     91: }
                     92:
                     93: /*
                     94:  * Two-parameter version of panic().
                     95:  */
1.42      millert    96: static __dead void
1.35      millert    97: panic2(const char *a, const char *b)
                     98: {
                     99:        (void)fprintf(stderr, "%s: %s%s\n", ProgramName, a, b);
                    100:        if (fcreated) {
                    101:                PRIV_START;
                    102:                unlink(atfile);
                    103:                PRIV_END;
                    104:        }
                    105:
                    106:        exit(ERROR_EXIT);
                    107: }
                    108:
                    109: /*
                    110:  * Some operating system error; print error message and exit.
                    111:  */
                    112: static __dead void
                    113: perr(const char *a)
                    114: {
                    115:        if (!force)
                    116:                perror(a);
                    117:        if (fcreated) {
                    118:                PRIV_START;
                    119:                unlink(atfile);
                    120:                PRIV_END;
                    121:        }
                    122:
                    123:        exit(ERROR_EXIT);
                    124: }
                    125:
                    126: /*
                    127:  * Two-parameter version of perr().
                    128:  */
1.42      millert   129: static __dead void
1.35      millert   130: perr2(const char *a, const char *b)
                    131: {
                    132:        if (!force)
                    133:                (void)fputs(a, stderr);
                    134:        perr(b);
                    135: }
1.1       deraadt   136:
1.42      millert   137: static void
1.26      millert   138: sigc(int signo)
1.1       deraadt   139: {
1.7       millert   140:        /* If the user presses ^C, remove the spool file and exit. */
1.1       deraadt   141:        if (fcreated) {
1.26      millert   142:                PRIV_START;
1.7       millert   143:                (void)unlink(atfile);
1.26      millert   144:                PRIV_END;
1.1       deraadt   145:        }
                    146:
1.35      millert   147:        _exit(ERROR_EXIT);
1.1       deraadt   148: }
                    149:
1.42      millert   150: static void
1.26      millert   151: alarmc(int signo)
1.1       deraadt   152: {
1.35      millert   153:        /* just return */
1.1       deraadt   154: }
                    155:
1.29      millert   156: static int
                    157: newjob(time_t runtimer, int queue)
                    158: {
                    159:        int fd, i;
1.1       deraadt   160:
1.7       millert   161:        /*
1.29      millert   162:         * If we have a collision, try shifting the time by up to
                    163:         * two minutes.  Perhaps it would be better to try different
                    164:         * queues instead...
1.7       millert   165:         */
1.29      millert   166:        for (i = 0; i < 120; i++) {
1.35      millert   167:                snprintf(atfile, sizeof(atfile), "%s/%ld.%c", AT_DIR,
                    168:                    (long)runtimer, queue);
1.29      millert   169:                fd = open(atfile, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR);
                    170:                if (fd >= 0)
                    171:                        return (fd);
1.31      millert   172:                runtimer++;
1.29      millert   173:        }
                    174:        return (-1);
1.1       deraadt   175: }
                    176:
1.29      millert   177: /*
                    178:  * This does most of the work if at or batch are invoked for
                    179:  * writing a job.
                    180:  */
1.1       deraadt   181: static void
1.35      millert   182: writefile(const char *cwd, time_t runtimer, char queue)
1.1       deraadt   183: {
1.35      millert   184:        const char *ap;
                    185:        char *mailname, *shell;
1.28      millert   186:        char timestr[TIMESIZE];
1.1       deraadt   187:        struct passwd *pass_entry;
1.28      millert   188:        struct tm runtime;
1.1       deraadt   189:        int fdes, lockdes, fd2;
                    190:        FILE *fp, *fpin;
                    191:        struct sigaction act;
                    192:        char **atenv;
                    193:        int ch;
                    194:        mode_t cmask;
1.29      millert   195:        extern char **environ;
1.1       deraadt   196:
1.7       millert   197:        (void)setlocale(LC_TIME, "");
                    198:
1.1       deraadt   199:        /*
                    200:         * Install the signal handler for SIGINT; terminate after removing the
                    201:         * spool file if necessary
                    202:         */
1.35      millert   203:        bzero(&act, sizeof act);
1.1       deraadt   204:        act.sa_handler = sigc;
1.29      millert   205:        sigemptyset(&act.sa_mask);
1.1       deraadt   206:        act.sa_flags = 0;
                    207:        sigaction(SIGINT, &act, NULL);
                    208:
1.26      millert   209:        PRIV_START;
1.1       deraadt   210:
1.35      millert   211:        if ((lockdes = open(AT_DIR, O_RDONLY, 0)) < 0)
                    212:                perr("Cannot open jobs dir");
                    213:
1.22      millert   214:        /*
1.29      millert   215:         * Lock the jobs dir so we don't have to worry about someone
                    216:         * else grabbing a file name out from under us.
1.22      millert   217:         * Set an alarm so we don't sleep forever waiting on the lock.
                    218:         * If we don't succeed with ALARMC seconds, something is wrong...
                    219:         */
1.35      millert   220:        bzero(&act, sizeof act);
1.1       deraadt   221:        act.sa_handler = alarmc;
1.29      millert   222:        sigemptyset(&act.sa_mask);
1.35      millert   223: #ifdef SA_INTERRUPT
                    224:        act.sa_flags = SA_INTERRUPT;
                    225: #endif
1.1       deraadt   226:        sigaction(SIGALRM, &act, NULL);
                    227:        alarm(ALARMC);
1.35      millert   228:        ch = flock(lockdes, LOCK_EX);
1.1       deraadt   229:        alarm(0);
1.35      millert   230:        if (ch != 0)
                    231:                panic("Unable to lock jobs dir");
1.22      millert   232:
1.1       deraadt   233:        /*
                    234:         * Create the file. The x bit is only going to be set after it has
                    235:         * been completely written out, to make sure it is not executed in
                    236:         * the meantime.  To make sure they do not get deleted, turn off
                    237:         * their r bit.  Yes, this is a kluge.
                    238:         */
                    239:        cmask = umask(S_IRUSR | S_IWUSR | S_IXUSR);
1.29      millert   240:        if ((fdes = newjob(runtimer, queue)) == -1)
1.1       deraadt   241:                perr("Cannot create atjob file");
                    242:
                    243:        if ((fd2 = dup(fdes)) < 0)
                    244:                perr("Error in dup() of job file");
                    245:
1.7       millert   246:        if (fchown(fd2, real_uid, real_gid) != 0)
1.1       deraadt   247:                perr("Cannot give away file");
                    248:
1.26      millert   249:        PRIV_END;
1.1       deraadt   250:
                    251:        /*
                    252:         * We've successfully created the file; let's set the flag so it
                    253:         * gets removed in case of an interrupt or error.
                    254:         */
                    255:        fcreated = 1;
                    256:
                    257:        /* Now we can release the lock, so other people can access it */
1.7       millert   258:        (void)close(lockdes);
1.1       deraadt   259:
                    260:        if ((fp = fdopen(fdes, "w")) == NULL)
                    261:                panic("Cannot reopen atjob file");
                    262:
                    263:        /*
1.18      millert   264:         * Get the userid to mail to, first by trying getlogin(), which asks
                    265:         * the kernel, then from $LOGNAME or $USER, finally from getpwuid().
1.1       deraadt   266:         */
                    267:        mailname = getlogin();
1.5       millert   268:        if (mailname == NULL && (mailname = getenv("LOGNAME")) == NULL)
                    269:                mailname = getenv("USER");
1.1       deraadt   270:
1.7       millert   271:        if ((mailname == NULL) || (mailname[0] == '\0') ||
1.35      millert   272:            (strlen(mailname) > MAX_UNAME) || (getpwnam(mailname) == NULL)) {
1.7       millert   273:                pass_entry = getpwuid(real_uid);
1.1       deraadt   274:                if (pass_entry != NULL)
                    275:                        mailname = pass_entry->pw_name;
                    276:        }
                    277:
1.28      millert   278:        /*
                    279:         * Get the shell to run the job under.  First check $SHELL, falling
                    280:         * back to the user's shell in the password database or, failing
                    281:         * that, /bin/sh.
                    282:         */
                    283:        if ((shell = getenv("SHELL")) == NULL || *shell == '\0') {
                    284:                pass_entry = getpwuid(real_uid);
                    285:                if (pass_entry != NULL && *pass_entry->pw_shell != '\0')
                    286:                        shell = pass_entry->pw_shell;
                    287:                else
                    288:                        shell = _PATH_BSHELL;
                    289:        }
                    290:
1.13      kstailey  291:        if (atinput != NULL) {
1.1       deraadt   292:                fpin = freopen(atinput, "r", stdin);
                    293:                if (fpin == NULL)
                    294:                        perr("Cannot open input file");
                    295:        }
1.42      millert   296:        (void)fprintf(fp, "#!/bin/sh\n# atrun uid=%lu gid=%lu\n# mail %*s %d\n",
                    297:            (unsigned long)real_uid, (unsigned long)real_gid,
                    298:            MAX_UNAME, mailname, send_mail);
1.1       deraadt   299:
                    300:        /* Write out the umask at the time of invocation */
1.7       millert   301:        (void)fprintf(fp, "umask %o\n", cmask);
1.1       deraadt   302:
                    303:        /*
                    304:         * Write out the environment. Anything that may look like a special
                    305:         * character to the shell is quoted, except for \n, which is done
1.44    ! jmc       306:         * with a pair of "'s.  Don't export the no_export list (such as
1.1       deraadt   307:         * TERM or DISPLAY) because we don't want these.
                    308:         */
                    309:        for (atenv = environ; *atenv != NULL; atenv++) {
                    310:                int export = 1;
                    311:                char *eqp;
                    312:
                    313:                eqp = strchr(*atenv, '=');
1.19      millert   314:                if (eqp == NULL)
1.1       deraadt   315:                        eqp = *atenv;
                    316:                else {
                    317:                        int i;
                    318:
                    319:                        for (i = 0;i < sizeof(no_export) /
                    320:                            sizeof(no_export[0]); i++) {
                    321:                                export = export
                    322:                                    && (strncmp(*atenv, no_export[i],
                    323:                                        (size_t) (eqp - *atenv)) != 0);
                    324:                        }
                    325:                        eqp++;
                    326:                }
                    327:
                    328:                if (export) {
1.7       millert   329:                        (void)fwrite(*atenv, sizeof(char), eqp - *atenv, fp);
1.1       deraadt   330:                        for (ap = eqp; *ap != '\0'; ap++) {
                    331:                                if (*ap == '\n')
1.7       millert   332:                                        (void)fprintf(fp, "\"\n\"");
1.1       deraadt   333:                                else {
1.7       millert   334:                                        if (!isalnum(*ap)) {
                    335:                                                switch (*ap) {
                    336:                                                case '%': case '/': case '{':
                    337:                                                case '[': case ']': case '=':
                    338:                                                case '}': case '@': case '+':
                    339:                                                case '#': case ',': case '.':
                    340:                                                case ':': case '-': case '_':
                    341:                                                        break;
                    342:                                                default:
                    343:                                                        (void)fputc('\\', fp);
                    344:                                                        break;
                    345:                                                }
                    346:                                        }
                    347:                                        (void)fputc(*ap, fp);
1.1       deraadt   348:                                }
                    349:                        }
1.7       millert   350:                        (void)fputs("; export ", fp);
                    351:                        (void)fwrite(*atenv, sizeof(char), eqp - *atenv - 1, fp);
                    352:                        (void)fputc('\n', fp);
                    353:                }
                    354:        }
                    355:        /*
                    356:         * Cd to the directory at the time and write out all the
                    357:         * commands the user supplies from stdin.
                    358:         */
                    359:        (void)fputs("cd ", fp);
1.35      millert   360:        for (ap = cwd; *ap != '\0'; ap++) {
1.7       millert   361:                if (*ap == '\n')
                    362:                        fprintf(fp, "\"\n\"");
                    363:                else {
                    364:                        if (*ap != '/' && !isalnum(*ap))
                    365:                                (void)fputc('\\', fp);
1.1       deraadt   366:
1.7       millert   367:                        (void)fputc(*ap, fp);
1.1       deraadt   368:                }
                    369:        }
                    370:        /*
1.7       millert   371:         * Test cd's exit status: die if the original directory has been
                    372:         * removed, become unreadable or whatever.
1.1       deraadt   373:         */
1.29      millert   374:        (void)fprintf(fp, " || {\n\t echo 'Execution directory inaccessible'"
                    375:            " >&2\n\t exit 1\n}\n");
1.1       deraadt   376:
1.3       millert   377:        if ((ch = getchar()) == EOF)
                    378:                panic("Input error");
                    379:
1.28      millert   380:        /* We want the job to run under the user's shell. */
                    381:        fprintf(fp, "%s << '_END_OF_AT_JOB'\n", shell);
                    382:
1.3       millert   383:        do {
1.7       millert   384:                (void)fputc(ch, fp);
1.3       millert   385:        } while ((ch = getchar()) != EOF);
1.1       deraadt   386:
1.28      millert   387:        (void)fprintf(fp, "\n_END_OF_AT_JOB\n");
1.1       deraadt   388:        if (ferror(fp))
                    389:                panic("Output error");
                    390:
                    391:        if (ferror(stdin))
                    392:                panic("Input error");
                    393:
1.7       millert   394:        (void)fclose(fp);
1.1       deraadt   395:
                    396:        /*
                    397:         * Set the x bit so that we're ready to start executing
                    398:         */
                    399:        if (fchmod(fd2, S_IRUSR | S_IWUSR | S_IXUSR) < 0)
                    400:                perr("Cannot give away file");
                    401:
1.7       millert   402:        (void)close(fd2);
1.28      millert   403:
1.30      millert   404:        /* Poke cron so it knows to reload the at spool. */
1.35      millert   405:        PRIV_START;
                    406:        poke_daemon(AT_DIR, RELOAD_AT);
                    407:        PRIV_END;
1.30      millert   408:
1.28      millert   409:        runtime = *localtime(&runtimer);
                    410:        strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
                    411:        (void)fprintf(stderr, "commands will be executed using %s\n", shell);
1.35      millert   412:        (void)fprintf(stderr, "job %s at %s\n", &atfile[sizeof(AT_DIR)],
1.29      millert   413:            timestr);
                    414: }
                    415:
                    416: /* Sort by creation time. */
                    417: static int
                    418: byctime(const void *v1, const void *v2)
                    419: {
                    420:        const struct atjob *j1 = *(struct atjob **)v1;
                    421:        const struct atjob *j2 = *(struct atjob **)v2;
                    422:
                    423:        return (j1->ctime - j2->ctime);
                    424: }
                    425:
                    426: /* Sort by job number (and thus execution time). */
                    427: static int
                    428: byjobno(const void *v1, const void *v2)
                    429: {
                    430:        const struct atjob *j1 = *(struct atjob **)v1;
                    431:        const struct atjob *j2 = *(struct atjob **)v2;
                    432:
                    433:        if (j1->runtimer == j2->runtimer)
                    434:                return (j1->queue - j2->queue);
                    435:        return (j1->runtimer - j2->runtimer);
                    436: }
                    437:
                    438: static void
1.37      millert   439: print_job(struct atjob *job, int n, int shortformat)
1.29      millert   440: {
                    441:        struct passwd *pw;
                    442:        struct tm runtime;
                    443:        char timestr[TIMESIZE];
                    444:        static char *ranks[] = {
                    445:                "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th"
                    446:        };
                    447:
                    448:        runtime = *localtime(&job->runtimer);
                    449:        if (shortformat) {
                    450:                strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
                    451:                (void)printf("%ld.%c\t%s\n", (long)job->runtimer,
                    452:                    job->queue, timestr);
                    453:        } else {
1.37      millert   454:                pw = getpwuid(job->uid);
1.29      millert   455:                /* Rank hack shamelessly stolen from lpq */
                    456:                if (n / 10 == 1)
                    457:                        printf("%3d%-5s", n,"th");
                    458:                else
                    459:                        printf("%3d%-5s", n, ranks[n % 10]);
                    460:                strftime(timestr, TIMESIZE, "%b %e, %Y %R", &runtime);
                    461:                (void)printf("%-21.18s%-11.8s%10ld.%c   %c%s\n",
                    462:                    timestr, pw ? pw->pw_name : "???",
                    463:                    (long)job->runtimer, job->queue, job->queue,
1.37      millert   464:                    (S_IXUSR & job->mode) ? "" : " (done)");
1.29      millert   465:        }
1.1       deraadt   466: }
                    467:
1.29      millert   468: /*
                    469:  * List all of a user's jobs in the queue, by looping through
1.35      millert   470:  * AT_DIR, or all jobs if we are root.  If argc is > 0, argv
1.29      millert   471:  * contains the list of users whose jobs shall be displayed. By
                    472:  * default, the list is sorted by execution date and queue.  If
                    473:  * csort is non-zero jobs will be sorted by creation/submission date.
                    474:  */
1.1       deraadt   475: static void
1.29      millert   476: list_jobs(int argc, char **argv, int count_only, int csort)
1.1       deraadt   477: {
                    478:        struct passwd *pw;
                    479:        struct dirent *dirent;
1.40      tedu      480:        struct atjob **atjobs, **newatjobs, *job;
1.29      millert   481:        struct stat stbuf;
1.1       deraadt   482:        time_t runtimer;
1.29      millert   483:        uid_t *uids;
                    484:        long l;
                    485:        char queue, *ep;
                    486:        DIR *spool;
                    487:        int i, shortformat, numjobs, maxjobs;
                    488:
                    489:        if (argc) {
                    490:                if ((uids = malloc(sizeof(uid_t) * argc)) == NULL)
1.35      millert   491:                        panic("Insufficient virtual memory");
1.29      millert   492:
                    493:                for (i = 0; i < argc; i++) {
                    494:                        if ((pw = getpwnam(argv[i])) == NULL)
1.35      millert   495:                                panic2(argv[i], ": invalid user name");
1.29      millert   496:                        if (pw->pw_uid != real_uid && real_uid != 0)
1.35      millert   497:                                panic("Only the superuser may display other users' jobs");
1.29      millert   498:                        uids[i] = pw->pw_uid;
                    499:                }
                    500:        } else
                    501:                uids = NULL;
                    502:
1.35      millert   503:        shortformat = strcmp(ProgramName, "at") == 0;
1.1       deraadt   504:
1.26      millert   505:        PRIV_START;
1.1       deraadt   506:
1.35      millert   507:        if (chdir(AT_DIR) != 0)
                    508:                perr2("Cannot change to ", AT_DIR);
1.1       deraadt   509:
                    510:        if ((spool = opendir(".")) == NULL)
1.35      millert   511:                perr2("Cannot open ", AT_DIR);
1.1       deraadt   512:
1.29      millert   513:        PRIV_END;
                    514:
1.35      millert   515:        if (fstat(spool->dd_fd, &stbuf) != 0)
                    516:                perr2("Cannot stat ", AT_DIR);
1.29      millert   517:
                    518:        /*
                    519:         * The directory's link count should give us a good idea
                    520:         * of how many files are in it.  Fudge things a little just
                    521:         * in case someone adds a job or two.
                    522:         */
                    523:        numjobs = 0;
                    524:        maxjobs = stbuf.st_nlink + 4;
                    525:        atjobs = (struct atjob **)malloc(maxjobs * sizeof(struct atjob *));
                    526:        if (atjobs == NULL)
1.35      millert   527:                panic("Insufficient virtual memory");
1.29      millert   528:
                    529:        /* Loop over every file in the directory. */
1.1       deraadt   530:        while ((dirent = readdir(spool)) != NULL) {
1.29      millert   531:                PRIV_START;
                    532:
                    533:                if (stat(dirent->d_name, &stbuf) != 0)
1.35      millert   534:                        perr2("Cannot stat in ", AT_DIR);
1.1       deraadt   535:
1.29      millert   536:                PRIV_END;
                    537:
1.1       deraadt   538:                /*
                    539:                 * See it's a regular file and has its x bit turned on and
                    540:                 * is the user's
                    541:                 */
1.29      millert   542:                if (!S_ISREG(stbuf.st_mode)
                    543:                    || ((stbuf.st_uid != real_uid) && !(real_uid == 0))
                    544:                    || !(S_IXUSR & stbuf.st_mode || vflag))
1.1       deraadt   545:                        continue;
                    546:
1.29      millert   547:                l = strtol(dirent->d_name, &ep, 10);
                    548:                if (*ep != '.' || !isalpha(*(ep + 1)) || *(ep + 2) != '\0' ||
                    549:                    l < 0 || l >= INT_MAX)
1.1       deraadt   550:                        continue;
1.29      millert   551:                runtimer = (time_t)l;
                    552:                queue = *(ep + 1);
1.1       deraadt   553:
                    554:                if (atqueue && (queue != atqueue))
                    555:                        continue;
                    556:
1.29      millert   557:                /* Check against specified user(s). */
                    558:                if (argc) {
                    559:                        for (i = 0; i < argc; i++) {
                    560:                                if (uids[0] == stbuf.st_uid)
                    561:                                        break;
                    562:                        }
                    563:                        if (i == argc)
                    564:                                continue;       /* user doesn't match */
                    565:                }
                    566:
                    567:                if (count_only) {
                    568:                        numjobs++;
                    569:                        continue;
                    570:                }
                    571:
                    572:                job = (struct atjob *)malloc(sizeof(struct atjob));
                    573:                if (job == NULL)
1.35      millert   574:                        panic("Insufficient virtual memory");
1.29      millert   575:                job->runtimer = runtimer;
                    576:                job->ctime = stbuf.st_ctime;
1.37      millert   577:                job->uid = stbuf.st_uid;
                    578:                job->mode = stbuf.st_mode;
1.29      millert   579:                job->queue = queue;
                    580:                if (numjobs == maxjobs) {
1.40      tedu      581:                        int newjobs = maxjobs * 2;
                    582:                        newatjobs = realloc(atjobs, newjobs * sizeof(job));
                    583:                        if (newatjobs == NULL)
1.35      millert   584:                                panic("Insufficient virtual memory");
1.40      tedu      585:                        atjobs = newatjobs;
                    586:                        maxjobs = newjobs;
1.29      millert   587:                }
                    588:                atjobs[numjobs++] = job;
                    589:        }
                    590:        free(uids);
                    591:
                    592:        if (count_only || numjobs == 0) {
                    593:                if (numjobs == 0 && !shortformat)
                    594:                        fprintf(stderr, "no files in queue.\n");
                    595:                else if (count_only)
                    596:                        printf("%d\n", numjobs);
                    597:                free(atjobs);
                    598:                return;
                    599:        }
                    600:
                    601:        /* Sort by job run time or by job creation time. */
                    602:        qsort(atjobs, numjobs, sizeof(struct atjob *),
                    603:            csort ? byctime : byjobno);
                    604:
                    605:        if (!shortformat)
                    606:                (void)puts(" Rank     Execution Date     Owner          "
                    607:                    "Job       Queue");
                    608:
                    609:        for (i = 0; i < numjobs; i++) {
1.37      millert   610:                print_job(atjobs[i], i + 1, shortformat);
1.29      millert   611:                free(atjobs[i]);
1.1       deraadt   612:        }
1.29      millert   613:        free(atjobs);
                    614: }
                    615:
                    616: static int
                    617: rmok(int job)
                    618: {
                    619:        int ch, junk;
                    620:
                    621:        printf("%d: remove it? ", job);
                    622:        ch = getchar();
                    623:        while ((junk = getchar()) != EOF && junk != '\n')
                    624:                ;
                    625:        return (ch == 'y' || ch == 'Y');
1.1       deraadt   626: }
                    627:
1.29      millert   628: /*
1.35      millert   629:  * Loop through all jobs in AT_DIR and display or delete ones
1.29      millert   630:  * that match argv (may be job or username), or all if argc == 0.
                    631:  * Only the superuser may display/delete other people's jobs.
                    632:  */
1.28      millert   633: static int
1.26      millert   634: process_jobs(int argc, char **argv, int what)
1.1       deraadt   635: {
1.29      millert   636:        struct stat stbuf;
                    637:        struct dirent *dirent;
                    638:        struct passwd *pw;
                    639:        time_t runtimer;
                    640:        uid_t *uids;
                    641:        char **jobs, *ep, queue;
                    642:        long l;
                    643:        FILE *fp;
1.7       millert   644:        DIR *spool;
1.29      millert   645:        int job_matches, jobs_len, uids_len;
1.30      millert   646:        int error, i, ch, changed;
1.9       millert   647:
1.26      millert   648:        PRIV_START;
1.1       deraadt   649:
1.35      millert   650:        if (chdir(AT_DIR) != 0)
                    651:                perr2("Cannot change to ", AT_DIR);
1.1       deraadt   652:
1.7       millert   653:        if ((spool = opendir(".")) == NULL)
1.35      millert   654:                perr2("Cannot open ", AT_DIR);
1.7       millert   655:
1.26      millert   656:        PRIV_END;
1.7       millert   657:
1.29      millert   658:        /* Convert argv into a list of jobs and uids. */
                    659:        jobs = NULL;
                    660:        uids = NULL;
                    661:        jobs_len = uids_len = 0;
                    662:        if (argc > 0) {
                    663:                if ((jobs = malloc(sizeof(char *) * argc)) == NULL ||
                    664:                    (uids = malloc(sizeof(uid_t) * argc)) == NULL)
1.35      millert   665:                        panic("Insufficient virtual memory");
1.29      millert   666:
                    667:                for (i = 0; i < argc; i++) {
                    668:                        l = strtol(argv[i], &ep, 10);
                    669:                        if (*ep == '.' && isalpha(*(ep + 1)) &&
                    670:                            *(ep + 2) == '\0' && l > 0 && l < INT_MAX)
                    671:                                jobs[jobs_len++] = argv[i];
                    672:                        else if ((pw = getpwnam(argv[i])) != NULL) {
1.35      millert   673:                                if (real_uid != pw->pw_uid && real_uid != 0) {
                    674:                                        fprintf(stderr, "%s: Only the superuser"
1.39      mpech     675:                                            " may %s other users' jobs\n",
1.35      millert   676:                                            ProgramName, what == ATRM
                    677:                                            ? "remove" : "view");
                    678:                                        exit(ERROR_EXIT);
                    679:                                }
1.29      millert   680:                                uids[uids_len++] = pw->pw_uid;
                    681:                        } else
1.35      millert   682:                                panic2(argv[i], ": invalid user name");
1.29      millert   683:                }
                    684:        }
                    685:
1.7       millert   686:        /* Loop over every file in the directory */
1.30      millert   687:        changed = 0;
1.28      millert   688:        while ((dirent = readdir(spool)) != NULL) {
1.7       millert   689:
1.26      millert   690:                PRIV_START;
1.29      millert   691:                if (stat(dirent->d_name, &stbuf) != 0)
1.35      millert   692:                        perr2("Cannot stat in ", AT_DIR);
1.26      millert   693:                PRIV_END;
1.7       millert   694:
1.29      millert   695:                if (stbuf.st_uid != real_uid && real_uid != 0)
1.7       millert   696:                        continue;
                    697:
1.29      millert   698:                l = strtol(dirent->d_name, &ep, 10);
                    699:                if (*ep != '.' || !isalpha(*(ep + 1)) || *(ep + 2) != '\0' ||
                    700:                    l < 0 || l >= INT_MAX)
                    701:                        continue;
                    702:                runtimer = (time_t)l;
                    703:                queue = *(ep + 1);
1.7       millert   704:
1.29      millert   705:                /* Check runtimer against argv; argc==0 means do all. */
                    706:                job_matches = (argc == 0) ? 1 : 0;
                    707:                if (!job_matches) {
                    708:                        for (i = 0; i < jobs_len; i++) {
1.36      millert   709:                                if (jobs[i] != NULL &&
                    710:                                    strcmp(dirent->d_name, jobs[i]) == 0) {
1.29      millert   711:                                        jobs[i] = NULL;
                    712:                                        job_matches = 1;
                    713:                                        break;
                    714:                                }
                    715:                        }
                    716:                }
                    717:                if (!job_matches) {
                    718:                        for (i = 0; i < uids_len; i++) {
                    719:                                if (uids[i] == stbuf.st_uid) {
                    720:                                        job_matches = 1;
                    721:                                        break;
                    722:                                }
                    723:                        }
                    724:                }
                    725:
                    726:                if (job_matches) {
                    727:                        switch (what) {
                    728:                        case ATRM:
                    729:                                PRIV_START;
                    730:
                    731:                                if (!interactive ||
                    732:                                    (interactive && rmok(runtimer))) {
1.30      millert   733:                                        if (unlink(dirent->d_name) == 0)
                    734:                                                changed = 1;
                    735:                                        else
1.7       millert   736:                                                perr(dirent->d_name);
1.29      millert   737:                                        if (!force && !interactive)
                    738:                                                fprintf(stderr,
                    739:                                                    "%s removed\n",
                    740:                                                    dirent->d_name);
                    741:                                }
1.7       millert   742:
1.29      millert   743:                                PRIV_END;
1.7       millert   744:
1.29      millert   745:                                break;
1.7       millert   746:
1.29      millert   747:                        case CAT:
                    748:                                PRIV_START;
1.7       millert   749:
1.29      millert   750:                                fp = fopen(dirent->d_name, "r");
1.7       millert   751:
1.29      millert   752:                                PRIV_END;
1.7       millert   753:
1.29      millert   754:                                if (!fp)
                    755:                                        perr("Cannot open file");
1.7       millert   756:
1.29      millert   757:                                while ((ch = getc(fp)) != EOF)
                    758:                                        putchar(ch);
1.7       millert   759:
1.29      millert   760:                                break;
1.7       millert   761:
1.29      millert   762:                        default:
1.35      millert   763:                                panic("Internal error");
1.29      millert   764:                                break;
1.7       millert   765:                        }
1.1       deraadt   766:                }
                    767:        }
1.29      millert   768:        for (error = 0, i = 0; i < jobs_len; i++) {
                    769:                if (jobs[i] != NULL) {
                    770:                        if (!force)
1.39      mpech     771:                                fprintf(stderr, "%s: %s: no such job\n",
1.35      millert   772:                                    ProgramName, jobs[i]);
1.28      millert   773:                        error++;
                    774:                }
                    775:        }
1.29      millert   776:        free(jobs);
                    777:        free(uids);
                    778:
1.30      millert   779:        /* If we modied the spool, poke cron so it knows to reload. */
1.35      millert   780:        if (changed) {
                    781:                PRIV_START;
                    782:                if (chdir(CRONDIR) != 0)
                    783:                        perror(CRONDIR);
                    784:                else
                    785:                        poke_daemon(AT_DIR, RELOAD_AT);
                    786:                PRIV_END;
                    787:        }
1.30      millert   788:
1.29      millert   789:        return (error);
1.28      millert   790: }
1.1       deraadt   791:
1.25      millert   792: #define        ATOI2(s)        ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
                    793:
1.29      millert   794: /*
                    795:  * This is pretty much a copy of stime_arg1() from touch.c.
                    796:  */
1.25      millert   797: static time_t
                    798: ttime(const char *arg)
                    799: {
                    800:        struct timeval tv[2];
                    801:        time_t now;
                    802:        struct tm *t;
                    803:        int yearset;
                    804:        char *p;
1.42      millert   805:
1.25      millert   806:        if (gettimeofday(&tv[0], NULL))
                    807:                panic("Cannot get current time");
1.42      millert   808:
1.25      millert   809:        /* Start with the current time. */
                    810:        now = tv[0].tv_sec;
                    811:        if ((t = localtime(&now)) == NULL)
                    812:                panic("localtime");
                    813:        /* [[CC]YY]MMDDhhmm[.SS] */
                    814:        if ((p = strchr(arg, '.')) == NULL)
                    815:                t->tm_sec = 0;          /* Seconds defaults to 0. */
                    816:        else {
                    817:                if (strlen(p + 1) != 2)
                    818:                        goto terr;
                    819:                *p++ = '\0';
                    820:                t->tm_sec = ATOI2(p);
                    821:        }
1.42      millert   822:
1.25      millert   823:        yearset = 0;
                    824:        switch(strlen(arg)) {
                    825:        case 12:                        /* CCYYMMDDhhmm */
                    826:                t->tm_year = ATOI2(arg);
                    827:                t->tm_year *= 100;
                    828:                yearset = 1;
                    829:                /* FALLTHROUGH */
                    830:        case 10:                        /* YYMMDDhhmm */
                    831:                if (yearset) {
                    832:                        yearset = ATOI2(arg);
                    833:                        t->tm_year += yearset;
                    834:                } else {
                    835:                        yearset = ATOI2(arg);
                    836:                        t->tm_year = yearset + 2000;
                    837:                }
                    838:                t->tm_year -= 1900;     /* Convert to UNIX time. */
                    839:                /* FALLTHROUGH */
                    840:        case 8:                         /* MMDDhhmm */
                    841:                t->tm_mon = ATOI2(arg);
                    842:                --t->tm_mon;            /* Convert from 01-12 to 00-11 */
                    843:                t->tm_mday = ATOI2(arg);
                    844:                t->tm_hour = ATOI2(arg);
                    845:                t->tm_min = ATOI2(arg);
                    846:                break;
                    847:        default:
                    848:                goto terr;
                    849:        }
1.42      millert   850:
1.25      millert   851:        t->tm_isdst = -1;               /* Figure out DST. */
                    852:        tv[0].tv_sec = tv[1].tv_sec = mktime(t);
                    853:        if (tv[0].tv_sec != -1)
                    854:                return (tv[0].tv_sec);
                    855:        else
                    856:     terr:
                    857:                panic("out of range or illegal time specification: "
                    858:                    "[[CC]YY]MMDDhhmm[.SS]");
1.30      millert   859: }
                    860:
1.35      millert   861: static int
                    862: check_permission(void)
                    863: {
                    864:        int ok;
                    865:        uid_t uid = geteuid();
                    866:        struct passwd *pw;
1.30      millert   867:
1.35      millert   868:        if ((pw = getpwuid(uid)) == NULL) {
                    869:                perror("Cannot access password database");
                    870:                exit(ERROR_EXIT);
                    871:        }
1.30      millert   872:
                    873:        PRIV_START;
                    874:
1.35      millert   875:        ok = allowed(pw->pw_name, AT_ALLOW, AT_DENY);
                    876:
                    877:        PRIV_END;
1.30      millert   878:
1.35      millert   879:        return (ok);
                    880: }
1.30      millert   881:
1.41      millert   882: static __dead void
1.35      millert   883: usage(void)
                    884: {
                    885:        /* Print usage and exit.  */
                    886:        switch (program) {
                    887:        case AT:
                    888:        case CAT:
                    889:                (void)fprintf(stderr,
1.43      jmc       890:                    "usage: at [-blm] [-f file] [-q queue] -t time_arg\n"
                    891:                    "       at [-blm] [-f file] [-q queue] timespec\n"
                    892:                    "       at -c | -r job [job ...]\n");
1.35      millert   893:                break;
                    894:        case ATQ:
                    895:                (void)fprintf(stderr,
1.43      jmc       896:                    "usage: atq [-cnv] [-q queue] [name ...]\n");
1.35      millert   897:                break;
                    898:        case ATRM:
                    899:                (void)fprintf(stderr,
                    900:                    "usage: atrm [-afi] [[job] [name] ...]\n");
                    901:                break;
                    902:        case BATCH:
                    903:                (void)fprintf(stderr,
                    904:                    "usage: batch [-m] [-f file] [-q queue] [timespec]\n");
                    905:                break;
                    906:        }
                    907:        exit(ERROR_EXIT);
1.25      millert   908: }
                    909:
1.1       deraadt   910: int
1.26      millert   911: main(int argc, char **argv)
1.1       deraadt   912: {
1.29      millert   913:        time_t timer = -1;
1.7       millert   914:        char queue = DEFAULT_AT_QUEUE;
                    915:        char queue_set = 0;
1.25      millert   916:        char *options = "q:f:t:bcdlmrv";        /* default options for at */
1.38      avsm      917:        char cwd[PATH_MAX];
1.29      millert   918:        int ch;
                    919:        int aflag = 0;
                    920:        int cflag = 0;
                    921:        int nflag = 0;
1.41      millert   922:
                    923:        if (argc < 1)
                    924:                usage();
1.1       deraadt   925:
1.35      millert   926:        if ((ProgramName = strrchr(argv[0], '/')) != NULL)
                    927:                ProgramName++;
                    928:        else
                    929:                ProgramName = argv[0];
                    930:
1.26      millert   931:        RELINQUISH_PRIVS;
1.1       deraadt   932:
                    933:        /* find out what this program is supposed to do */
1.35      millert   934:        if (strcmp(ProgramName, "atq") == 0) {
1.1       deraadt   935:                program = ATQ;
1.29      millert   936:                options = "cnvq:";
1.35      millert   937:        } else if (strcmp(ProgramName, "atrm") == 0) {
1.1       deraadt   938:                program = ATRM;
1.29      millert   939:                options = "afi";
1.35      millert   940:        } else if (strcmp(ProgramName, "batch") == 0) {
1.1       deraadt   941:                program = BATCH;
1.24      millert   942:                options = "f:q:mv";
1.1       deraadt   943:        }
                    944:
                    945:        /* process whatever options we can process */
1.29      millert   946:        while ((ch = getopt(argc, argv, options)) != -1) {
                    947:                switch (ch) {
                    948:                case 'a':
                    949:                        aflag = 1;
                    950:                        break;
                    951:
                    952:                case 'i':
                    953:                        interactive = 1;
                    954:                        force = 0;
                    955:                        break;
                    956:
                    957:                case 'v':       /* show completed but unremoved jobs */
                    958:                        /*
                    959:                         * This option is only useful when we are invoked
                    960:                         * as atq but we accept (and ignore) this flag in
                    961:                         * the other programs for backwards compatibility.
                    962:                         */
                    963:                        vflag = 1;
1.1       deraadt   964:                        break;
                    965:
                    966:                case 'm':       /* send mail when job is complete */
                    967:                        send_mail = 1;
                    968:                        break;
                    969:
                    970:                case 'f':
1.29      millert   971:                        if (program == ATRM) {
                    972:                                force = 1;
                    973:                                interactive = 0;
                    974:                        } else
                    975:                                atinput = optarg;
1.1       deraadt   976:                        break;
                    977:
                    978:                case 'q':       /* specify queue */
                    979:                        if (strlen(optarg) > 1)
                    980:                                usage();
                    981:
                    982:                        atqueue = queue = *optarg;
1.7       millert   983:                        if (!(islower(queue) || isupper(queue)))
1.1       deraadt   984:                                usage();
1.7       millert   985:
                    986:                        queue_set = 1;
                    987:                        break;
                    988:
1.25      millert   989:                case 'd':               /* for backwards compatibility */
                    990:                case 'r':
1.7       millert   991:                        program = ATRM;
1.24      millert   992:                        options = "";
1.7       millert   993:                        break;
                    994:
1.25      millert   995:                case 't':
                    996:                        timer = ttime(optarg);
                    997:                        break;
                    998:
1.7       millert   999:                case 'l':
                   1000:                        program = ATQ;
1.29      millert  1001:                        options = "cnvq:";
1.7       millert  1002:                        break;
                   1003:
                   1004:                case 'b':
                   1005:                        program = BATCH;
1.24      millert  1006:                        options = "f:q:mv";
1.7       millert  1007:                        break;
                   1008:
                   1009:                case 'c':
1.29      millert  1010:                        if (program == ATQ) {
                   1011:                                cflag = 1;
                   1012:                        } else {
                   1013:                                program = CAT;
                   1014:                                options = "";
                   1015:                        }
                   1016:                        break;
                   1017:
                   1018:                case 'n':
                   1019:                        nflag = 1;
1.1       deraadt  1020:                        break;
                   1021:
                   1022:                default:
                   1023:                        usage();
                   1024:                        break;
                   1025:                }
1.29      millert  1026:        }
                   1027:        argc -= optind;
                   1028:        argv += optind;
1.7       millert  1029:
1.35      millert  1030:        if (getcwd(cwd, sizeof(cwd)) == NULL)
                   1031:                perr("Cannot get current working directory");
                   1032:
                   1033:        set_cron_cwd();
                   1034:
1.16      mickey   1035:        if (!check_permission())
1.35      millert  1036:                panic("You do not have permission to use at.");
1.7       millert  1037:
1.1       deraadt  1038:        /* select our program */
                   1039:        switch (program) {
                   1040:        case ATQ:
1.29      millert  1041:                list_jobs(argc, argv, nflag, cflag);
1.1       deraadt  1042:                break;
                   1043:
                   1044:        case ATRM:
1.7       millert  1045:        case CAT:
1.29      millert  1046:                if ((aflag && argc) || (!aflag && !argc))
1.10      millert  1047:                        usage();
1.28      millert  1048:                exit(process_jobs(argc, argv, program));
1.1       deraadt  1049:                break;
                   1050:
                   1051:        case AT:
1.25      millert  1052:                /* Time may have been specified via the -t flag. */
1.35      millert  1053:                if (timer == -1) {
                   1054:                        if (argc == 0)
                   1055:                                usage();
                   1056:                        else if ((timer = parsetime(argc, argv)) == -1)
                   1057:                                exit(ERROR_EXIT);
                   1058:                }
                   1059:                writefile(cwd, timer, queue);
1.1       deraadt  1060:                break;
                   1061:
                   1062:        case BATCH:
1.7       millert  1063:                if (queue_set)
                   1064:                        queue = toupper(queue);
                   1065:                else
                   1066:                        queue = DEFAULT_BATCH_QUEUE;
                   1067:
1.35      millert  1068:                if (argc == 0)
1.7       millert  1069:                        timer = time(NULL);
1.35      millert  1070:                else if ((timer = parsetime(argc, argv)) == -1)
                   1071:                        exit(ERROR_EXIT);
1.7       millert  1072:
1.35      millert  1073:                writefile(cwd, timer, queue);
1.1       deraadt  1074:                break;
                   1075:
                   1076:        default:
                   1077:                panic("Internal error");
                   1078:                break;
                   1079:        }
1.35      millert  1080:        exit(OK_EXIT);
1.1       deraadt  1081: }