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
|
/*****************************************************************************
*
* XDDDEFAULT.C - Default scheduled downtime data routines for Icinga
*
* Copyright (c) 1999-2009 Ethan Galstad (egalstad@nagios.org)
* Copyright (c) 2009-2010 Icinga Development Team (http://www.icinga.org)
*
* License:
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****************************************************************************/
/*********** COMMON HEADER FILES ***********/
#include "../include/config.h"
#include "../include/common.h"
#include "../include/locations.h"
#include "../include/downtime.h"
#include "../include/macros.h"
#ifdef NSCORE
#include "../include/objects.h"
#include "../include/icinga.h"
#endif
#ifdef NSCGI
#include "../include/cgiutils.h"
#endif
/**** IMPLEMENTATION SPECIFIC HEADER FILES ****/
#include "xdddefault.h"
#ifdef NSCORE
extern unsigned long next_downtime_id;
extern scheduled_downtime *scheduled_downtime_list;
extern char *macro_x[MACRO_X_COUNT];
#endif
#ifdef NSCORE
/******************************************************************/
/*********** DOWNTIME INITIALIZATION/CLEANUP FUNCTIONS ************/
/******************************************************************/
/* initialize downtime data */
int xdddefault_initialize_downtime_data(char *main_config_file){
scheduled_downtime *temp_downtime=NULL;
/* clean up the old downtime data */
xdddefault_validate_downtime_data();
/* find the new starting index for downtime id if its missing*/
if(next_downtime_id==0L){
for(temp_downtime=scheduled_downtime_list;temp_downtime!=NULL;temp_downtime=temp_downtime->next){
if(temp_downtime->downtime_id>=next_downtime_id)
next_downtime_id=temp_downtime->downtime_id+1;
}
}
/* initialize next downtime id if necessary */
if(next_downtime_id==0L)
next_downtime_id=1;
return OK;
}
/* removes invalid and old downtime entries from the downtime file */
int xdddefault_validate_downtime_data(void){
scheduled_downtime *temp_downtime;
scheduled_downtime *next_downtime;
int update_file=FALSE;
int save=TRUE;
/* remove stale downtimes */
for(temp_downtime=scheduled_downtime_list;temp_downtime!=NULL;temp_downtime=next_downtime){
next_downtime=temp_downtime->next;
save=TRUE;
/* delete downtimes with invalid host names */
if(find_host(temp_downtime->host_name)==NULL)
save=FALSE;
/* delete downtimes with invalid service descriptions */
if(temp_downtime->type==SERVICE_DOWNTIME && find_service(temp_downtime->host_name,temp_downtime->service_description)==NULL)
save=FALSE;
/* delete downtimes that have expired */
if(temp_downtime->end_time<time(NULL))
save=FALSE;
/* delete the downtime */
if(save==FALSE){
update_file=TRUE;
delete_downtime(temp_downtime->type,temp_downtime->downtime_id);
}
}
/* remove triggered downtimes without valid parents */
for(temp_downtime=scheduled_downtime_list;temp_downtime!=NULL;temp_downtime=next_downtime){
next_downtime=temp_downtime->next;
save=TRUE;
if(temp_downtime->triggered_by==0)
continue;
if(find_host_downtime(temp_downtime->triggered_by)==NULL && find_service_downtime(temp_downtime->triggered_by)==NULL)
save=FALSE;
/* delete the downtime */
if(save==FALSE){
update_file=TRUE;
delete_downtime(temp_downtime->type,temp_downtime->downtime_id);
}
}
/* update downtime file */
if(update_file==TRUE)
xdddefault_save_downtime_data();
return OK;
}
/* removes invalid and old downtime entries from the downtime file */
int xdddefault_cleanup_downtime_data(char *main_config_file){
/* we don't need to do any cleanup... */
return OK;
}
/******************************************************************/
/************************ SAVE FUNCTIONS **************************/
/******************************************************************/
/* adds a new scheduled host downtime entry */
int xdddefault_add_new_host_downtime(char *host_name, time_t entry_time, char *author, char *comment, time_t start_time, time_t end_time, int fixed, unsigned long triggered_by, unsigned long duration, unsigned long *downtime_id){
/* find the next valid downtime id */
while(find_host_downtime(next_downtime_id)!=NULL)
next_downtime_id++;
/* add downtime to list in memory */
add_host_downtime(host_name,entry_time,author,comment,start_time,end_time,fixed,triggered_by,duration,next_downtime_id);
/* update downtime file */
xdddefault_save_downtime_data();
/* return the id for the downtime we are about to add (this happens in the main code) */
if(downtime_id!=NULL)
*downtime_id=next_downtime_id;
/* increment the downtime id */
next_downtime_id++;
return OK;
}
/* adds a new scheduled service downtime entry */
int xdddefault_add_new_service_downtime(char *host_name, char *service_description, time_t entry_time, char *author, char *comment, time_t start_time, time_t end_time, int fixed, unsigned long triggered_by, unsigned long duration, unsigned long *downtime_id){
/* find the next valid downtime id */
while(find_service_downtime(next_downtime_id)!=NULL)
next_downtime_id++;
/* add downtime to list in memory */
add_service_downtime(host_name,service_description,entry_time,author,comment,start_time,end_time,fixed,triggered_by,duration,next_downtime_id);
/* update downtime file */
xdddefault_save_downtime_data();
/* return the id for the downtime we are about to add (this happens in the main code) */
if(downtime_id!=NULL)
*downtime_id=next_downtime_id;
/* increment the downtime id */
next_downtime_id++;
return OK;
}
/******************************************************************/
/********************** DELETION FUNCTIONS ************************/
/******************************************************************/
/* deletes a scheduled host downtime entry */
int xdddefault_delete_host_downtime(unsigned long downtime_id){
int result;
result=xdddefault_delete_downtime(HOST_DOWNTIME,downtime_id);
return result;
}
/* deletes a scheduled service downtime entry */
int xdddefault_delete_service_downtime(unsigned long downtime_id){
int result;
result=xdddefault_delete_downtime(SERVICE_DOWNTIME,downtime_id);
return result;
}
/* deletes a scheduled host or service downtime entry */
int xdddefault_delete_downtime(int type, unsigned long downtime_id){
/* rewrite the downtime file (downtime was already removed from memory) */
xdddefault_save_downtime_data();
return OK;
}
/******************************************************************/
/****************** DOWNTIME OUTPUT FUNCTIONS *********************/
/******************************************************************/
/* writes downtime data to file */
int xdddefault_save_downtime_data(void){
/* don't update the status file now (too inefficent), let aggregated status updates do it */
return OK;
}
#endif
|