136 lines
4.0 KiB
C
136 lines
4.0 KiB
C
/*
|
|
* SPDX-License-Identifier: ISC
|
|
*
|
|
* Copyright (c) 2009-2019 Todd C. Miller <Todd.Miller@sudo.ws>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#ifndef SUDO_IOLOG_H
|
|
#define SUDO_IOLOG_H
|
|
|
|
#ifdef HAVE_ZLIB_H
|
|
# include <zlib.h> /* for gzFile */
|
|
#endif
|
|
|
|
/* Default maximum session ID */
|
|
#define SESSID_MAX 2176782336U
|
|
|
|
/*
|
|
* I/O log event types as stored as the first field in the timing file.
|
|
* Changing existing values will result in incompatible I/O log files.
|
|
*/
|
|
#define IO_EVENT_STDIN 0
|
|
#define IO_EVENT_STDOUT 1
|
|
#define IO_EVENT_STDERR 2
|
|
#define IO_EVENT_TTYIN 3
|
|
#define IO_EVENT_TTYOUT 4
|
|
#define IO_EVENT_WINSIZE 5
|
|
#define IO_EVENT_TTYOUT_1_8_7 6
|
|
#define IO_EVENT_SUSPEND 7
|
|
#define IO_EVENT_COUNT 8
|
|
|
|
/*
|
|
* Indexes into iolog_files[] array.
|
|
* These must match the IO_EVENT_ defines above.
|
|
* TODO: eliminate use of IOFD_* and IO_EVENT_* as indexes in favor of
|
|
* a struct containing iolog_file *s for each (and names too?).
|
|
*/
|
|
#define IOFD_STDIN 0
|
|
#define IOFD_STDOUT 1
|
|
#define IOFD_STDERR 2
|
|
#define IOFD_TTYIN 3
|
|
#define IOFD_TTYOUT 4
|
|
#define IOFD_TIMING 5
|
|
#define IOFD_MAX 6
|
|
|
|
/*
|
|
* Info present in the I/O log file
|
|
*/
|
|
struct iolog_info {
|
|
char *cwd;
|
|
char *user;
|
|
char *runas_user;
|
|
char *runas_group;
|
|
char *tty;
|
|
char *cmd;
|
|
time_t tstamp;
|
|
int lines;
|
|
int cols;
|
|
};
|
|
|
|
struct timing_closure {
|
|
struct timespec delay;
|
|
const char *decimal;
|
|
struct iolog_file *iol;
|
|
int event;
|
|
union {
|
|
struct {
|
|
int lines;
|
|
int cols;
|
|
} winsize;
|
|
size_t nbytes;
|
|
int signo;
|
|
} u;
|
|
};
|
|
|
|
struct iolog_file {
|
|
bool enabled;
|
|
bool compressed;
|
|
union {
|
|
FILE *f;
|
|
#ifdef HAVE_ZLIB_H
|
|
gzFile g;
|
|
#endif
|
|
void *v;
|
|
} fd;
|
|
};
|
|
|
|
struct iolog_path_escape {
|
|
const char *name;
|
|
size_t (*copy_fn)(char *, size_t, char *);
|
|
};
|
|
|
|
/* iolog_path.c */
|
|
char *expand_iolog_path(const char *prefix, const char *dir, const char *file, char **slashp, const struct iolog_path_escape *escapes);
|
|
|
|
/* iolog_util.c */
|
|
bool parse_timing(const char *line, struct timing_closure *timing);
|
|
char *parse_delay(const char *cp, struct timespec *delay, const char *decimal_point);
|
|
struct iolog_info *parse_logfile(const char *logfile);
|
|
void free_iolog_info(struct iolog_info *li);
|
|
void adjust_delay(struct timespec *delay, struct timespec *max_delay, double scale_factor);
|
|
|
|
/* iolog_fileio.c */
|
|
struct passwd;
|
|
struct group;
|
|
bool iolog_close(struct iolog_file *iol, const char **errstr);
|
|
bool iolog_eof(struct iolog_file *iol);
|
|
bool iolog_nextid(char *iolog_dir, char sessid[7]);
|
|
bool iolog_open(struct iolog_file *iol, char *pathbuf, const char *mode);
|
|
bool iolog_set_compress(const char *str);
|
|
bool iolog_set_flush(const char *str);
|
|
bool iolog_set_group(const struct group *gr);
|
|
bool iolog_set_maxseq(const char *maxval);
|
|
bool iolog_set_mode(mode_t mode);
|
|
bool iolog_set_user(const struct passwd *pw);
|
|
bool iolog_write_info_file(const char *parent, struct iolog_info *log_info, char * const argv[]);
|
|
char *iolog_gets(struct iolog_file *iol, char *buf, size_t nbytes, const char **errsttr);
|
|
const char *iolog_fd_to_name(int iofd);
|
|
off_t iolog_seek(struct iolog_file *iol, off_t offset, int whence);
|
|
size_t mkdir_iopath(const char *iolog_path, char *pathbuf, size_t pathsize);
|
|
ssize_t iolog_read(struct iolog_file *iol, void *buf, size_t nbytes, const char **errstr);
|
|
ssize_t iolog_write(struct iolog_file *iol, const void *buf, size_t len, const char **errstr);
|
|
|
|
#endif /* SUDO_IOLOG_H */
|