2018-04-22 19:10:29 +00:00
|
|
|
/*
|
|
|
|
* Wazuh app - Module for logging functions
|
2019-01-14 16:36:47 +00:00
|
|
|
* Copyright (C) 2015-2019 Wazuh, Inc.
|
2018-04-22 19:10:29 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Find more information about this on the LICENSE file.
|
|
|
|
*/
|
2018-04-21 11:31:47 +00:00
|
|
|
import winston from 'winston';
|
2018-09-10 08:32:49 +00:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2018-04-21 11:31:47 +00:00
|
|
|
|
|
|
|
let allowed = false;
|
2018-07-09 08:10:47 +00:00
|
|
|
let wazuhlogger = undefined;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Here we create the logger
|
|
|
|
*/
|
|
|
|
const initLogger = () => {
|
2018-09-10 08:32:49 +00:00
|
|
|
wazuhlogger = winston.createLogger({
|
|
|
|
level: 'info',
|
|
|
|
format: winston.format.json(),
|
|
|
|
transports: [
|
|
|
|
new winston.transports.File({
|
|
|
|
filename: path.join(
|
|
|
|
__dirname,
|
|
|
|
'../../../optimize/wazuh-logs/wazuhapp.log'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prevents from exit on error related to the logger.
|
|
|
|
*/
|
|
|
|
wazuhlogger.exitOnError = false;
|
2018-07-09 08:10:47 +00:00
|
|
|
};
|
2018-04-21 11:31:47 +00:00
|
|
|
|
2018-09-10 08:32:49 +00:00
|
|
|
/**
|
2018-06-12 10:45:53 +00:00
|
|
|
* Checks if wazuh-logs exists. If it doesn't exist, it will be created.
|
2018-03-12 12:43:43 +00:00
|
|
|
*/
|
2018-07-09 08:10:47 +00:00
|
|
|
const initDirectory = async () => {
|
2018-09-10 08:32:49 +00:00
|
|
|
try {
|
|
|
|
if (!fs.existsSync(path.join(__dirname, '../../../optimize/wazuh-logs'))) {
|
|
|
|
fs.mkdirSync(path.join(__dirname, '../../../optimize/wazuh-logs'));
|
2018-03-12 12:40:31 +00:00
|
|
|
}
|
2018-09-10 08:32:49 +00:00
|
|
|
if (typeof wazuhlogger === 'undefined') initLogger();
|
|
|
|
allowed = true;
|
|
|
|
return;
|
|
|
|
} catch (error) {
|
|
|
|
allowed = false;
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
|
|
|
};
|
2018-03-12 11:29:24 +00:00
|
|
|
|
2018-03-12 12:43:43 +00:00
|
|
|
/**
|
|
|
|
* Returns given file size in MB, if the file doesn't exist returns 0
|
|
|
|
* @param {*} filename Path to the file
|
|
|
|
*/
|
2018-03-12 11:29:24 +00:00
|
|
|
const getFilesizeInMegaBytes = filename => {
|
2018-09-10 08:32:49 +00:00
|
|
|
if (allowed) {
|
|
|
|
if (fs.existsSync(filename)) {
|
|
|
|
const stats = fs.statSync(filename);
|
|
|
|
const fileSizeInMegaBytes = stats.size;
|
2018-03-12 11:57:14 +00:00
|
|
|
|
2018-09-10 08:32:49 +00:00
|
|
|
return fileSizeInMegaBytes / 1000000.0;
|
2018-03-12 11:29:24 +00:00
|
|
|
}
|
2018-09-10 08:32:49 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
};
|
2018-03-12 11:29:24 +00:00
|
|
|
|
2018-04-22 19:10:29 +00:00
|
|
|
/**
|
2018-03-12 12:43:43 +00:00
|
|
|
* Checks if the wazuhapp.log file size is greater than 100MB, if so it rotates the file.
|
|
|
|
*/
|
2018-03-12 11:29:24 +00:00
|
|
|
const checkFiles = () => {
|
2018-09-10 08:32:49 +00:00
|
|
|
if (allowed) {
|
|
|
|
if (
|
|
|
|
getFilesizeInMegaBytes(
|
|
|
|
path.join(__dirname, '../../../optimize/wazuh-logs/wazuhapp.log')
|
|
|
|
) >= 100
|
|
|
|
) {
|
|
|
|
fs.renameSync(
|
|
|
|
path.join(__dirname, '../../../optimize/wazuh-logs/wazuhapp.log'),
|
|
|
|
path.join(
|
|
|
|
__dirname,
|
|
|
|
`../../../optimize/wazuh-logs/wazuhapp.${new Date().getTime()}.log`
|
|
|
|
)
|
|
|
|
);
|
|
|
|
fs.writeFileSync(
|
|
|
|
path.join(__dirname, '../../../optimize/wazuh-logs/wazuhapp.log'),
|
|
|
|
JSON.stringify({
|
|
|
|
date: new Date(),
|
|
|
|
level: 'info',
|
|
|
|
location: 'logger',
|
|
|
|
message: 'Rotated log file'
|
|
|
|
}) + '\n'
|
|
|
|
);
|
2018-03-12 11:29:24 +00:00
|
|
|
}
|
2018-09-10 08:32:49 +00:00
|
|
|
}
|
2018-03-12 11:29:24 +00:00
|
|
|
};
|
|
|
|
|
2018-03-12 12:43:43 +00:00
|
|
|
/**
|
|
|
|
* Main function to add a new log
|
|
|
|
* @param {*} location File where the log is being thrown
|
|
|
|
* @param {*} message Message to show
|
|
|
|
* @param {*} level Optional, default is 'error'
|
|
|
|
*/
|
2018-09-03 09:46:55 +00:00
|
|
|
export function log(location, message, level) {
|
2018-09-10 08:32:49 +00:00
|
|
|
initDirectory()
|
2018-07-09 08:10:47 +00:00
|
|
|
.then(() => {
|
2018-09-10 08:32:49 +00:00
|
|
|
if (allowed) {
|
|
|
|
checkFiles();
|
|
|
|
wazuhlogger.log({
|
|
|
|
date: new Date(),
|
|
|
|
level: level || 'error',
|
|
|
|
location: location || 'unknown',
|
|
|
|
message: message || 'An error occurred'
|
|
|
|
});
|
|
|
|
}
|
2018-07-09 08:10:47 +00:00
|
|
|
})
|
2018-09-10 08:32:49 +00:00
|
|
|
.catch(error =>
|
|
|
|
// eslint-disable-next-line
|
|
|
|
console.error(
|
|
|
|
`Cannot create the logs directory due to:\n${error.message || error}`
|
|
|
|
)
|
2018-09-10 08:42:05 +00:00
|
|
|
);
|
2018-09-10 08:32:49 +00:00
|
|
|
}
|