NetBSD/usr.sbin/accountant/accountant.c

137 lines
3.4 KiB
C

/*
* Copyright (c) 1993 Christopher G. Demetriou
* All rights reserved.
*
* 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. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software withough specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* 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, WHETHER 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.
*/
#ifndef LINT
static char *rcsid = "$Id: accountant.c,v 1.1 1993/05/03 01:02:52 cgd Exp $";
#endif
#include <sys/types.h>
#include <sys/file.h>
#include <sys/acct.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include "pathnames.h"
char *acctfile = _PATH_ACCTLOG;
char *acctdev = _PATH_ACCTDEV;
int devfd = -1;
int filefd = -1;
void usage(char *progname)
{
printf("usage: %s [-d] [-f accounting log] [-F accounting device]\n",
progname);
}
void reinitfiles(int num)
{
if (devfd != -1) close(devfd);
if ((devfd = open(acctdev, O_RDONLY, 0)) < 0) {
perror(acctdev);
exit(1);
}
if (filefd != -1) close(filefd);
if ((filefd = open(acctfile, O_WRONLY|O_APPEND|O_CREAT, 0666)) < 0) {
perror(acctfile);
exit(1);
}
}
main(argc, argv)
int argc;
char **argv;
{
int ch;
int debug = 0;
extern char *optarg;
extern int optind;
FILE *pidf;
while ((ch = getopt(argc, argv, "df:F:")) != EOF) {
switch ((char) ch) {
case 'd': /* debug it */
debug = 1;
break;
case 'f': /* set log file */
acctfile = optarg;
break;
case 'F': /* set device */
acctdev = optarg;
break;
case '?':
default:
usage(argv[0]);
}
}
if (argc -= optind)
usage(argv[0]);
if (!debug)
daemon(0, 0);
if (debug) printf("%s: in debugging mode\n", argv[0]);
signal(SIGHUP, reinitfiles);
reinitfiles(0);
pidf = fopen(_PATH_ACCOUTANT_PID, "w");
if (pidf != NULL) {
fprintf(pidf, "%d\n", getpid());
fclose(pidf);
}
for (;;) {
struct acct abuf;
int rv;
rv = read(devfd, &abuf, sizeof(struct acct));
if (rv == sizeof(struct acct)) {
if (debug)
printf("accounting record copied for: %s\n",
abuf.ac_comm);
rv = write(filefd, &abuf, sizeof(struct acct));
if (rv != sizeof(struct acct)) {
if (rv < 0) {
if (debug) perror("write");
} else {
if (debug) printf("weird write result: %d\n", rv);
}
}
} else {
if (rv < 0) {
if (debug) perror("read");
} else {
if (debug) printf("weird read result: %d\n", rv);
}
}
}
return 0;
}