1995-08-21 12:34:18 +00:00
|
|
|
/*
|
1995-04-12 02:42:39 +00:00
|
|
|
* at.c : Put file into atrun queue
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _USE_BSD 1
|
|
|
|
|
|
|
|
/* System Headers */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
1995-04-12 02:42:39 +00:00
|
|
|
#ifndef __FreeBSD__
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
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"
|
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
#define MAIN
|
|
|
|
#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
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
static char rcsid[] = "$Id: at.c,v 1.3 1995/08/08 15:24:51 ig25 Exp $";
|
1994-01-05 01:09:14 +00:00
|
|
|
char *no_export[] =
|
|
|
|
{
|
1995-04-12 02:42:39 +00:00
|
|
|
"TERM", "TERMCAP", "DISPLAY", "_"
|
|
|
|
} ;
|
1994-01-05 01:09:14 +00:00
|
|
|
static send_mail = 0;
|
|
|
|
|
|
|
|
/* External variables */
|
1995-04-12 02:42:39 +00:00
|
|
|
|
1994-01-05 01:09:14 +00:00
|
|
|
extern char **environ;
|
|
|
|
int fcreated;
|
|
|
|
char *namep;
|
1995-04-12 02:42:39 +00:00
|
|
|
char atfile[] = ATJOB_DIR "12345678901234";
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
char *atinput = (char*)0; /* where to get input from */
|
1994-01-05 01:09:14 +00:00
|
|
|
char atqueue = 0; /* which queue to examine for jobs (atq) */
|
|
|
|
char atverify = 0; /* verify time instead of queuing job */
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
static void list_jobs(void);
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
/* Signal catching functions */
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
static void sigc(int signo)
|
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
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
exit(EXIT_FAILURE);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
static void alarmc(int signo)
|
1994-01-05 01:09:14 +00:00
|
|
|
{
|
|
|
|
/* Time out after some seconds
|
|
|
|
*/
|
1995-04-12 02:42:39 +00:00
|
|
|
panic("File locking timed out");
|
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)
|
|
|
|
ptr = (char *) mymalloc(size);
|
1994-01-05 01:09:14 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (ptr == NULL)
|
|
|
|
panic("Out of memory");
|
|
|
|
|
|
|
|
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)
|
|
|
|
perr("Cannot get directory");
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
free (ptr);
|
|
|
|
size += SIZE;
|
|
|
|
ptr = (char *) mymalloc(size);
|
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
static long
|
|
|
|
nextjob()
|
|
|
|
{
|
|
|
|
long jobno;
|
|
|
|
FILE *fid;
|
|
|
|
|
|
|
|
if ((fid = fopen(ATJOB_DIR ".SEQ", "r+")) != (FILE*)0) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if ((fid = fopen(ATJOB_DIR ".SEQ", "w")) != (FILE*)0) {
|
|
|
|
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-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)
|
|
|
|
perr("Cannot open lockfile " LFILE);
|
|
|
|
|
|
|
|
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)
|
|
|
|
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)
|
|
|
|
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)
|
1995-08-21 12:34:18 +00:00
|
|
|
perr("Cannot create atjob file");
|
1995-04-12 02:42:39 +00:00
|
|
|
|
|
|
|
if ((fd2 = dup(fdes)) <0)
|
|
|
|
perr("Error in dup() of job file");
|
|
|
|
|
|
|
|
if(fchown(fd2, real_uid, real_gid) != 0)
|
|
|
|
perr("Cannot give away file");
|
|
|
|
|
|
|
|
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)
|
|
|
|
panic("Cannot reopen atjob file");
|
|
|
|
|
|
|
|
/* Get the userid to mail to, first by trying getlogin(), which reads
|
|
|
|
* /etc/utmp, then from LOGNAME, finally from getpwuid().
|
|
|
|
*/
|
|
|
|
mailname = getlogin();
|
|
|
|
if (mailname == NULL)
|
|
|
|
mailname = getenv("LOGNAME");
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
if ((mailname == NULL) || (mailname[0] == '\0')
|
1995-04-12 02:42:39 +00:00
|
|
|
|| (strlen(mailname) > 8) || (getpwnam(mailname)==NULL))
|
|
|
|
{
|
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)
|
|
|
|
perr("Cannot open input file");
|
|
|
|
}
|
1995-08-21 12:34:18 +00:00
|
|
|
fprintf(fp, "#!/bin/sh\n# atrun uid=%ld gid=%ld\n# mail %8s %d\n",
|
|
|
|
(long) real_uid, (long) real_gid, 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
|
|
|
|
* done with a pair of "'s. Dont't export the no_export list (such
|
|
|
|
* as TERM or DISPLAY) because we don't want these.
|
|
|
|
*/
|
|
|
|
for (atenv= environ; *atenv != NULL; atenv++)
|
|
|
|
{
|
|
|
|
int export = 1;
|
|
|
|
char *eqp;
|
|
|
|
|
|
|
|
eqp = strchr(*atenv, '=');
|
|
|
|
if (ap == NULL)
|
|
|
|
eqp = *atenv;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0; i<sizeof(no_export)/sizeof(no_export[0]); i++)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
fputs("; export ", fp);
|
|
|
|
fwrite(*atenv, sizeof(char), eqp-*atenv -1, fp);
|
|
|
|
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))
|
|
|
|
panic("Output error");
|
1995-08-21 12:34:18 +00:00
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
if (ferror(stdin))
|
|
|
|
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)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
list_jobs()
|
|
|
|
{
|
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;
|
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if (chdir(ATJOB_DIR) != 0)
|
|
|
|
perr("Cannot change to " ATJOB_DIR);
|
|
|
|
|
|
|
|
if ((spool = opendir(".")) == NULL)
|
|
|
|
perr("Cannot open " ATJOB_DIR);
|
|
|
|
|
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)
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (atqueue && (queue != atqueue))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
runtimer = 60*(time_t) ctm;
|
|
|
|
runtime = *localtime(&runtimer);
|
|
|
|
strftime(timestr, TIMESIZE, "%X %x", &runtime);
|
|
|
|
if (first) {
|
|
|
|
printf("Date\t\t\tOwner\tQueue\tJob#\n");
|
|
|
|
first=0;
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
pw = getpwuid(buf.st_uid);
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
printf("%s\t%s\t%c%s\t%ld\n",
|
|
|
|
timestr,
|
|
|
|
pw ? pw->pw_name : "???",
|
|
|
|
queue,
|
|
|
|
(S_IXUSR & buf.st_mode) ? "":"(done)",
|
|
|
|
jobno);
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
PRIV_END
|
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;
|
|
|
|
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
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
|
|
|
|
if (chdir(ATJOB_DIR) != 0)
|
|
|
|
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)
|
|
|
|
perr("Cannot open " ATJOB_DIR);
|
|
|
|
|
|
|
|
PRIV_END
|
|
|
|
|
|
|
|
/* Loop over every file in the directory
|
|
|
|
*/
|
|
|
|
while((dirent = readdir(spool)) != NULL) {
|
|
|
|
|
|
|
|
PRIV_START
|
|
|
|
if (stat(dirent->d_name, &buf) != 0)
|
|
|
|
perr("Cannot stat in " ATJOB_DIR);
|
|
|
|
PRIV_END
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if ((buf.st_uid != real_uid) && !(real_uid == 0)) {
|
|
|
|
fprintf(stderr, "%s: Not owner\n", argv[i]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
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) {
|
|
|
|
perr("Cannot open file");
|
|
|
|
}
|
|
|
|
while((ch = getc(fp)) != EOF) {
|
|
|
|
putchar(ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr,
|
|
|
|
"Internal error, process_jobs = %d\n",what);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|
1995-04-12 02:42:39 +00:00
|
|
|
}
|
|
|
|
} /* delete_jobs */
|
1994-01-05 01:09:14 +00:00
|
|
|
|
|
|
|
/* Global functions */
|
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
void *
|
|
|
|
mymalloc(size_t n)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
if ((p=malloc(n))==(void *)0)
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Virtual memory exhausted\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
1995-08-21 12:34:18 +00:00
|
|
|
enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
|
1995-04-12 02:42:39 +00:00
|
|
|
int program = AT; /* our default program */
|
1995-08-21 12:34:18 +00:00
|
|
|
char *options = "q:f:mvldbVc"; /* default options for at */
|
1995-04-12 02:42:39 +00:00
|
|
|
int disp_version = 0;
|
|
|
|
time_t timer;
|
|
|
|
|
|
|
|
RELINQUISH_PRIVS
|
|
|
|
|
|
|
|
/* Eat any leading paths
|
|
|
|
*/
|
|
|
|
if ((pgm = strrchr(argv[0], '/')) == NULL)
|
|
|
|
pgm = argv[0];
|
|
|
|
else
|
|
|
|
pgm++;
|
|
|
|
|
|
|
|
namep = pgm;
|
|
|
|
|
|
|
|
/* find out what this program is supposed to do
|
|
|
|
*/
|
|
|
|
if (strcmp(pgm, "atq") == 0) {
|
|
|
|
program = ATQ;
|
|
|
|
options = "q:vV";
|
|
|
|
}
|
|
|
|
else if (strcmp(pgm, "atrm") == 0) {
|
|
|
|
program = ATRM;
|
|
|
|
options = "V";
|
|
|
|
}
|
|
|
|
else if (strcmp(pgm, "batch") == 0) {
|
|
|
|
program = BATCH;
|
|
|
|
options = "f:q:mvV";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process whatever options we can process
|
|
|
|
*/
|
|
|
|
opterr=1;
|
|
|
|
while ((c=getopt(argc, argv, options)) != EOF)
|
|
|
|
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':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = ATRM;
|
|
|
|
options = "V";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'l':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = ATQ;
|
|
|
|
options = "q:vV";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
if (program != AT)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
program = BATCH;
|
|
|
|
options = "f:q:mvV";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'V':
|
|
|
|
disp_version = 1;
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (disp_version)
|
|
|
|
fprintf(stderr, "at version " VERSION "\n"
|
|
|
|
"Bug reports to: ig25@rz.uni-karlsruhe.de (Thomas Koenig)\n");
|
|
|
|
|
|
|
|
/* select our program
|
|
|
|
*/
|
|
|
|
if(!check_permission())
|
|
|
|
{
|
|
|
|
fprintf(stderr, "You do not have permission to use %s.\n",namep);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
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
|
|
|
|
1995-04-12 02:42:39 +00:00
|
|
|
list_jobs();
|
|
|
|
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:
|
|
|
|
timer = parsetime(argc, argv);
|
|
|
|
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:
|
|
|
|
panic("Internal error");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
exit(EXIT_SUCCESS);
|
1994-01-05 01:09:14 +00:00
|
|
|
}
|