47209218ac
As C++ references cannot be NULL, new compilers optimizes the code assuming this condition. Therefore, in new compilers, from GCC 6 to 8 the fn_snmp_util_gen_trap will segfault trying to deference data.entity_instance_id as the if (&data != NULL) will be always optimized to be true. Turns out that the case where SFmAlarmDataT is expected to be NULL (or empty) is when the alarm type is WARM_START. So changing the if statement to look for WARM_START instead of checking the null reference seems to be a feasible solution. Story: 2003498 Task: 24775 Change-Id: Ica07ec8d7ad009e1048f014b0a6440c76de09eef Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
298 lines
8.3 KiB
C++
298 lines
8.3 KiB
C++
//
|
|
// Copyright (c) 2014-2018 Wind River Systems, Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <stdlib.h>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <map>
|
|
#include <assert.h>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
#include "fmDbAPI.h"
|
|
#include "fmFile.h"
|
|
#include "fmAPI.h"
|
|
#include "fmMsg.h"
|
|
#include "fmLog.h"
|
|
#include "fmDb.h"
|
|
#include "fmDbUtils.h"
|
|
#include "fmSnmpConstants.h"
|
|
#include "fmSnmpUtils.h"
|
|
#include "fmConfig.h"
|
|
|
|
typedef std::map<int,std::string> int_to_objtype;
|
|
|
|
static int_to_objtype objtype_map;
|
|
static pthread_mutex_t mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
|
|
|
|
|
|
fm_db_result_t &getTrapDestList(){
|
|
static fm_db_result_t trap_dest_list;
|
|
return trap_dest_list;
|
|
}
|
|
|
|
static void add_to_table(int t, std::string objtype, int_to_objtype &tbl) {
|
|
tbl[t]=objtype;
|
|
}
|
|
|
|
static void init_objtype_table() {
|
|
pthread_mutex_lock(&mutex);
|
|
static bool has_inited=false;
|
|
while (!has_inited){
|
|
add_to_table(FM_ALARM_SEVERITY_CLEAR, ALARM_MSG, objtype_map);
|
|
add_to_table(FM_ALARM_SEVERITY_WARNING, ALARM_WARNING, objtype_map);
|
|
add_to_table(FM_ALARM_SEVERITY_MINOR, ALARM_MINOR, objtype_map);
|
|
add_to_table(FM_ALARM_SEVERITY_MAJOR, ALARM_MAJOR, objtype_map);
|
|
add_to_table(FM_ALARM_SEVERITY_CRITICAL, ALARM_CRITICAL, objtype_map);
|
|
add_to_table(FM_ALARM_CLEAR, ALARM_CLEAR, objtype_map);
|
|
add_to_table(FM_ALARM_HIERARCHICAL_CLEAR, ALARM_HIERARCHICAL_CLEAR, objtype_map);
|
|
add_to_table(FM_ALARM_MESSAGE, ALARM_MSG, objtype_map);
|
|
add_to_table(FM_WARM_START, WARM_START, objtype_map);
|
|
has_inited=true;
|
|
}
|
|
pthread_mutex_unlock(&mutex);
|
|
}
|
|
|
|
static std::string add_time_val(std::string &str,
|
|
const std::string &objtype, FMTimeT time){
|
|
std::string time_str;
|
|
fm_db_util_make_timestamp_string(time_str, time, true);
|
|
return str + objtype + STR_TYPE + time_str + SEP;
|
|
}
|
|
|
|
static std::string add_str_val(std::string &str,
|
|
const std::string &objtype, const char *value){
|
|
std::string val(value);
|
|
return str + objtype + STR_TYPE + '"' + val + '"' + SEP;
|
|
}
|
|
|
|
static std::string add_int_val(std::string &str,
|
|
const std::string &objtype, int value){
|
|
return str + objtype + INT_TYPE + fm_db_util_int_to_string(value) + SEP;
|
|
}
|
|
|
|
static std::string get_trap_objtype(int type){
|
|
init_objtype_table();
|
|
return objtype_map[type];
|
|
}
|
|
|
|
static void add_to_list(std::vector<std::string> &trap_strings) {
|
|
std::string delimiter = " ";
|
|
|
|
std::vector<std::string>::iterator it = trap_strings.begin();
|
|
std::vector<std::string>::iterator end = trap_strings.end();
|
|
getTrapDestList().clear();
|
|
for (; it != end; ++it){
|
|
size_t pos = 0;
|
|
fm_db_single_result_t entry;
|
|
pos = (*it).find(delimiter);
|
|
entry[FM_TRAPDEST_IP] = (*it).substr(0, pos);
|
|
entry[FM_TRAPDEST_COMM] = (*it).erase(0, pos + delimiter.length());
|
|
getTrapDestList().push_back(entry);
|
|
}
|
|
}
|
|
|
|
void set_trap_dest_list(std::string value){
|
|
|
|
std::vector<std::string> entries;
|
|
std::istringstream f(value);
|
|
std::string s;
|
|
while (getline(f, s, ',')) {
|
|
std::cout << s << std::endl;
|
|
FM_INFO_LOG("Add entry: (%s)", s.c_str());
|
|
entries.push_back(s);
|
|
}
|
|
add_to_list(entries);
|
|
FM_INFO_LOG("Set trap entries: (%d)", getTrapDestList().size());
|
|
}
|
|
|
|
static std::string format_trap_cmd(int type, SFmAlarmDataT &data,
|
|
std::string &ip, std::string &comm){
|
|
std::string cmd;
|
|
std::string objtype;
|
|
std::string mib;
|
|
std::string s = "\"\" ";
|
|
std::string env;
|
|
|
|
if (get_trap_objtype(type) == WARM_START)
|
|
mib = SNMPv2_MIB;
|
|
else
|
|
mib = WRS_ALARM_MIB;
|
|
|
|
objtype = mib + SCOPE + get_trap_objtype(type);
|
|
|
|
if (comm.compare(DC_COMM_STR) == 0){
|
|
env = CONF_PATH_ENV + CONF_DIR + SEP;
|
|
}
|
|
else {
|
|
env = "";
|
|
}
|
|
|
|
cmd = env + TRAP_CMD + OPTION_COMM + comm + SEP + ip + SEP + s + objtype + SEP;
|
|
std::string operation_type =get_trap_objtype(type);
|
|
|
|
if (operation_type == ALARM_CLEAR){
|
|
cmd = add_str_val(cmd,ALARM_ID, data.alarm_id);
|
|
cmd = add_str_val(cmd, ALARM_INSTANCE_ID, data.entity_instance_id);
|
|
cmd = add_time_val(cmd, ALARM_DATE_TIME, data.timestamp);
|
|
cmd = add_str_val(cmd, ALARM_REASON_TEXT, data.reason_text);
|
|
} else if (operation_type == ALARM_HIERARCHICAL_CLEAR){
|
|
cmd = add_str_val(cmd, ALARM_INSTANCE_ID, data.entity_instance_id);
|
|
cmd = add_time_val(cmd, ALARM_DATE_TIME, 0);
|
|
cmd = add_str_val(cmd, ALARM_REASON_TEXT, CLEAR_REASON_TEXT.c_str());
|
|
} else if (operation_type == ALARM_MSG){
|
|
cmd = add_str_val(cmd, CUSTOMER_LOG_ID, data.alarm_id);
|
|
cmd = add_str_val(cmd, CUSTOMER_LOG_INSTANCE_ID, data.entity_instance_id);
|
|
cmd = add_time_val(cmd, CUSTOMER_LOG_DATE_TIME, data.timestamp);
|
|
cmd = add_int_val(cmd, CUSTOMER_LOG_SEVERITY, data.severity);
|
|
cmd = add_str_val(cmd, CUSTOMER_LOG_REASON_TEXT, data.reason_text);
|
|
cmd = add_int_val(cmd, CUSTOMER_LOG_EVENT_TYPE, data.alarm_type);
|
|
cmd = add_int_val(cmd, CUSTOMER_LOG_CAUSE, data.probable_cause);
|
|
cmd = add_int_val(cmd, CUSTOMER_LOG_SERVICE_AFFECTING, data.service_affecting);
|
|
} else if (operation_type == WARM_START){
|
|
// nothing to add to cmd
|
|
} else {
|
|
cmd = add_str_val(cmd, ALARM_ID, data.alarm_id);
|
|
cmd = add_str_val(cmd, ALARM_INSTANCE_ID, data.entity_instance_id);
|
|
cmd = add_time_val(cmd, ALARM_DATE_TIME, data.timestamp);
|
|
cmd = add_int_val(cmd, ALARM_SEVERITY, data.severity);
|
|
cmd = add_str_val(cmd, ALARM_REASON_TEXT, data.reason_text);
|
|
cmd = add_int_val(cmd, ALARM_EVENT_TYPE, data.alarm_type);
|
|
cmd = add_int_val(cmd, ALARM_CAUSE, data.probable_cause);
|
|
cmd = add_str_val(cmd, ALARM_REPAIR_ACTION, data.proposed_repair_action);
|
|
cmd = add_int_val(cmd, ALARM_SERVICE_AFFECTING, data.service_affecting);
|
|
cmd = add_int_val(cmd, ALARM_SUPPRESSION, data.suppression);
|
|
}
|
|
|
|
return cmd;
|
|
}
|
|
|
|
|
|
bool fm_snmp_util_gen_trap(int type, SFmAlarmDataT &data) {
|
|
|
|
bool rc = true;
|
|
fm_buff_t cmdbuff;
|
|
fm_db_result_t res;
|
|
std::string cmd, eid;
|
|
|
|
res = getTrapDestList();
|
|
|
|
if (get_trap_objtype(type) != WARM_START) {
|
|
eid.assign(data.entity_instance_id);
|
|
std::string region_name = fm_db_util_get_region_name();
|
|
std::string sys_name = fm_db_util_get_system_name();
|
|
if (sys_name.length() != 0){
|
|
eid = sys_name + "."+ eid;
|
|
}
|
|
if (region_name.length() != 0){
|
|
eid = region_name + "."+ eid;
|
|
}
|
|
strncpy(data.entity_instance_id, eid.c_str(),
|
|
sizeof(data.entity_instance_id)-1);
|
|
}
|
|
|
|
fm_db_result_t::iterator it = res.begin();
|
|
fm_db_result_t::iterator end = res.end();
|
|
|
|
for (; it != end; ++it){
|
|
memset(&(cmdbuff[0]), 0, cmdbuff.size());
|
|
cmd.clear();
|
|
std::string ip = (*it)[FM_TRAPDEST_IP];
|
|
std::string comm = (*it)[FM_TRAPDEST_COMM];
|
|
cmd = format_trap_cmd(type, data, ip, comm);
|
|
|
|
//FM_INFO_LOG("run cmd: %s\n", cmd.c_str());
|
|
char *pline = &(cmdbuff[0]);
|
|
FILE *op = popen(cmd.c_str(),"r");
|
|
if (op==NULL) {
|
|
FM_ERROR_LOG("popen() failed, errno: (%d) (%s)\n",
|
|
errno, strerror(errno));
|
|
rc = false;
|
|
}
|
|
while (fgets(pline,cmdbuff.size(),op)!=NULL) {
|
|
FM_ERROR_LOG("Trap error message: (%s)\n", pline);
|
|
}
|
|
fclose(op);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static bool fm_snmp_get_db_connection(std::string &connection){
|
|
const char *fn = "/etc/fm/fm.conf";
|
|
std::string key = FM_SQL_CONNECTION;
|
|
|
|
fm_conf_set_file(fn);
|
|
return fm_get_config_key(key, connection);
|
|
}
|
|
|
|
|
|
extern "C" {
|
|
bool fm_snmp_util_create_session(TFmAlarmSessionT *handle, const char* db_conn){
|
|
|
|
std::string conn;
|
|
CFmDBSession *sess = new CFmDBSession;
|
|
if (sess==NULL) return false;;
|
|
|
|
if (db_conn == NULL){
|
|
if (fm_snmp_get_db_connection(conn) != true){
|
|
FM_ERROR_LOG("Fail to get db connection uri\n");
|
|
delete sess;
|
|
return false;
|
|
}
|
|
db_conn = conn.c_str();
|
|
}
|
|
|
|
if (sess->connect(db_conn) != true){
|
|
FM_ERROR_LOG("Fail to connect to (%s)\n", db_conn);
|
|
delete sess;
|
|
return false;
|
|
}
|
|
*handle = sess;
|
|
return true;
|
|
}
|
|
|
|
void fm_snmp_util_destroy_session(TFmAlarmSessionT handle) {
|
|
CFmDBSession *sess = (CFmDBSession *)handle;
|
|
|
|
if (sess != NULL){
|
|
delete sess;
|
|
}
|
|
}
|
|
|
|
bool fm_snmp_util_get_all_alarms(TFmAlarmSessionT handle,
|
|
SFmAlarmQueryT *query) {
|
|
|
|
assert(handle!=NULL);
|
|
|
|
CFmDbAlarmOperation op;
|
|
fm_db_result_t res;
|
|
|
|
CFmDBSession &sess = *((CFmDBSession*)handle);
|
|
|
|
if (!op.get_all_alarms(sess, &(query->alarm), &(query->num))) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool fm_snmp_util_get_all_event_logs(TFmAlarmSessionT handle,
|
|
SFmAlarmQueryT *query) {
|
|
|
|
assert(handle!=NULL);
|
|
|
|
CFmDbEventLogOperation op;
|
|
fm_db_result_t res;
|
|
|
|
CFmDBSession &sess = *((CFmDBSession*)handle);
|
|
|
|
if (!op.get_all_event_logs(sess, &(query->alarm), &(query->num))) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|