|
|
|
/*
|
|
|
|
* Copyright (C) 2013-2024 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
|
|
|
* Copyright (C) 2007-2013 Sourcefire, Inc.
|
|
|
|
*
|
|
|
|
* Authors: Tomasz Kojm
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
#include "clamav-config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_SYSLOG) && !defined(C_AIX)
|
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
|
|
|
|
Add CMake build tooling
This patch adds experimental-quality CMake build tooling.
The libmspack build required a modification to use "" instead of <> for
header #includes. This will hopefully be included in the libmspack
upstream project when adding CMake build tooling to libmspack.
Removed use of libltdl when using CMake.
Flex & Bison are now required to build.
If -DMAINTAINER_MODE, then GPERF is also required, though it currently
doesn't actually do anything. TODO!
I found that the autotools build system was generating the lexer output
but not actually compiling it, instead using previously generated (and
manually renamed) lexer c source. As a consequence, changes to the .l
and .y files weren't making it into the build. To resolve this, I
removed generated flex/bison files and fixed the tooling to use the
freshly generated files. Flex and bison are now required build tools.
On Windows, this adds a dependency on the winflexbison package,
which can be obtained using Chocolatey or may be manually installed.
CMake tooling only has partial support for building with external LLVM
library, and no support for the internal LLVM (to be removed in the
future). I.e. The CMake build currently only supports the bytecode
interpreter.
Many files used include paths relative to the top source directory or
relative to the current project, rather than relative to each build
target. Modern CMake support requires including internal dependency
headers the same way you would external dependency headers (albeit
with "" instead of <>). This meant correcting all header includes to
be relative to the build targets and not relative to the workspace.
For example, ...
```c
include "../libclamav/clamav.h"
include "clamd/clamd_others.h"
```
... becomes:
```c
// libclamav
include "clamav.h"
// clamd
include "clamd_others.h"
```
Fixes header name conflicts by renaming a few of the files.
Converted the "shared" code into a static library, which depends on
libclamav. The ironically named "shared" static library provides
features common to the ClamAV apps which are not required in
libclamav itself and are not intended for use by downstream projects.
This change was required for correct modern CMake practices but was
also required to use the automake "subdir-objects" option.
This eliminates warnings when running autoreconf which, in the next
version of autoconf & automake are likely to break the build.
libclamav used to build in multiple stages where an earlier stage is
a static library containing utils required by the "shared" code.
Linking clamdscan and clamdtop with this libclamav utils static lib
allowed these two apps to function without libclamav. While this is
nice in theory, the practical gains are minimal and it complicates
the build system. As such, the autotools and CMake tooling was
simplified for improved maintainability and this feature was thrown
out. clamdtop and clamdscan now require libclamav to function.
Removed the nopthreads version of the autotools
libclamav_internal_utils static library and added pthread linking to
a couple apps that may have issues building on some platforms without
it, with the intention of removing needless complexity from the
source. Kept the regular version of libclamav_internal_utils.la
though it is no longer used anywhere but in libclamav.
Added an experimental doxygen build option which attempts to build
clamav.h and libfreshclam doxygen html docs.
The CMake build tooling also may build the example program(s), which
isn't a feature in the Autotools build system.
Changed C standard to C90+ due to inline linking issues with socket.h
when linking libfreshclam.so on Linux.
Generate common.rc for win32.
Fix tabs/spaces in shared Makefile.am, and remove vestigial ifndef
from misc.c.
Add CMake files to the automake dist, so users can try the new
CMake tooling w/out having to build from a git clone.
clamonacc changes:
- Renamed FANOTIFY macro to HAVE_SYS_FANOTIFY_H to better match other
similar macros.
- Added a new clamav-clamonacc.service systemd unit file, based on
the work of ChadDevOps & Aaron Brighton.
- Added missing clamonacc man page.
Updates to clamdscan man page, add missing options.
Remove vestigial CL_NOLIBCLAMAV definitions (all apps now use
libclamav).
Rename Windows mspack.dll to libmspack.dll so all ClamAV-built
libraries have the lib-prefix with Visual Studio as with CMake.
5 years ago
|
|
|
// libclamav
|
|
|
|
#include "clamav.h"
|
|
|
|
#include "others.h"
|
|
|
|
#include "str.h"
|
|
|
|
|
Add CMake build tooling
This patch adds experimental-quality CMake build tooling.
The libmspack build required a modification to use "" instead of <> for
header #includes. This will hopefully be included in the libmspack
upstream project when adding CMake build tooling to libmspack.
Removed use of libltdl when using CMake.
Flex & Bison are now required to build.
If -DMAINTAINER_MODE, then GPERF is also required, though it currently
doesn't actually do anything. TODO!
I found that the autotools build system was generating the lexer output
but not actually compiling it, instead using previously generated (and
manually renamed) lexer c source. As a consequence, changes to the .l
and .y files weren't making it into the build. To resolve this, I
removed generated flex/bison files and fixed the tooling to use the
freshly generated files. Flex and bison are now required build tools.
On Windows, this adds a dependency on the winflexbison package,
which can be obtained using Chocolatey or may be manually installed.
CMake tooling only has partial support for building with external LLVM
library, and no support for the internal LLVM (to be removed in the
future). I.e. The CMake build currently only supports the bytecode
interpreter.
Many files used include paths relative to the top source directory or
relative to the current project, rather than relative to each build
target. Modern CMake support requires including internal dependency
headers the same way you would external dependency headers (albeit
with "" instead of <>). This meant correcting all header includes to
be relative to the build targets and not relative to the workspace.
For example, ...
```c
include "../libclamav/clamav.h"
include "clamd/clamd_others.h"
```
... becomes:
```c
// libclamav
include "clamav.h"
// clamd
include "clamd_others.h"
```
Fixes header name conflicts by renaming a few of the files.
Converted the "shared" code into a static library, which depends on
libclamav. The ironically named "shared" static library provides
features common to the ClamAV apps which are not required in
libclamav itself and are not intended for use by downstream projects.
This change was required for correct modern CMake practices but was
also required to use the automake "subdir-objects" option.
This eliminates warnings when running autoreconf which, in the next
version of autoconf & automake are likely to break the build.
libclamav used to build in multiple stages where an earlier stage is
a static library containing utils required by the "shared" code.
Linking clamdscan and clamdtop with this libclamav utils static lib
allowed these two apps to function without libclamav. While this is
nice in theory, the practical gains are minimal and it complicates
the build system. As such, the autotools and CMake tooling was
simplified for improved maintainability and this feature was thrown
out. clamdtop and clamdscan now require libclamav to function.
Removed the nopthreads version of the autotools
libclamav_internal_utils static library and added pthread linking to
a couple apps that may have issues building on some platforms without
it, with the intention of removing needless complexity from the
source. Kept the regular version of libclamav_internal_utils.la
though it is no longer used anywhere but in libclamav.
Added an experimental doxygen build option which attempts to build
clamav.h and libfreshclam doxygen html docs.
The CMake build tooling also may build the example program(s), which
isn't a feature in the Autotools build system.
Changed C standard to C90+ due to inline linking issues with socket.h
when linking libfreshclam.so on Linux.
Generate common.rc for win32.
Fix tabs/spaces in shared Makefile.am, and remove vestigial ifndef
from misc.c.
Add CMake files to the automake dist, so users can try the new
CMake tooling w/out having to build from a git clone.
clamonacc changes:
- Renamed FANOTIFY macro to HAVE_SYS_FANOTIFY_H to better match other
similar macros.
- Added a new clamav-clamonacc.service systemd unit file, based on
the work of ChadDevOps & Aaron Brighton.
- Added missing clamonacc man page.
Updates to clamdscan man page, add missing options.
Remove vestigial CL_NOLIBCLAMAV definitions (all apps now use
libclamav).
Rename Windows mspack.dll to libmspack.dll so all ClamAV-built
libraries have the lib-prefix with Visual Studio as with CMake.
5 years ago
|
|
|
#include "output.h"
|
|
|
|
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
#include <pthread.h>
|
|
|
|
pthread_mutex_t logg_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
pthread_mutex_t mdprintf_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(C_LINUX) && defined(HAVE_LIBINTL_H)
|
|
|
|
#include <libintl.h>
|
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
#define gettext_noop(s) s
|
|
|
|
#define _(s) gettext(s)
|
|
|
|
#define N_(s) gettext_noop(s)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define _(s) s
|
|
|
|
#define N_(s) s
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FILE *logg_fp = NULL;
|
|
|
|
|
|
|
|
short int logg_verbose = 0, logg_nowarn = 0, logg_lock = 1, logg_time = 0, logg_foreground = 1, logg_noflush = 0, logg_rotate = 0;
|
|
|
|
off_t logg_size = 0;
|
|
|
|
const char *logg_file = NULL;
|
|
|
|
#if defined(USE_SYSLOG) && !defined(C_AIX)
|
|
|
|
short logg_syslog;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
short int mprintf_disabled = 0, mprintf_verbose = 0, mprintf_quiet = 0,
|
|
|
|
mprintf_stdout = 0, mprintf_nowarn = 0, mprintf_send_timeout = 100, mprintf_progress = 0;
|
|
|
|
|
|
|
|
#define ARGLEN(args, str, len) \
|
|
|
|
{ \
|
|
|
|
size_t arglen = 1, i; \
|
|
|
|
char *pt; \
|
|
|
|
va_start(args, str); \
|
|
|
|
len = strlen(str); \
|
|
|
|
for (i = 0; i < len - 1; i++) { \
|
|
|
|
if (str[i] == '%') { \
|
|
|
|
switch (str[++i]) { \
|
|
|
|
case 's': \
|
|
|
|
pt = va_arg(args, char *); \
|
|
|
|
if (pt) \
|
|
|
|
arglen += strlen(pt); \
|
|
|
|
break; \
|
|
|
|
case 'f': \
|
|
|
|
va_arg(args, double); \
|
|
|
|
arglen += 25; \
|
|
|
|
break; \
|
|
|
|
case 'l': \
|
|
|
|
va_arg(args, long); \
|
|
|
|
arglen += 20; \
|
|
|
|
break; \
|
|
|
|
default: \
|
|
|
|
va_arg(args, int); \
|
|
|
|
arglen += 10; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
va_end(args); \
|
|
|
|
len += arglen; \
|
|
|
|
}
|
|
|
|
|
|
|
|
int mdprintf(int desc, const char *str, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[512], *abuffer = NULL, *buff;
|
|
|
|
int bytes, todo, ret = 0;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
ARGLEN(args, str, len);
|
|
|
|
if (len <= sizeof(buffer)) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
abuffer = malloc(len);
|
|
|
|
if (!abuffer) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
buff = abuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_start(args, str);
|
|
|
|
bytes = vsnprintf(buff, len, str, args);
|
|
|
|
va_end(args);
|
|
|
|
buff[len - 1] = 0;
|
|
|
|
|
|
|
|
if (bytes < 0) {
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
if ((size_t)bytes >= len)
|
|
|
|
bytes = len - 1;
|
|
|
|
|
|
|
|
todo = bytes;
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
/* make sure we don't mix sends from multiple threads,
|
|
|
|
* important for IDSESSION */
|
|
|
|
pthread_mutex_lock(&mdprintf_mutex);
|
|
|
|
#endif
|
|
|
|
while (todo > 0) {
|
|
|
|
ret = send(desc, buff, bytes, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
struct timeval tv;
|
|
|
|
if (errno != EWOULDBLOCK)
|
|
|
|
break;
|
|
|
|
/* didn't send anything yet */
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&mdprintf_mutex);
|
|
|
|
#endif
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = mprintf_send_timeout * 1000;
|
|
|
|
do {
|
|
|
|
fd_set wfds;
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
FD_SET(desc, &wfds);
|
|
|
|
ret = select(desc + 1, NULL, &wfds, NULL, &tv);
|
|
|
|
} while (ret < 0 && errno == EINTR);
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_lock(&mdprintf_mutex);
|
|
|
|
#endif
|
|
|
|
if (!ret) {
|
|
|
|
/* timed out */
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
todo -= ret;
|
|
|
|
buff += ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&mdprintf_mutex);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
|
|
|
|
return ret < 0 ? -1 : bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rename_logg(STATBUF *sb)
|
|
|
|
{
|
|
|
|
char *rotate_file;
|
|
|
|
size_t rotate_file_len;
|
|
|
|
time_t t;
|
|
|
|
struct tm tmp;
|
|
|
|
|
|
|
|
if (!logg_rotate) {
|
|
|
|
if (logg_fp) {
|
|
|
|
fprintf(logg_fp, "Log size = %lld, max = %lld\n", (long long int)sb->st_size, (long long int)logg_size);
|
|
|
|
fprintf(logg_fp, "WARNING: Log size limit met but log file rotation turned off. Forcing log file rotation anyways.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
logg_rotate = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
rotate_file_len = strlen(logg_file) + strlen("-YYYY-MM-DD_HH:MM:SS.log");
|
|
|
|
rotate_file = calloc(1, rotate_file_len + 1);
|
|
|
|
if (!rotate_file) {
|
|
|
|
if (logg_fp)
|
|
|
|
fprintf(logg_fp, "Need to rotate log file due to size but ran out of memory.\n");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
t = time(NULL);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (0 != localtime_s(&tmp, &t)) {
|
|
|
|
#else
|
|
|
|
if (!localtime_r(&t, &tmp)) {
|
|
|
|
#endif
|
|
|
|
if (logg_fp)
|
|
|
|
fprintf(logg_fp, "Need to rotate log file due to size but could not get local time.\n");
|
|
|
|
|
|
|
|
free(rotate_file);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(rotate_file, logg_file);
|
|
|
|
strftime(rotate_file + strlen(rotate_file) - strlen(".log"), rotate_file_len - strlen(rotate_file), "-%Y%m%d_%H%M%S.log", &tmp);
|
|
|
|
|
|
|
|
if (logg_fp) {
|
|
|
|
fclose(logg_fp);
|
|
|
|
logg_fp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (0 == MoveFileA(logg_file, rotate_file)) {
|
|
|
|
fprintf(stderr, "Failed to rename file with error code: %d\n", GetLastError());
|
|
|
|
#else
|
|
|
|
if (rename(logg_file, rotate_file)) {
|
|
|
|
#endif
|
|
|
|
free(rotate_file);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(rotate_file);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int logg_open(void)
|
|
|
|
{
|
|
|
|
STATBUF sb;
|
|
|
|
|
|
|
|
if (logg_file)
|
|
|
|
if (logg_size > 0)
|
|
|
|
if (CLAMSTAT(logg_file, &sb) != -1)
|
|
|
|
if (sb.st_size > logg_size)
|
|
|
|
if (rename_logg(&sb))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void logg_close(void)
|
|
|
|
{
|
|
|
|
#if defined(USE_SYSLOG) && !defined(C_AIX)
|
|
|
|
if (logg_syslog)
|
|
|
|
closelog();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_lock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
if (logg_fp) {
|
|
|
|
fclose(logg_fp);
|
|
|
|
logg_fp = NULL;
|
|
|
|
}
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int logg(loglevel_t loglevel, const char *str, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[1025], *abuffer = NULL, *buff;
|
|
|
|
time_t currtime;
|
|
|
|
size_t len;
|
|
|
|
mode_t old_umask;
|
|
|
|
#ifdef F_WRLCK
|
|
|
|
struct flock fl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if ((loglevel == LOGG_DEBUG_NV && logg_verbose < 2) ||
|
|
|
|
(loglevel == LOGG_DEBUG && !logg_verbose))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ARGLEN(args, str, len);
|
|
|
|
if (len <= sizeof(buffer)) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
abuffer = malloc(len);
|
|
|
|
if (!abuffer) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
buff = abuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_start(args, str);
|
|
|
|
vsnprintf(buff, len, str, args);
|
|
|
|
va_end(args);
|
|
|
|
buff[len - 1] = 0;
|
|
|
|
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_lock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
logg_open();
|
|
|
|
|
|
|
|
if (!logg_fp && logg_file) {
|
|
|
|
old_umask = umask(0037);
|
|
|
|
if ((logg_fp = fopen(logg_file, "at")) == NULL) {
|
|
|
|
umask(old_umask);
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
printf("ERROR: Can't open %s in append mode (check permissions!).\n", logg_file);
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
umask(old_umask);
|
|
|
|
|
|
|
|
#ifdef F_WRLCK
|
|
|
|
if (logg_lock) {
|
|
|
|
memset(&fl, 0, sizeof(fl));
|
|
|
|
fl.l_type = F_WRLCK;
|
|
|
|
if (fcntl(fileno(logg_fp), F_SETLK, &fl) == -1) {
|
|
|
|
#ifdef EOPNOTSUPP
|
|
|
|
if (errno == EOPNOTSUPP)
|
|
|
|
printf("WARNING: File locking not supported (NFS?)\n");
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
printf("ERROR: %s is locked by another process\n", logg_file);
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (logg_fp) {
|
|
|
|
char flush = !logg_noflush;
|
|
|
|
/* Need to avoid logging time for verbose messages when logverbose
|
|
|
|
is not set or we get a bunch of timestamps in the log without
|
|
|
|
newlines... */
|
|
|
|
if (logg_time && ((loglevel != LOGG_DEBUG) || logg_verbose)) {
|
|
|
|
char timestr[32];
|
|
|
|
time(&currtime);
|
|
|
|
cli_ctime(&currtime, timestr, sizeof(timestr));
|
|
|
|
/* cut trailing \n */
|
|
|
|
timestr[strlen(timestr) - 1] = '\0';
|
|
|
|
fprintf(logg_fp, "%s -> ", timestr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loglevel == LOGG_ERROR) {
|
|
|
|
fprintf(logg_fp, "ERROR: %s", buff);
|
|
|
|
flush = 1;
|
|
|
|
} else if (loglevel == LOGG_WARNING) {
|
|
|
|
if (!logg_nowarn)
|
|
|
|
fprintf(logg_fp, "WARNING: %s", buff);
|
|
|
|
flush = 1;
|
|
|
|
} else if (loglevel == LOGG_DEBUG || loglevel == LOGG_DEBUG_NV) {
|
|
|
|
fprintf(logg_fp, "%s", buff);
|
|
|
|
} else if (loglevel == LOGG_INFO_NF || loglevel == LOGG_INFO) {
|
|
|
|
fprintf(logg_fp, "%s", buff);
|
|
|
|
} else
|
|
|
|
fprintf(logg_fp, "%s", buff);
|
|
|
|
|
|
|
|
if (flush)
|
|
|
|
fflush(logg_fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (logg_foreground) {
|
|
|
|
if (loglevel != LOGG_INFO_NF) {
|
|
|
|
if (logg_time) {
|
|
|
|
char timestr[32];
|
|
|
|
time(&currtime);
|
|
|
|
cli_ctime(&currtime, timestr, sizeof(timestr));
|
|
|
|
/* cut trailing \n */
|
|
|
|
timestr[strlen(timestr) - 1] = '\0';
|
|
|
|
mprintf(loglevel, "%s -> %s", timestr, buff);
|
|
|
|
} else {
|
|
|
|
mprintf(loglevel, "%s", buff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(USE_SYSLOG) && !defined(C_AIX)
|
|
|
|
if (logg_syslog) {
|
|
|
|
cli_chomp(buff);
|
|
|
|
if (loglevel == LOGG_ERROR) {
|
|
|
|
syslog(LOG_ERR, "%s", buff);
|
|
|
|
} else if (loglevel == LOGG_WARNING) {
|
|
|
|
if (!logg_nowarn)
|
|
|
|
syslog(LOG_WARNING, "%s", buff);
|
|
|
|
} else if (loglevel == LOGG_DEBUG || loglevel == LOGG_DEBUG_NV) {
|
|
|
|
syslog(LOG_DEBUG, "%s", buff);
|
|
|
|
} else
|
|
|
|
syslog(LOG_INFO, "%s", buff);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CL_THREAD_SAFE
|
|
|
|
pthread_mutex_unlock(&logg_mutex);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mprintf(loglevel_t loglevel, const char *str, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
FILE *fd;
|
|
|
|
char buffer[512], *abuffer = NULL, *buff;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if (mprintf_disabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fd = stdout;
|
|
|
|
|
|
|
|
ARGLEN(args, str, len);
|
|
|
|
if (len <= sizeof(buffer)) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
abuffer = malloc(len);
|
|
|
|
if (!abuffer) {
|
|
|
|
len = sizeof(buffer);
|
|
|
|
buff = buffer;
|
|
|
|
} else {
|
|
|
|
buff = abuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_start(args, str);
|
|
|
|
vsnprintf(buff, len, str, args);
|
|
|
|
va_end(args);
|
|
|
|
buff[len - 1] = 0;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
do {
|
|
|
|
int tmplen = len + 1;
|
|
|
|
wchar_t *tmpw = malloc(tmplen * sizeof(wchar_t));
|
|
|
|
char *nubuff;
|
|
|
|
if (!tmpw)
|
|
|
|
break;
|
|
|
|
if (!MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, buff, -1, tmpw, tmplen)) {
|
|
|
|
free(tmpw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FIXME CHECK IT'S REALLY UTF8 */
|
|
|
|
nubuff = (char *)malloc(tmplen);
|
|
|
|
if (!nubuff) {
|
|
|
|
free(tmpw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!WideCharToMultiByte(CP_OEMCP, 0, tmpw, -1, nubuff, tmplen, NULL, NULL)) {
|
|
|
|
free(nubuff);
|
|
|
|
free(tmpw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(tmpw);
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
abuffer = buff = nubuff;
|
|
|
|
len = sizeof(buffer) + 1;
|
|
|
|
} while (0);
|
|
|
|
#endif
|
|
|
|
if (loglevel == LOGG_ERROR) {
|
|
|
|
if (!mprintf_stdout)
|
|
|
|
fd = stderr;
|
|
|
|
fprintf(fd, "ERROR: %s", buff);
|
|
|
|
} else if (!mprintf_quiet) {
|
|
|
|
if (loglevel == LOGG_WARNING) {
|
|
|
|
if (!mprintf_nowarn) {
|
|
|
|
if (!mprintf_stdout)
|
|
|
|
fd = stderr;
|
|
|
|
fprintf(fd, "WARNING: %s", buff);
|
|
|
|
}
|
|
|
|
} else if (loglevel == LOGG_DEBUG) {
|
|
|
|
if (mprintf_verbose)
|
|
|
|
fprintf(fd, "%s", buff);
|
|
|
|
} else if (loglevel == LOGG_INFO) {
|
|
|
|
fprintf(fd, "%s", buff);
|
|
|
|
} else
|
|
|
|
fprintf(fd, "%s", buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd == stdout)
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if (len > sizeof(buffer))
|
|
|
|
free(abuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct facstruct {
|
|
|
|
const char *name;
|
|
|
|
int code;
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(USE_SYSLOG) && !defined(C_AIX)
|
|
|
|
static const struct facstruct facilitymap[] = {
|
|
|
|
#ifdef LOG_AUTH
|
|
|
|
{"LOG_AUTH", LOG_AUTH},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_AUTHPRIV
|
|
|
|
{"LOG_AUTHPRIV", LOG_AUTHPRIV},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_CRON
|
|
|
|
{"LOG_CRON", LOG_CRON},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_DAEMON
|
|
|
|
{"LOG_DAEMON", LOG_DAEMON},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_FTP
|
|
|
|
{"LOG_FTP", LOG_FTP},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_KERN
|
|
|
|
{"LOG_KERN", LOG_KERN},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LPR
|
|
|
|
{"LOG_LPR", LOG_LPR},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_MAIL
|
|
|
|
{"LOG_MAIL", LOG_MAIL},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_NEWS
|
|
|
|
{"LOG_NEWS", LOG_NEWS},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_AUTH
|
|
|
|
{"LOG_AUTH", LOG_AUTH},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_SYSLOG
|
|
|
|
{"LOG_SYSLOG", LOG_SYSLOG},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_USER
|
|
|
|
{"LOG_USER", LOG_USER},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_UUCP
|
|
|
|
{"LOG_UUCP", LOG_UUCP},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL0
|
|
|
|
{"LOG_LOCAL0", LOG_LOCAL0},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL1
|
|
|
|
{"LOG_LOCAL1", LOG_LOCAL1},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL2
|
|
|
|
{"LOG_LOCAL2", LOG_LOCAL2},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL3
|
|
|
|
{"LOG_LOCAL3", LOG_LOCAL3},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL4
|
|
|
|
{"LOG_LOCAL4", LOG_LOCAL4},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL5
|
|
|
|
{"LOG_LOCAL5", LOG_LOCAL5},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL6
|
|
|
|
{"LOG_LOCAL6", LOG_LOCAL6},
|
|
|
|
#endif
|
|
|
|
#ifdef LOG_LOCAL7
|
|
|
|
{"LOG_LOCAL7", LOG_LOCAL7},
|
|
|
|
#endif
|
|
|
|
{NULL, -1}};
|
|
|
|
|
|
|
|
int logg_facility(const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; facilitymap[i].name; i++)
|
|
|
|
if (!strcmp(facilitymap[i].name, name))
|
|
|
|
return facilitymap[i].code;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|