1*1de7b4b8SPedro F. Giffuni /*- 2*1de7b4b8SPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause 3*1de7b4b8SPedro F. Giffuni * 4b1069b52SDavid Greenman * Copyright (c) 1994 Christopher G. Demetriou 5b1069b52SDavid Greenman * All rights reserved. 6b1069b52SDavid Greenman * 7b1069b52SDavid Greenman * Redistribution and use in source and binary forms, with or without 8b1069b52SDavid Greenman * modification, are permitted provided that the following conditions 9b1069b52SDavid Greenman * are met: 10b1069b52SDavid Greenman * 1. Redistributions of source code must retain the above copyright 11b1069b52SDavid Greenman * notice, this list of conditions and the following disclaimer. 12b1069b52SDavid Greenman * 2. Redistributions in binary form must reproduce the above copyright 13b1069b52SDavid Greenman * notice, this list of conditions and the following disclaimer in the 14b1069b52SDavid Greenman * documentation and/or other materials provided with the distribution. 15b1069b52SDavid Greenman * 3. All advertising materials mentioning features or use of this software 16b1069b52SDavid Greenman * must display the following acknowledgement: 17b1069b52SDavid Greenman * This product includes software developed by Christopher G. Demetriou. 18b1069b52SDavid Greenman * 4. The name of the author may not be used to endorse or promote products 19b1069b52SDavid Greenman * derived from this software without specific prior written permission 20b1069b52SDavid Greenman * 21b1069b52SDavid Greenman * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22b1069b52SDavid Greenman * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23b1069b52SDavid Greenman * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24b1069b52SDavid Greenman * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25b1069b52SDavid Greenman * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26b1069b52SDavid Greenman * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27b1069b52SDavid Greenman * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28b1069b52SDavid Greenman * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29b1069b52SDavid Greenman * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30b1069b52SDavid Greenman * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31b1069b52SDavid Greenman */ 32b1069b52SDavid Greenman 33b1069b52SDavid Greenman #include <sys/types.h> 34b1069b52SDavid Greenman #include <sys/param.h> 35b1069b52SDavid Greenman #include <db.h> 36b1069b52SDavid Greenman 37b1069b52SDavid Greenman /* structures */ 38b1069b52SDavid Greenman 39fdbe5babSDiomidis Spinellis /* All times are stored in 1e-6s units. */ 40fdbe5babSDiomidis Spinellis 41b1069b52SDavid Greenman struct cmdinfo { 42b1069b52SDavid Greenman char ci_comm[MAXCOMLEN+2]; /* command name (+ '*') */ 43fdbe5babSDiomidis Spinellis uid_t ci_uid; /* user id */ 44b1069b52SDavid Greenman u_quad_t ci_calls; /* number of calls */ 45fdbe5babSDiomidis Spinellis double ci_etime; /* elapsed time */ 46fdbe5babSDiomidis Spinellis double ci_utime; /* user time */ 47fdbe5babSDiomidis Spinellis double ci_stime; /* system time */ 48fdbe5babSDiomidis Spinellis double ci_mem; /* memory use */ 49fdbe5babSDiomidis Spinellis double ci_io; /* number of disk i/o ops */ 50b1069b52SDavid Greenman u_int ci_flags; /* flags; see below */ 51b1069b52SDavid Greenman }; 52b1069b52SDavid Greenman #define CI_UNPRINTABLE 0x0001 /* unprintable chars in name */ 53b1069b52SDavid Greenman 54b1069b52SDavid Greenman struct userinfo { 55fdbe5babSDiomidis Spinellis uid_t ui_uid; /* user id; for consistency */ 56b1069b52SDavid Greenman u_quad_t ui_calls; /* number of invocations */ 57fdbe5babSDiomidis Spinellis double ui_utime; /* user time */ 58fdbe5babSDiomidis Spinellis double ui_stime; /* system time */ 59fdbe5babSDiomidis Spinellis double ui_mem; /* memory use */ 60fdbe5babSDiomidis Spinellis double ui_io; /* number of disk i/o ops */ 61b1069b52SDavid Greenman }; 62b1069b52SDavid Greenman 63b1069b52SDavid Greenman /* typedefs */ 64b1069b52SDavid Greenman 657fa658d9SAlfred Perlstein typedef int (*cmpf_t)(const DBT *, const DBT *); 66b1069b52SDavid Greenman 67fdbe5babSDiomidis Spinellis /* external functions in db.c */ 68fdbe5babSDiomidis Spinellis int db_copy_in(DB **mdb, const char *dbname, const char *name, 69fdbe5babSDiomidis Spinellis BTREEINFO *bti, int (*v1_to_v2)(DBT *key, DBT *data)); 70fdbe5babSDiomidis Spinellis int db_copy_out(DB *mdb, const char *dbname, const char *name, 71fdbe5babSDiomidis Spinellis BTREEINFO *bti); 72fdbe5babSDiomidis Spinellis void db_destroy(DB *db, const char *uname); 73fdbe5babSDiomidis Spinellis 74b1069b52SDavid Greenman /* external functions in pdb.c */ 757fa658d9SAlfred Perlstein int pacct_init(void); 767fa658d9SAlfred Perlstein void pacct_destroy(void); 777fa658d9SAlfred Perlstein int pacct_add(const struct cmdinfo *); 787fa658d9SAlfred Perlstein int pacct_update(void); 797fa658d9SAlfred Perlstein void pacct_print(void); 80b1069b52SDavid Greenman 81fdbe5babSDiomidis Spinellis /* external functions in readrec.c */ 8269921123SKonstantin Belousov int readrec_forward(FILE *f, struct acctv3 *av2); 83fdbe5babSDiomidis Spinellis 84b1069b52SDavid Greenman /* external functions in usrdb.c */ 857fa658d9SAlfred Perlstein int usracct_init(void); 867fa658d9SAlfred Perlstein void usracct_destroy(void); 877fa658d9SAlfred Perlstein int usracct_add(const struct cmdinfo *); 887fa658d9SAlfred Perlstein int usracct_update(void); 897fa658d9SAlfred Perlstein void usracct_print(void); 90b1069b52SDavid Greenman 91b1069b52SDavid Greenman /* variables */ 92b1069b52SDavid Greenman 93b1069b52SDavid Greenman extern int aflag, bflag, cflag, dflag, Dflag, fflag, iflag, jflag, kflag; 94b1069b52SDavid Greenman extern int Kflag, lflag, mflag, qflag, rflag, sflag, tflag, uflag, vflag; 957fa658d9SAlfred Perlstein extern u_quad_t cutoff; 96b1069b52SDavid Greenman extern cmpf_t sa_cmp; 975f6f6b29SDiomidis Spinellis extern const char *pdb_file, *usrdb_file; 98b1069b52SDavid Greenman 99b1069b52SDavid Greenman /* some #defines to help with db's stupidity */ 100b1069b52SDavid Greenman 101b1069b52SDavid Greenman #define DB_CLOSE(db) \ 102b1069b52SDavid Greenman ((*(db)->close)(db)) 103b1069b52SDavid Greenman #define DB_GET(db, key, data, flags) \ 104b1069b52SDavid Greenman ((*(db)->get)((db), (key), (data), (flags))) 105b1069b52SDavid Greenman #define DB_PUT(db, key, data, flags) \ 106b1069b52SDavid Greenman ((*(db)->put)((db), (key), (data), (flags))) 107b1069b52SDavid Greenman #define DB_SYNC(db, flags) \ 108b1069b52SDavid Greenman ((*(db)->sync)((db), (flags))) 109b1069b52SDavid Greenman #define DB_SEQ(db, key, data, flags) \ 110b1069b52SDavid Greenman ((*(db)->seq)((db), (key), (data), (flags))) 111