mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

Note - this compiles, but you cannot run Bro anymore - it crashes immediately with a 0-pointer access. The reason behind it is that the required clone functionality does not work anymore.
159 lines
4.1 KiB
C++
159 lines
4.1 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#ifndef file_h
|
|
#define file_h
|
|
|
|
#include <fcntl.h>
|
|
#include "util.h"
|
|
#include "Obj.h"
|
|
#include "Attr.h"
|
|
|
|
# ifdef NEED_KRB5_H
|
|
# include <krb5.h>
|
|
# endif // NEED_KRB5_H
|
|
|
|
// From OpenSSL. We forward-declare these here to avoid introducing a
|
|
// dependency on OpenSSL headers just for this header file.
|
|
typedef struct evp_pkey_st EVP_PKEY;
|
|
typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
|
|
|
|
class BroType;
|
|
class RotateTimer;
|
|
|
|
class BroFile : public BroObj {
|
|
public:
|
|
explicit BroFile(FILE* arg_f);
|
|
BroFile(FILE* arg_f, const char* filename, const char* access);
|
|
BroFile(const char* filename, const char* access, BroType* arg_t = 0);
|
|
~BroFile() override;
|
|
|
|
const char* Name() const;
|
|
|
|
// Returns false if an error occured.
|
|
int Write(const char* data, int len = 0);
|
|
|
|
void Flush() { fflush(f); }
|
|
|
|
FILE* Seek(long position); // seek to absolute position
|
|
|
|
void SetBuf(bool buffered); // false=line buffered, true=fully buffered
|
|
|
|
BroType* FType() const { return t; }
|
|
|
|
// Whether the file is open in a general sense; it might
|
|
// not be open as a Unix file due to our management of
|
|
// a finite number of FDs.
|
|
int IsOpen() const { return is_open; }
|
|
|
|
// Returns true if the close made sense, false if it was already
|
|
// closed, not active, or whatever.
|
|
int Close();
|
|
|
|
void Describe(ODesc* d) const override;
|
|
|
|
void SetRotateInterval(double secs);
|
|
|
|
// Rotates the logfile. Returns rotate_info.
|
|
RecordVal* Rotate();
|
|
|
|
// Set &rotate_interval, &rotate_size,
|
|
// and &raw_output attributes.
|
|
void SetAttrs(Attributes* attrs);
|
|
|
|
// Returns the current size of the file, after fresh stat'ing.
|
|
double Size() { fflush(f); UpdateFileSize(); return current_size; }
|
|
|
|
// Set rotate/postprocessor for all files that don't define them
|
|
// by their own. (interval/max_size=0 for no rotation; size in bytes).
|
|
static void SetDefaultRotation(double interval, double max_size);
|
|
|
|
// Close all files which are managed by us.
|
|
static void CloseCachedFiles();
|
|
|
|
// Get the file with the given name, opening it if it doesn't yet exist.
|
|
static BroFile* GetFile(const char* name);
|
|
|
|
void DisablePrintHook() { print_hook = false; }
|
|
bool IsPrintHookEnabled() const { return print_hook; }
|
|
|
|
void EnableRawOutput() { raw_output = true; }
|
|
bool IsRawOutput() const { return raw_output; }
|
|
|
|
protected:
|
|
friend class RotateTimer;
|
|
|
|
BroFile() { Init(); }
|
|
void Init();
|
|
|
|
/**
|
|
* If file is given, it's an open file to use already.
|
|
* If file is not given and mode is, the filename will be opened with that
|
|
* access mode.
|
|
*/
|
|
bool Open(FILE* f = 0, const char* mode = 0);
|
|
|
|
BroFile* Prev() { return prev; }
|
|
BroFile* Next() { return next; }
|
|
void SetPrev(BroFile* f) { prev = f; }
|
|
void SetNext(BroFile* f) { next = f; }
|
|
|
|
void Suspend();
|
|
void PurgeCache();
|
|
void Unlink();
|
|
void InsertAtBeginning();
|
|
void MoveToBeginning();
|
|
void InstallRotateTimer();
|
|
|
|
// Returns nil if the file is not active, was in error, etc.
|
|
// (Protected because we do not want anyone to write directly
|
|
// to the file.)
|
|
FILE* File();
|
|
FILE* BringIntoCache();
|
|
|
|
// Stats the file to get its current size.
|
|
void UpdateFileSize();
|
|
|
|
// Raises a file_opened event.
|
|
void RaiseOpenEvent();
|
|
|
|
// Initialize encryption with the given public key.
|
|
void InitEncrypt(const char* keyfile);
|
|
// Finalize encryption.
|
|
void FinishEncrypt();
|
|
|
|
FILE* f;
|
|
BroType* t;
|
|
char* name;
|
|
char* access;
|
|
int is_in_cache; // whether it's currently in the open-file cache
|
|
int is_open; // whether the file is open in a general sense
|
|
int okay_to_manage; // we're allowed to cache/uncache
|
|
long position; // only valid if ! is_in_cache
|
|
BroFile* next; // doubly-linked list of cached files
|
|
BroFile* prev;
|
|
Attributes* attrs;
|
|
double rotate_interval;
|
|
bool buffered;
|
|
|
|
// Sizes are double's so that it's easy to specify large
|
|
// ones with scientific notation, and so they can exceed 4GB.
|
|
double rotate_size;
|
|
double current_size;
|
|
|
|
Timer* rotate_timer;
|
|
double open_time;
|
|
bool print_hook;
|
|
bool raw_output;
|
|
|
|
static double default_rotation_interval;
|
|
static double default_rotation_size;
|
|
|
|
EVP_PKEY* pub_key;
|
|
EVP_CIPHER_CTX* cipher_ctx;
|
|
|
|
static const int MIN_BUFFER_SIZE = 1024;
|
|
unsigned char* cipher_buffer;
|
|
|
|
};
|
|
|
|
#endif
|