2017-11-27 15:37:16 +00:00
|
|
|
/*-
|
1995-04-12 02:42:39 +00:00
|
|
|
* at.c : Put file into atrun queue
|
2017-11-27 15:37:16 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
1995-04-12 02:42:39 +00:00
|
|
|
* Copyright (C) 1993, 1994 Thomas Koenig
|
1994-01-05 01:09:14 +00:00
|
|
|
*
|
1995-04-12 02:42:39 +00:00
|
|
|
* Atrun & Atq modifications
|
|
|
|
* Copyright (C) 1993 David Parsons
|
1994-01-05 01:09:14 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. The name of the author(s) may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
1995-08-21 12:34:18 +00:00
|
|
|
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
1994-01-05 01:09:14 +00:00
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-02 20:23:02 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1999-12-05 19:57:14 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
#define _USE_BSD 1
|
|
|
|
|
|
|
|
/* System Headers */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
2002-02-25 04:47:39 +00:00
|
|
|
#include <sys/param.h>
|
1994-01-05 01:09:14 +00:00
|
|
|
#include <sys/stat.h>
|
2002-02-25 04:47:39 +00:00
|
|
|
#include <sys/time.h>
|
1994-01-05 01:09:14 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <dirent.h>
|
1999-12-05 19:57:14 +00:00
|
|
|
#include <err.h>
|
1994-01-05 01:09:14 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2002-02-25 04:47:39 +00:00
|
|
|
#ifndef __FreeBSD__
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
1994-01-05 01:09:14 +00:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
1997-02-18 05:47:07 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
/* Local headers */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
#include "at.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "parsetime.h"
|
1995-04-12 02:42:39 +00:00
|
|
|
#include "perm.h"
|
2011-11-06 20:30:21 +00:00
|
|
|
|
|
|
|
#define MAIN
|
1994-01-05 01:09:14 +00:00
|
|
|
#include "privs.h"
|
|
|
|
|
|
|
|
/* Macros */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
#ifndef ATJOB_DIR
|
1995-04-12 02:42:39 +00:00
|
|
|
#define ATJOB_DIR "/usr/spool/atjobs/"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LFILE
|
|
|
|
#define LFILE ATJOB_DIR ".lockfile"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ATJOB_MX
|
|
|
|
#define ATJOB_MX 255
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ALARMC 10 /* Number of seconds to wait for timeout */
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
#define SIZE 255
|
|
|
|
#define TIMESIZE 50
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
|
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
/* File scope variables */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
2011-11-06 17:32:29 +00:00
|
|
|
static const char *no_export[] = {
|
1995-04-12 02:42:39 +00:00
|
|
|
"TERM", "TERMCAP", "DISPLAY", "_"
|
2011-11-06 17:32:29 +00:00
|
|
|
};
|
1999-04-25 22:37:58 +00:00
|
|
|
static int send_mail = 0;
|
2011-11-06 17:32:29 +00:00
|
|
|
static char *atinput = NULL; /* where to get input from */
|
|
|
|
static char atqueue = 0; /* which queue to examine for jobs (atq) */
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
/* External variables */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
extern char **environ;
|
|
|
|
int fcreated;
|
1995-04-12 02:42:39 +00:00
|
|
|
char atfile[] = ATJOB_DIR "12345678901234";
|
1994-01-05 01:09:14 +00:00
|
|
|
char atverify = 0; /* verify time instead of queuing job */
|
2001-09-01 07:35:25 +00:00
|
|
|
char *namep;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
/* Function declarations */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
static void sigc(int signo);
|
|
|
|
static void alarmc(int signo);
|
|
|
|
static char *cwdname(void);
|
|
|
|
static void writefile(time_t runtimer, char queue);
|
2002-05-16 00:47:14 +00:00
|
|
|
static void list_jobs(long *, int);
|
2001-12-02 12:26:18 +00:00
|
|
|
static long nextjob(void);
|
2002-01-13 20:21:08 +00:00
|
|
|
static time_t ttime(const char *arg);
|
2002-05-16 00:47:14 +00:00
|
|
|
static int in_job_list(long, long *, int);
|
|
|
|
static long *get_job_list(int, char *[], int *);
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
/* Signal catching functions */
|
|
|
|
|
2001-12-02 12:26:18 +00:00
|
|
|
static void sigc(int signo __unused)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
1995-08-21 12:34:18 +00:00
|
|
|
/* If the user presses ^C, remove the spool file and exit
|
1994-01-05 01:09:14 +00:00
|
|
|
*/
|
1995-04-12 02:42:39 +00:00
|
|
|
if (fcreated)
|
|
|
|
{
|
|
|
|
PRIV_START
|
|
|
|
unlink(atfile);
|
|
|
|
PRIV_END
|
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
|
2001-09-01 07:35:25 +00:00
|
|
|
_exit(EXIT_FAILURE);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
2001-12-02 12:26:18 +00:00
|
|
|
static void alarmc(int signo __unused)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
2001-09-01 07:35:25 +00:00
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
/* Time out after some seconds. */
|
|
|
|
strlcpy(buf, namep, sizeof(buf));
|
|
|
|
strlcat(buf, ": file locking timed out\n", sizeof(buf));
|
|
|
|
write(STDERR_FILENO, buf, strlen(buf));
|
|
|
|
sigc(0);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Local functions */
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
static char *cwdname(void)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
|
|
|
/* Read in the current directory; the name will be overwritten on
|
|
|
|
* subsequent calls.
|
|
|
|
*/
|
1995-04-12 02:42:39 +00:00
|
|
|
static char *ptr = NULL;
|
|
|
|
static size_t size = SIZE;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (ptr == NULL)
|
2001-07-24 14:15:51 +00:00
|
|
|
if ((ptr = malloc(size)) == NULL)
|
|
|
|
errx(EXIT_FAILURE, "virtual memory exhausted");
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (ptr == NULL)
|
1999-12-05 19:57:14 +00:00
|
|
|
panic("out of memory");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
if (getcwd(ptr, size-1) != NULL)
|
|
|
|
return ptr;
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (errno != ERANGE)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot get directory");
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
free (ptr);
|
|
|
|
size += SIZE;
|
2001-07-24 14:15:51 +00:00
|
|
|
if ((ptr = malloc(size)) == NULL)
|
|
|
|
errx(EXIT_FAILURE, "virtual memory exhausted");
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
static long
|
2010-01-02 10:09:20 +00:00
|
|
|
nextjob(void)
|
1995-08-21 12:34:18 +00:00
|
|
|
{
|
|
|
|
long jobno;
|
|
|
|
FILE *fid;
|
|
|
|
|
2007-09-21 01:55:11 +00:00
|
|
|
if ((fid = fopen(ATJOB_DIR ".SEQ", "r+")) != NULL) {
|
1995-08-21 12:34:18 +00:00
|
|
|
if (fscanf(fid, "%5lx", &jobno) == 1) {
|
|
|
|
rewind(fid);
|
|
|
|
jobno = (1+jobno) % 0xfffff; /* 2^20 jobs enough? */
|
|
|
|
fprintf(fid, "%05lx\n", jobno);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
jobno = EOF;
|
|
|
|
fclose(fid);
|
|
|
|
return jobno;
|
|
|
|
}
|
2007-09-21 01:55:11 +00:00
|
|
|
else if ((fid = fopen(ATJOB_DIR ".SEQ", "w")) != NULL) {
|
1995-08-21 12:34:18 +00:00
|
|
|
fprintf(fid, "%05lx\n", jobno = 1);
|
|
|
|
fclose(fid);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
static void
|
1995-04-12 02:42:39 +00:00
|
|
|
writefile(time_t runtimer, char queue)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
1995-04-12 02:42:39 +00:00
|
|
|
/* This does most of the work if at or batch are invoked for writing a job.
|
|
|
|
*/
|
1995-08-21 12:34:18 +00:00
|
|
|
long jobno;
|
1995-04-12 02:42:39 +00:00
|
|
|
char *ap, *ppos, *mailname;
|
|
|
|
struct passwd *pass_entry;
|
|
|
|
struct stat statbuf;
|
|
|
|
int fdes, lockdes, fd2;
|
|
|
|
FILE *fp, *fpin;
|
|
|
|
struct sigaction act;
|
|
|
|
char **atenv;
|
|
|
|
int ch;
|
|
|
|
mode_t cmask;
|
|
|
|
struct flock lock;
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-10-24 05:09:54 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
(void) setlocale(LC_TIME, "");
|
|
|
|
#endif
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
/* Install the signal handler for SIGINT; terminate after removing the
|
|
|
|
* spool file if necessary
|
|
|
|
*/
|
|
|
|
act.sa_handler = sigc;
|
|
|
|
sigemptyset(&(act.sa_mask));
|
|
|
|
act.sa_flags = 0;
|
|
|
|
|
|
|
|
sigaction(SIGINT, &act, NULL);
|
|
|
|
|
|
|
|
ppos = atfile + strlen(ATJOB_DIR);
|
|
|
|
|
|
|
|
/* Loop over all possible file names for running something at this
|
|
|
|
* particular time, see if a file is there; the first empty slot at any
|
|
|
|
* particular time is used. Lock the file LFILE first to make sure
|
|
|
|
* we're alone when doing this.
|
|
|
|
*/
|
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if ((lockdes = open(LFILE, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR)) < 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot open lockfile " LFILE);
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
lock.l_type = F_WRLCK; lock.l_whence = SEEK_SET; lock.l_start = 0;
|
|
|
|
lock.l_len = 0;
|
|
|
|
|
|
|
|
act.sa_handler = alarmc;
|
|
|
|
sigemptyset(&(act.sa_mask));
|
|
|
|
act.sa_flags = 0;
|
|
|
|
|
|
|
|
/* Set an alarm so a timeout occurs after ALARMC seconds, in case
|
|
|
|
* something is seriously broken.
|
|
|
|
*/
|
|
|
|
sigaction(SIGALRM, &act, NULL);
|
|
|
|
alarm(ALARMC);
|
|
|
|
fcntl(lockdes, F_SETLKW, &lock);
|
|
|
|
alarm(0);
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if ((jobno = nextjob()) == EOF)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot generate job number");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
sprintf(ppos, "%c%5lx%8lx", queue,
|
|
|
|
jobno, (unsigned long) (runtimer/60));
|
|
|
|
|
|
|
|
for(ap=ppos; *ap != '\0'; ap ++)
|
|
|
|
if (*ap == ' ')
|
|
|
|
*ap = '0';
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if (stat(atfile, &statbuf) != 0)
|
|
|
|
if (errno != ENOENT)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot access " ATJOB_DIR);
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
/* Create the file. The x bit is only going to be set after it has
|
|
|
|
* been completely written out, to make sure it is not executed in the
|
|
|
|
* meantime. To make sure they do not get deleted, turn off their r
|
|
|
|
* bit. Yes, this is a kluge.
|
|
|
|
*/
|
|
|
|
cmask = umask(S_IRUSR | S_IWUSR | S_IXUSR);
|
|
|
|
if ((fdes = creat(atfile, O_WRONLY)) == -1)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot create atjob file");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
if ((fd2 = dup(fdes)) <0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("error in dup() of job file");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
if(fchown(fd2, real_uid, real_gid) != 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot give away file");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
PRIV_END
|
|
|
|
|
1995-04-27 19:27:42 +00:00
|
|
|
/* We no longer need suid root; now we just need to be able to write
|
|
|
|
* to the directory, if necessary.
|
|
|
|
*/
|
|
|
|
|
|
|
|
REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
/* We've successfully created the file; let's set the flag so it
|
1995-04-12 02:42:39 +00:00
|
|
|
* gets removed in case of an interrupt or error.
|
|
|
|
*/
|
|
|
|
fcreated = 1;
|
|
|
|
|
|
|
|
/* Now we can release the lock, so other people can access it
|
|
|
|
*/
|
|
|
|
lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = 0;
|
|
|
|
lock.l_len = 0;
|
|
|
|
fcntl(lockdes, F_SETLKW, &lock);
|
|
|
|
close(lockdes);
|
|
|
|
|
|
|
|
if((fp = fdopen(fdes, "w")) == NULL)
|
1999-12-05 19:57:14 +00:00
|
|
|
panic("cannot reopen atjob file");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
2002-07-22 11:32:16 +00:00
|
|
|
/* Get the userid to mail to, first by trying getlogin(),
|
|
|
|
* then from LOGNAME, finally from getpwuid().
|
1995-04-12 02:42:39 +00:00
|
|
|
*/
|
|
|
|
mailname = getlogin();
|
|
|
|
if (mailname == NULL)
|
|
|
|
mailname = getenv("LOGNAME");
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if ((mailname == NULL) || (mailname[0] == '\0')
|
2002-07-22 11:32:16 +00:00
|
|
|
|| (strlen(mailname) >= MAXLOGNAME) || (getpwnam(mailname)==NULL))
|
1995-04-12 02:42:39 +00:00
|
|
|
{
|
1995-08-21 12:34:18 +00:00
|
|
|
pass_entry = getpwuid(real_uid);
|
1995-04-12 02:42:39 +00:00
|
|
|
if (pass_entry != NULL)
|
|
|
|
mailname = pass_entry->pw_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atinput != (char *) NULL)
|
|
|
|
{
|
|
|
|
fpin = freopen(atinput, "r", stdin);
|
|
|
|
if (fpin == NULL)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot open input file");
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
1997-02-18 05:47:07 +00:00
|
|
|
fprintf(fp, "#!/bin/sh\n# atrun uid=%ld gid=%ld\n# mail %*s %d\n",
|
2002-07-22 11:32:16 +00:00
|
|
|
(long) real_uid, (long) real_gid, MAXLOGNAME - 1, mailname,
|
|
|
|
send_mail);
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
/* Write out the umask at the time of invocation
|
|
|
|
*/
|
|
|
|
fprintf(fp, "umask %lo\n", (unsigned long) cmask);
|
|
|
|
|
|
|
|
/* Write out the environment. Anything that may look like a
|
|
|
|
* special character to the shell is quoted, except for \n, which is
|
1999-12-05 19:57:14 +00:00
|
|
|
* done with a pair of "'s. Don't export the no_export list (such
|
1995-04-12 02:42:39 +00:00
|
|
|
* as TERM or DISPLAY) because we don't want these.
|
|
|
|
*/
|
|
|
|
for (atenv= environ; *atenv != NULL; atenv++)
|
|
|
|
{
|
|
|
|
int export = 1;
|
|
|
|
char *eqp;
|
|
|
|
|
|
|
|
eqp = strchr(*atenv, '=');
|
2016-04-20 20:54:47 +00:00
|
|
|
if (eqp == NULL)
|
1995-04-12 02:42:39 +00:00
|
|
|
eqp = *atenv;
|
|
|
|
else
|
|
|
|
{
|
2001-12-02 12:26:18 +00:00
|
|
|
size_t i;
|
2016-07-30 06:32:18 +00:00
|
|
|
for (i = 0; i < nitems(no_export); i++)
|
1995-04-12 02:42:39 +00:00
|
|
|
{
|
|
|
|
export = export
|
1995-08-21 12:34:18 +00:00
|
|
|
&& (strncmp(*atenv, no_export[i],
|
1995-04-12 02:42:39 +00:00
|
|
|
(size_t) (eqp-*atenv)) != 0);
|
|
|
|
}
|
|
|
|
eqp++;
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (export)
|
|
|
|
{
|
2014-09-29 21:45:57 +00:00
|
|
|
(void)fputs("export ", fp);
|
1995-04-12 02:42:39 +00:00
|
|
|
fwrite(*atenv, sizeof(char), eqp-*atenv, fp);
|
|
|
|
for(ap = eqp;*ap != '\0'; ap++)
|
|
|
|
{
|
|
|
|
if (*ap == '\n')
|
|
|
|
fprintf(fp, "\"\n\"");
|
|
|
|
else
|
|
|
|
{
|
1995-08-21 12:34:18 +00:00
|
|
|
if (!isalnum(*ap)) {
|
|
|
|
switch (*ap) {
|
|
|
|
case '%': case '/': case '{': case '[':
|
|
|
|
case ']': case '=': case '}': case '@':
|
|
|
|
case '+': case '#': case ',': case '.':
|
|
|
|
case ':': case '-': case '_':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fputc('\\', fp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
fputc(*ap, fp);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
fputc('\n', fp);
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
1995-08-21 12:34:18 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
/* Cd to the directory at the time and write out all the
|
|
|
|
* commands the user supplies from stdin.
|
|
|
|
*/
|
|
|
|
fprintf(fp, "cd ");
|
|
|
|
for (ap = cwdname(); *ap != '\0'; ap++)
|
|
|
|
{
|
|
|
|
if (*ap == '\n')
|
|
|
|
fprintf(fp, "\"\n\"");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (*ap != '/' && !isalnum(*ap))
|
|
|
|
fputc('\\', fp);
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
fputc(*ap, fp);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
/* Test cd's exit status: die if the original directory has been
|
|
|
|
* removed, become unreadable or whatever
|
|
|
|
*/
|
|
|
|
fprintf(fp, " || {\n\t echo 'Execution directory "
|
|
|
|
"inaccessible' >&2\n\t exit 1\n}\n");
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
while((ch = getchar()) != EOF)
|
|
|
|
fputc(ch, fp);
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
fprintf(fp, "\n");
|
|
|
|
if (ferror(fp))
|
1999-12-05 19:57:14 +00:00
|
|
|
panic("output error");
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (ferror(stdin))
|
1999-12-05 19:57:14 +00:00
|
|
|
panic("input error");
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
fclose(fp);
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
/* Set the x bit so that we're ready to start executing
|
|
|
|
*/
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (fchmod(fd2, S_IRUSR | S_IWUSR | S_IXUSR) < 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot give away file");
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
close(fd2);
|
1995-08-21 12:34:18 +00:00
|
|
|
fprintf(stderr, "Job %ld will be executed using /bin/sh\n", jobno);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
2002-05-16 00:47:14 +00:00
|
|
|
static int
|
|
|
|
in_job_list(long job, long *joblist, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
if (job == joblist[i])
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
static void
|
2002-05-16 00:47:14 +00:00
|
|
|
list_jobs(long *joblist, int len)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
1995-08-21 12:34:18 +00:00
|
|
|
/* List all a user's jobs in the queue, by looping through ATJOB_DIR,
|
1995-04-12 02:42:39 +00:00
|
|
|
* or everybody's if we are root
|
|
|
|
*/
|
|
|
|
struct passwd *pw;
|
|
|
|
DIR *spool;
|
|
|
|
struct dirent *dirent;
|
|
|
|
struct stat buf;
|
|
|
|
struct tm runtime;
|
|
|
|
unsigned long ctm;
|
|
|
|
char queue;
|
1995-08-21 12:34:18 +00:00
|
|
|
long jobno;
|
1995-04-12 02:42:39 +00:00
|
|
|
time_t runtimer;
|
|
|
|
char timestr[TIMESIZE];
|
|
|
|
int first=1;
|
1998-10-15 13:30:48 +00:00
|
|
|
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
(void) setlocale(LC_TIME, "");
|
|
|
|
#endif
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if (chdir(ATJOB_DIR) != 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot change to " ATJOB_DIR);
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
if ((spool = opendir(".")) == NULL)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot open " ATJOB_DIR);
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
/* Loop over every file in the directory
|
1995-04-12 02:42:39 +00:00
|
|
|
*/
|
|
|
|
while((dirent = readdir(spool)) != NULL) {
|
|
|
|
if (stat(dirent->d_name, &buf) != 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot stat in " ATJOB_DIR);
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
/* See it's a regular file and has its x bit turned on and
|
|
|
|
* is the user's
|
|
|
|
*/
|
|
|
|
if (!S_ISREG(buf.st_mode)
|
|
|
|
|| ((buf.st_uid != real_uid) && ! (real_uid == 0))
|
|
|
|
|| !(S_IXUSR & buf.st_mode || atverify))
|
|
|
|
continue;
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3)
|
1995-04-12 02:42:39 +00:00
|
|
|
continue;
|
|
|
|
|
2002-05-16 00:47:14 +00:00
|
|
|
/* If jobs are given, only list those jobs */
|
|
|
|
if (joblist && !in_job_list(jobno, joblist, len))
|
|
|
|
continue;
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (atqueue && (queue != atqueue))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
runtimer = 60*(time_t) ctm;
|
|
|
|
runtime = *localtime(&runtimer);
|
2001-12-02 12:26:18 +00:00
|
|
|
strftime(timestr, TIMESIZE, "%+", &runtime);
|
1995-04-12 02:42:39 +00:00
|
|
|
if (first) {
|
2002-05-08 11:23:45 +00:00
|
|
|
printf("Date\t\t\t\tOwner\t\tQueue\tJob#\n");
|
1995-04-12 02:42:39 +00:00
|
|
|
first=0;
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
pw = getpwuid(buf.st_uid);
|
|
|
|
|
2002-05-08 11:23:45 +00:00
|
|
|
printf("%s\t%-16s%c%s\t%ld\n",
|
1995-08-21 12:34:18 +00:00
|
|
|
timestr,
|
|
|
|
pw ? pw->pw_name : "???",
|
|
|
|
queue,
|
|
|
|
(S_IXUSR & buf.st_mode) ? "":"(done)",
|
|
|
|
jobno);
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
PRIV_END
|
2010-11-19 10:15:29 +00:00
|
|
|
closedir(spool);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1995-08-21 12:34:18 +00:00
|
|
|
process_jobs(int argc, char **argv, int what)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
1995-04-12 02:42:39 +00:00
|
|
|
/* Delete every argument (job - ID) given
|
|
|
|
*/
|
|
|
|
int i;
|
2013-04-12 14:32:16 +00:00
|
|
|
int rc;
|
|
|
|
int nofJobs;
|
|
|
|
int nofDone;
|
|
|
|
int statErrno;
|
1995-04-12 02:42:39 +00:00
|
|
|
struct stat buf;
|
1995-08-21 12:34:18 +00:00
|
|
|
DIR *spool;
|
|
|
|
struct dirent *dirent;
|
|
|
|
unsigned long ctm;
|
|
|
|
char queue;
|
|
|
|
long jobno;
|
1995-04-12 02:42:39 +00:00
|
|
|
|
2013-04-12 14:32:16 +00:00
|
|
|
nofJobs = argc - optind;
|
|
|
|
nofDone = 0;
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if (chdir(ATJOB_DIR) != 0)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot change to " ATJOB_DIR);
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if ((spool = opendir(".")) == NULL)
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot open " ATJOB_DIR);
|
1995-08-21 12:34:18 +00:00
|
|
|
|
|
|
|
PRIV_END
|
|
|
|
|
|
|
|
/* Loop over every file in the directory
|
|
|
|
*/
|
|
|
|
while((dirent = readdir(spool)) != NULL) {
|
|
|
|
|
|
|
|
PRIV_START
|
2013-04-12 14:32:16 +00:00
|
|
|
rc = stat(dirent->d_name, &buf);
|
|
|
|
statErrno = errno;
|
1995-08-21 12:34:18 +00:00
|
|
|
PRIV_END
|
2013-04-12 14:32:16 +00:00
|
|
|
/* There's a race condition between readdir above and stat here:
|
|
|
|
* another atrm process could have removed the file from the spool
|
|
|
|
* directory under our nose. If this happens, stat will set errno to
|
|
|
|
* ENOENT, which we shouldn't treat as fatal.
|
|
|
|
*/
|
|
|
|
if (rc != 0) {
|
|
|
|
if (statErrno == ENOENT)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
perr("cannot stat in " ATJOB_DIR);
|
|
|
|
}
|
1995-08-21 12:34:18 +00:00
|
|
|
|
|
|
|
if(sscanf(dirent->d_name, "%c%5lx%8lx", &queue, &jobno, &ctm)!=3)
|
1995-04-15 22:08:10 +00:00
|
|
|
continue;
|
1995-08-21 12:34:18 +00:00
|
|
|
|
|
|
|
for (i=optind; i < argc; i++) {
|
|
|
|
if (atoi(argv[i]) == jobno) {
|
1999-12-05 19:57:14 +00:00
|
|
|
if ((buf.st_uid != real_uid) && !(real_uid == 0))
|
|
|
|
errx(EXIT_FAILURE, "%s: not owner", argv[i]);
|
1995-08-21 12:34:18 +00:00
|
|
|
switch (what) {
|
|
|
|
case ATRM:
|
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if (unlink(dirent->d_name) != 0)
|
|
|
|
perr(dirent->d_name);
|
|
|
|
|
|
|
|
PRIV_END
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CAT:
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
fp = fopen(dirent->d_name,"r");
|
|
|
|
|
|
|
|
PRIV_END
|
|
|
|
|
|
|
|
if (!fp) {
|
1999-12-05 19:57:14 +00:00
|
|
|
perr("cannot open file");
|
1995-08-21 12:34:18 +00:00
|
|
|
}
|
|
|
|
while((ch = getc(fp)) != EOF) {
|
|
|
|
putchar(ch);
|
|
|
|
}
|
2010-11-19 10:15:29 +00:00
|
|
|
fclose(fp);
|
1995-08-21 12:34:18 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1999-12-05 19:57:14 +00:00
|
|
|
errx(EXIT_FAILURE, "internal error, process_jobs = %d",
|
|
|
|
what);
|
1995-08-21 12:34:18 +00:00
|
|
|
}
|
2013-04-12 14:32:16 +00:00
|
|
|
|
|
|
|
/* All arguments have been processed
|
|
|
|
*/
|
|
|
|
if (++nofDone == nofJobs)
|
|
|
|
goto end;
|
1995-08-21 12:34:18 +00:00
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
2013-04-12 14:32:16 +00:00
|
|
|
end:
|
2010-11-19 10:15:29 +00:00
|
|
|
closedir(spool);
|
1995-04-12 02:42:39 +00:00
|
|
|
} /* delete_jobs */
|
1994-01-05 01:09:14 +00:00
|
|
|
|
2002-01-13 20:21:08 +00:00
|
|
|
#define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;
|
|
|
|
|
|
|
|
static time_t
|
|
|
|
ttime(const char *arg)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is pretty much a copy of stime_arg1() from touch.c. I changed
|
|
|
|
* the return value and the argument list because it's more convenient
|
|
|
|
* (IMO) to do everything in one place. - Joe Halpin
|
|
|
|
*/
|
|
|
|
struct timeval tv[2];
|
|
|
|
time_t now;
|
|
|
|
struct tm *t;
|
|
|
|
int yearset;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (gettimeofday(&tv[0], NULL))
|
|
|
|
panic("Cannot get current time");
|
|
|
|
|
|
|
|
/* Start with the current time. */
|
|
|
|
now = tv[0].tv_sec;
|
|
|
|
if ((t = localtime(&now)) == NULL)
|
|
|
|
panic("localtime");
|
|
|
|
/* [[CC]YY]MMDDhhmm[.SS] */
|
|
|
|
if ((p = strchr(arg, '.')) == NULL)
|
|
|
|
t->tm_sec = 0; /* Seconds defaults to 0. */
|
|
|
|
else {
|
|
|
|
if (strlen(p + 1) != 2)
|
|
|
|
goto terr;
|
|
|
|
*p++ = '\0';
|
|
|
|
t->tm_sec = ATOI2(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
yearset = 0;
|
|
|
|
switch(strlen(arg)) {
|
|
|
|
case 12: /* CCYYMMDDhhmm */
|
|
|
|
t->tm_year = ATOI2(arg);
|
|
|
|
t->tm_year *= 100;
|
|
|
|
yearset = 1;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 10: /* YYMMDDhhmm */
|
|
|
|
if (yearset) {
|
|
|
|
yearset = ATOI2(arg);
|
|
|
|
t->tm_year += yearset;
|
|
|
|
} else {
|
|
|
|
yearset = ATOI2(arg);
|
|
|
|
t->tm_year = yearset + 2000;
|
|
|
|
}
|
|
|
|
t->tm_year -= 1900; /* Convert to UNIX time. */
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 8: /* MMDDhhmm */
|
|
|
|
t->tm_mon = ATOI2(arg);
|
|
|
|
--t->tm_mon; /* Convert from 01-12 to 00-11 */
|
|
|
|
t->tm_mday = ATOI2(arg);
|
|
|
|
t->tm_hour = ATOI2(arg);
|
|
|
|
t->tm_min = ATOI2(arg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto terr;
|
|
|
|
}
|
|
|
|
|
|
|
|
t->tm_isdst = -1; /* Figure out DST. */
|
|
|
|
tv[0].tv_sec = tv[1].tv_sec = mktime(t);
|
|
|
|
if (tv[0].tv_sec != -1)
|
|
|
|
return tv[0].tv_sec;
|
|
|
|
else
|
|
|
|
terr:
|
|
|
|
panic(
|
|
|
|
"out of range or illegal time specification: [[CC]YY]MMDDhhmm[.SS]");
|
|
|
|
}
|
|
|
|
|
2002-05-16 00:47:14 +00:00
|
|
|
static long *
|
|
|
|
get_job_list(int argc, char *argv[], int *joblen)
|
|
|
|
{
|
|
|
|
int i, len;
|
|
|
|
long *joblist;
|
|
|
|
char *ep;
|
|
|
|
|
|
|
|
joblist = NULL;
|
|
|
|
len = argc;
|
|
|
|
if (len > 0) {
|
|
|
|
if ((joblist = malloc(len * sizeof(*joblist))) == NULL)
|
|
|
|
panic("out of memory");
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
errno = 0;
|
|
|
|
if ((joblist[i] = strtol(argv[i], &ep, 10)) < 0 ||
|
|
|
|
ep == argv[i] || *ep != '\0' || errno)
|
|
|
|
panic("invalid job number");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*joblen = len;
|
|
|
|
return joblist;
|
|
|
|
}
|
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
int
|
1995-04-12 02:42:39 +00:00
|
|
|
main(int argc, char **argv)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
1995-04-12 02:42:39 +00:00
|
|
|
int c;
|
|
|
|
char queue = DEFAULT_AT_QUEUE;
|
|
|
|
char queue_set = 0;
|
|
|
|
char *pgm;
|
|
|
|
|
|
|
|
int program = AT; /* our default program */
|
2002-01-22 03:04:15 +00:00
|
|
|
const char *options = "q:f:t:rmvldbc"; /* default options for at */
|
1995-04-12 02:42:39 +00:00
|
|
|
time_t timer;
|
2002-05-16 00:47:14 +00:00
|
|
|
long *joblist;
|
|
|
|
int joblen;
|
1995-04-12 02:42:39 +00:00
|
|
|
|
2002-05-16 00:47:14 +00:00
|
|
|
joblist = NULL;
|
|
|
|
joblen = 0;
|
2002-01-13 20:21:08 +00:00
|
|
|
timer = -1;
|
1995-04-12 02:42:39 +00:00
|
|
|
RELINQUISH_PRIVS
|
|
|
|
|
|
|
|
/* Eat any leading paths
|
|
|
|
*/
|
|
|
|
if ((pgm = strrchr(argv[0], '/')) == NULL)
|
|
|
|
pgm = argv[0];
|
|
|
|
else
|
|
|
|
pgm++;
|
|
|
|
|
2001-09-01 07:35:25 +00:00
|
|
|
namep = pgm;
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
/* find out what this program is supposed to do
|
|
|
|
*/
|
|
|
|
if (strcmp(pgm, "atq") == 0) {
|
|
|
|
program = ATQ;
|
2002-01-22 03:04:15 +00:00
|
|
|
options = "q:v";
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
else if (strcmp(pgm, "atrm") == 0) {
|
|
|
|
program = ATRM;
|
2002-01-22 03:04:15 +00:00
|
|
|
options = "";
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
else if (strcmp(pgm, "batch") == 0) {
|
|
|
|
program = BATCH;
|
2002-01-22 03:04:15 +00:00
|
|
|
options = "f:q:mv";
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* process whatever options we can process
|
|
|
|
*/
|
|
|
|
opterr=1;
|
1997-03-29 04:34:07 +00:00
|
|
|
while ((c=getopt(argc, argv, options)) != -1)
|
1995-04-12 02:42:39 +00:00
|
|
|
switch (c) {
|
|
|
|
case 'v': /* verify time settings */
|
|
|
|
atverify = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'm': /* send mail when job is complete */
|
|
|
|
send_mail = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
atinput = optarg;
|
|
|
|
break;
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
case 'q': /* specify queue */
|
|
|
|
if (strlen(optarg) > 1)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
atqueue = queue = *optarg;
|
|
|
|
if (!(islower(queue)||isupper(queue)))
|
|
|
|
usage();
|
|
|
|
|
|
|
|
queue_set = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd':
|
2002-01-13 20:21:08 +00:00
|
|
|
warnx("-d is deprecated; use -r instead");
|
|
|
|
/* fall through to 'r' */
|
|
|
|
|
|
|
|
case 'r':
|
1995-04-12 02:42:39 +00:00
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = ATRM;
|
2002-01-22 03:04:15 +00:00
|
|
|
options = "";
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
|
|
|
|
2002-01-13 20:21:08 +00:00
|
|
|
case 't':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
timer = ttime(optarg);
|
|
|
|
break;
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
case 'l':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = ATQ;
|
2002-05-16 00:47:14 +00:00
|
|
|
options = "q:";
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = BATCH;
|
2002-01-22 03:04:15 +00:00
|
|
|
options = "f:q:mv";
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
case 'c':
|
|
|
|
program = CAT;
|
|
|
|
options = "";
|
|
|
|
break;
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* end of options eating
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* select our program
|
|
|
|
*/
|
|
|
|
if(!check_permission())
|
1999-12-05 19:57:14 +00:00
|
|
|
errx(EXIT_FAILURE, "you do not have permission to use this program");
|
1995-04-12 02:42:39 +00:00
|
|
|
switch (program) {
|
|
|
|
case ATQ:
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
|
1994-01-05 01:09:14 +00:00
|
|
|
|
2002-05-16 00:47:14 +00:00
|
|
|
if (queue_set == 0)
|
|
|
|
joblist = get_job_list(argc - optind, argv + optind, &joblen);
|
|
|
|
list_jobs(joblist, joblen);
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
case ATRM:
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
REDUCE_PRIV(DAEMON_UID, DAEMON_GID)
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
process_jobs(argc, argv, ATRM);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CAT:
|
|
|
|
|
|
|
|
process_jobs(argc, argv, CAT);
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
case AT:
|
2002-01-13 20:21:08 +00:00
|
|
|
/*
|
|
|
|
* If timer is > -1, then the user gave the time with -t. In that
|
|
|
|
* case, it's already been set. If not, set it now.
|
|
|
|
*/
|
|
|
|
if (timer == -1)
|
|
|
|
timer = parsetime(argc, argv);
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (atverify)
|
|
|
|
{
|
|
|
|
struct tm *tm = localtime(&timer);
|
|
|
|
fprintf(stderr, "%s\n", asctime(tm));
|
|
|
|
}
|
|
|
|
writefile(timer, queue);
|
|
|
|
break;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
case BATCH:
|
|
|
|
if (queue_set)
|
|
|
|
queue = toupper(queue);
|
|
|
|
else
|
|
|
|
queue = DEFAULT_BATCH_QUEUE;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (argc > optind)
|
|
|
|
timer = parsetime(argc, argv);
|
|
|
|
else
|
|
|
|
timer = time(NULL);
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (atverify)
|
|
|
|
{
|
|
|
|
struct tm *tm = localtime(&timer);
|
|
|
|
fprintf(stderr, "%s\n", asctime(tm));
|
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
writefile(timer, queue);
|
|
|
|
break;
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
default:
|
1999-12-05 19:57:14 +00:00
|
|
|
panic("internal error");
|
1995-04-12 02:42:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
exit(EXIT_SUCCESS);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|