1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
/****************************************************************************
*
* Copyright (C) 2003-2012 Sourcefire, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You may not use, modify or
* distribute this program under any other version of the GNU General
* Public License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
****************************************************************************/
/**
* @file sf_textlog.c
* @author Russ Combs <rcombs@sourcefire.com>
* @date
*
* @brief implements buffered text stream for logging
*/
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "sf_types.h"
#include "sf_textlog.h"
#include "log.h"
#include "util.h"
/* some reasonable minimums */
#define MIN_BUF (1*K_BYTES)
#define MIN_FILE (MIN_BUF)
/*-------------------------------------------------------------------
* TextLog_Open/Close: open/close associated log file
*-------------------------------------------------------------------
*/
static FILE* TextLog_Open (const char* name)
{
if ( !name ) return OpenAlertFile(NULL);
if ( !strcasecmp(name, "stdout") ) return stdout;
return OpenAlertFile(name);
}
static void TextLog_Close (FILE* file)
{
if ( !file ) return;
if ( file != stdout ) fclose(file);
}
static size_t TextLog_Size (FILE* file)
{
struct stat sbuf;
int fd = fileno(file);
int err = fstat(fd, &sbuf);
return err ? 0 : sbuf.st_size;
}
/*-------------------------------------------------------------------
* TextLog_Init: constructor
*-------------------------------------------------------------------
*/
TextLog* TextLog_Init (
const char* name, unsigned int maxBuf, size_t maxFile
) {
TextLog* this;
if ( maxBuf < MIN_BUF ) maxBuf = MIN_BUF;
if ( maxFile < MIN_FILE ) maxFile = MIN_FILE;
if ( maxFile < maxBuf ) maxFile = maxBuf;
this = (TextLog*)malloc(sizeof(TextLog)+maxBuf);
if ( !this )
{
FatalError("Unable to allocate a TextLog(%u)!\n", maxBuf);
}
this->name = name ? SnortStrdup(name) : NULL;
this->file = TextLog_Open(this->name);
this->size = TextLog_Size(this->file);
this->last = time(NULL);
this->maxFile = maxFile;
this->maxBuf = maxBuf;
TextLog_Reset(this);
return this;
}
/*-------------------------------------------------------------------
* TextLog_Term: destructor
*-------------------------------------------------------------------
*/
void TextLog_Term (TextLog* this)
{
if ( !this ) return;
TextLog_Flush(this);
TextLog_Close(this->file);
if ( this->name ) free(this->name);
free(this);
}
/*-------------------------------------------------------------------
* TextLog_Flush: start writing to new file
* but don't roll over stdout or any sooner
* than resolution of filename discriminator
*-------------------------------------------------------------------
*/
static void TextLog_Roll (TextLog* this)
{
if ( this->file == stdout ) return;
if ( this->last >= time(NULL) ) return;
TextLog_Close(this->file);
RollAlertFile(this->name);
this->file = TextLog_Open(this->name);
this->last = time(NULL);
this->size = 0;
}
/*-------------------------------------------------------------------
* TextLog_Flush: write buffered stream to file
*-------------------------------------------------------------------
*/
bool TextLog_Flush(TextLog* this)
{
int ok;
if ( !this->pos ) return FALSE;
if ( this->size + this->pos > this->maxFile ) TextLog_Roll(this);
ok = fwrite(this->buf, this->pos, 1, this->file);
if ( ok == 1 )
{
this->size += this->pos;
TextLog_Reset(this);
return TRUE;
}
return FALSE;
}
/*-------------------------------------------------------------------
* TextLog_Putc: append char to buffer
*-------------------------------------------------------------------
*/
bool TextLog_Putc (TextLog* this, char c)
{
if ( TextLog_Avail(this) < 1 )
{
TextLog_Flush(this);
}
this->buf[this->pos++] = c;
this->buf[this->pos] = '\0';
return TRUE;
}
/*-------------------------------------------------------------------
* TextLog_Write: append string to buffer
*-------------------------------------------------------------------
*/
bool TextLog_Write (TextLog* this, const char* str, int len)
{
int avail = TextLog_Avail(this);
if ( len >= avail )
{
TextLog_Flush(this);
avail = TextLog_Avail(this);
}
len = snprintf(this->buf+this->pos, avail, "%s", str);
if ( len >= avail )
{
this->pos = this->maxBuf - 1;
this->buf[this->pos] = '\0';
return FALSE;
}
else if ( len < 0 )
{
return FALSE;
}
this->pos += len;
return TRUE;
}
/*-------------------------------------------------------------------
* TextLog_Printf: append formatted string to buffer
*-------------------------------------------------------------------
*/
bool TextLog_Print (TextLog* this, const char* fmt, ...)
{
int avail = TextLog_Avail(this);
int len;
va_list ap;
va_start(ap, fmt);
len = vsnprintf(this->buf+this->pos, avail, fmt, ap);
va_end(ap);
if ( len >= avail )
{
TextLog_Flush(this);
avail = TextLog_Avail(this);
va_start(ap, fmt);
len = vsnprintf(this->buf+this->pos, avail, fmt, ap);
va_end(ap);
}
if ( len >= avail )
{
this->pos = this->maxBuf - 1;
this->buf[this->pos] = '\0';
return FALSE;
}
else if ( len < 0 )
{
return FALSE;
}
this->pos += len;
return TRUE;
}
/*-------------------------------------------------------------------
* TextLog_Quote: write string escaping quotes
* TBD could be smarter by counting required escapes instead of
* checking for 3
*-------------------------------------------------------------------
*/
bool TextLog_Quote (TextLog* this, const char* qs)
{
int pos = this->pos;
if ( TextLog_Avail(this) < 3 )
{
TextLog_Flush(this);
}
this->buf[pos++] = '"';
while ( *qs && (this->maxBuf - pos > 2) )
{
if ( *qs == '"' || *qs == '\\' )
{
this->buf[pos++] = '\\';
}
this->buf[pos++] = *qs++;
}
if ( *qs ) return FALSE;
this->buf[pos++] = '"';
this->pos = pos;
return TRUE;
}
|