Implement dialup mode
[bpdyndnsd] / src / logger.cpp
CommitLineData
254bbf53
BS
1/** @file
2 * @brief Logger class implementation. This class implements the Logging facility.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
10
4de6a9b8 11#include "logger.hpp"
254bbf53 12
ca5d6889 13#include <iostream>
88a594e8
BS
14#include <syslog.h>
15#include <sstream>
16
3c0cd271
BS
17#include <boost/foreach.hpp>
18
ca5d6889
BS
19#define VERSION 0
20#define REVISION 1
21#define RELEASE 0
22
8bca3c5d
BS
23namespace po = boost::program_options;
24
92beaba3
BS
25typedef boost::shared_ptr<boost::program_options::options_description> Options_descriptionPtr;
26
8bca3c5d 27using namespace std;
254bbf53
BS
28
29/**
30 * Default Constructor
31 */
32Logger::Logger()
8bca3c5d 33 : Loglevel(0)
2e956a36 34 , Syslog(false)
cbbdeb6c 35 , ExternalWarningLevel(0)
e8787e2e 36 , ExternalLogOnlyOnce(false)
254bbf53 37{
e8787e2e 38 set_log_facility(Loglevel,Syslog,ExternalWarningLog,ExternalWarningLevel,ExternalLogOnlyOnce);
254bbf53
BS
39}
40
41
42/**
43 * Default Destructor
44 */
45Logger::~Logger()
46{
254bbf53
BS
47}
48
49
50/**
e8787e2e
BS
51 * Decides if a external log message can be send.
52 * @param msg The message to log.
53 */
54bool Logger::is_allowed_to_send( const string& msg ) const
55{
56 if ( (ExternalLogOnlyOnce) && (ExternalSendMessages.find(msg) != ExternalSendMessages.end()) )
57 return false;
58 return true;
59}
60
61
62/**
63 * Clears the external send messages set.
64 */
65void Logger::clear_external_send_messages()
66{
67 ExternalSendMessages.clear();
68}
69
70
71/**
59c8d63c
BS
72 * Decides if Logging through syslog if enabled or through std.
73 * @param msg The message to log.
74 */
ce70569b 75void Logger::log_notice(const string& msg) const
59c8d63c
BS
76{
77 if ( Syslog )
78 syslog(LOG_NOTICE,msg.c_str());
79 else
27baf279 80 cout << msg << endl;;
59c8d63c
BS
81}
82
83
84/**
47e0ee60
BS
85* Escape shell arguments.
86* @param input The input to escape.
87* @return The escaped string ready to use for the shell.
88*/
89string Logger::escape_shellarg(const string &input)
90{
91 string output = "'";
92 string::const_iterator it, it_end = input.end();
93 for (it = input.begin(); it != it_end; it++)
94 {
95 if ( (*it) == '\'')
96 output += "'\\'";
97
98 output += *it;
99 }
100
101 output += "'";
102 return output;
103}
104
105
106/**
59c8d63c
BS
107 * Decides if Logging through syslog if enabled or through std.
108 * @param msg The message to log.
109 */
e8787e2e 110void Logger::log_warning(const string& msg, int level)
59c8d63c
BS
111{
112 if ( Syslog )
113 syslog(LOG_WARNING,msg.c_str());
114 else
27baf279 115 cout << msg << endl;
cbbdeb6c 116
e8787e2e 117 if ( (level <= ExternalWarningLevel) && (!ExternalWarningLog.empty()) && (is_allowed_to_send(msg)) )
cbbdeb6c 118 {
e8787e2e
BS
119 string message = msg;
120 // Remove endline from msg.
121 if (!message.empty() && message[message.length()-1] == '\n')
43f4565e 122 message.erase(message.length()-1); /*lint !e534 */
e8787e2e 123
47e0ee60
BS
124 message = escape_shellarg(message);
125
cbbdeb6c
BS
126 string external = ExternalWarningLog;
127 external.append(" ");
e8787e2e 128 external.append(message);
d77313ea 129 if ( system(external.c_str()) != 0 )
d77313ea 130 print_error_external_logging(external);
e8787e2e 131 else
43f4565e 132 ExternalSendMessages.insert(msg); /*lint !e534 */
cbbdeb6c 133 }
59c8d63c
BS
134}
135
136
137/**
138 * Decides if Logging through syslog if enabled or through std.
139 * @param msg The message to log.
140 */
ce70569b 141void Logger::log_error(const string& msg) const
59c8d63c
BS
142{
143 if ( Syslog )
144 syslog(LOG_ERR,msg.c_str());
145 else
27baf279 146 cerr << msg << endl;
59c8d63c
BS
147}
148
149
150/**
8bca3c5d
BS
151 * Setter for member Loglevel.
152 * @param _loglevel Value to set Loglevel to.
153 */
e8787e2e
BS
154void Logger::set_external_log_only_once( const bool _external_log_only_once )
155{
156 ExternalLogOnlyOnce = _external_log_only_once;
157}
158
159
160/**
161 * Setter for member Loglevel.
162 * @param _loglevel Value to set Loglevel to.
163 */
8bca3c5d
BS
164void Logger::set_loglevel(const int _loglevel)
165{
166 Loglevel = _loglevel;
167}
168
169
170/**
171 * Getter for member Loglevel.
172 * @return Loglevel.
173 */
b38684ce 174int Logger::get_loglevel() const
8bca3c5d
BS
175{
176 return Loglevel;
177}
178
179
180/**
181 * Setter for member Syslog.
182 * @param _syslog Wether to log through syslog or not.
183 */
184void Logger::set_syslog(const bool _syslog)
185{
186 Syslog = _syslog;
187}
188
189
190/**
191 * Getter for member Syslog.
192 * @return True if logging through syslog is enabled, false otherwise.
193 */
b38684ce 194bool Logger::get_syslog() const
8bca3c5d
BS
195{
196 return Syslog;
197}
198
199
200/**
201 * Initialize the logging facility.
202 */
e8787e2e 203void Logger::set_log_facility(const int _loglevel, const bool _syslog, const string& _external_error_log, const int _external_error_level, const bool _external_log_only_once )
8bca3c5d
BS
204{
205 Loglevel = _loglevel;
206 Syslog = _syslog;
cbbdeb6c
BS
207 ExternalWarningLog = _external_error_log;
208 ExternalWarningLevel = _external_error_level;
e8787e2e 209 ExternalLogOnlyOnce = _external_log_only_once;
8bca3c5d
BS
210
211 if ( Syslog )
212 openlog("bpdyndnsd",LOG_PID,LOG_DAEMON);
213}
214
215
216/**
254bbf53
BS
217 * Prints out the usage to the command line.
218 */
b38684ce 219void Logger::print_usage(const Options_descriptionPtr opt_desc) const
254bbf53 220{
cbbdeb6c 221 int level = 0;
d77313ea 222 if ( level <= Loglevel )
59c8d63c
BS
223 {
224 ostringstream msg;
225 msg << "Usage: bpdyndnsd [Command line options]" << "\n" << endl;
226 msg << *opt_desc << endl;
ce70569b 227 log_notice(msg.str());
59c8d63c 228 }
254bbf53
BS
229}
230
231
232/**
233 * Prints out the programm name and the given version string on stdout.
234 * @param version Version string.
235 */
b38684ce 236void Logger::print_version() const
254bbf53 237{
cbbdeb6c 238 int level = 0;
d77313ea 239 if ( level <= Loglevel )
59c8d63c
BS
240 {
241 ostringstream msg;
242 msg << "Bullet proof dynamic dns daemon.\nbpdyndnsd " << VERSION << "." << REVISION << "." << RELEASE << endl;
ce70569b 243 log_notice(msg.str());
59c8d63c 244 }
254bbf53
BS
245}
246
247
248/**
249 * Prints out the successful parsing of the command line options.
250 */
b38684ce 251void Logger::print_cmd_parsed() const
254bbf53 252{
cbbdeb6c 253 int level = 1;
d77313ea 254 if ( level <= Loglevel )
59c8d63c 255 {
ce70569b 256 log_notice("Command line options successfully parsed.");
59c8d63c 257 }
254bbf53
BS
258}
259
260
b38684ce 261void Logger::print_conf_files_parsed() const
667c672c 262{
cbbdeb6c 263 int level = 1;
d77313ea 264 if ( level <= Loglevel )
667c672c 265 {
ce70569b 266 log_notice("Config files successfully parsed.");
667c672c
BS
267 }
268}
269
270
254bbf53
BS
271/**
272 * Prints out the successful parsing of the config files.
daf2ea82 273 * @param config_path The specified config path.
254bbf53 274 */
b38684ce 275void Logger::print_conf_loaded(const string& config_path) const
254bbf53 276{
cbbdeb6c 277 int level = 1;
d77313ea 278 if ( level <= Loglevel )
59c8d63c
BS
279 {
280 ostringstream msg;
281 msg << "Config files successfully loaded in: " << config_path << endl;
ce70569b 282 log_notice(msg.str());
59c8d63c 283 }
254bbf53
BS
284}
285
286
287/**
daf2ea82
BS
288 * Prints out the unsuccessful parsing of the config files.
289 * @param config_path The specified config path.
254bbf53 290 */
b38684ce 291void Logger::print_conf_not_loaded(const string& config_path) const
254bbf53 292{
cbbdeb6c 293 int level = 0;
d77313ea 294 if ( level <= Loglevel )
59c8d63c
BS
295 {
296 ostringstream msg;
297 msg << "Config files couldn't be loaded in: " << config_path << endl;
ce70569b 298 log_error(msg.str());
59c8d63c 299 }
254bbf53
BS
300}
301
302
303/**
5b3f3f54
TJ
304 * Prints out the unsuccessful parsing of the config files.
305 */
306void Logger::print_conf_reload_failed_exit() const
307{
308 int level = 0;
309 if ( level <= Loglevel )
310 log_error("Config files couldn't be reloaded. Exiting.");
311}
312
313
314/**
daf2ea82
BS
315 * A file could not be opened for reading.
316 * @param filename The filename.
254bbf53 317 */
b38684ce 318void Logger::print_error_opening_r(const string& filename) const
254bbf53 319{
cbbdeb6c 320 int level = 0;
d77313ea 321 if ( level <= Loglevel )
59c8d63c
BS
322 {
323 ostringstream msg;
324 msg << "Error opening file for reading: " << filename << endl;
ce70569b 325 log_error(msg.str());
59c8d63c 326 }
254bbf53
BS
327}
328
329
330/**
667c672c
BS
331 * A file could not be opened for writing.
332 * @param filename The filename.
333 */
b38684ce 334void Logger::print_error_opening_rw(const string& filename) const
667c672c 335{
cbbdeb6c 336 int level = 0;
d77313ea 337 if ( level <= Loglevel )
667c672c
BS
338 {
339 ostringstream msg;
340 msg << "Error opening file for writing: " << filename << endl;
ce70569b 341 log_error(msg.str());
667c672c
BS
342 }
343}
344
345
346/**
254bbf53
BS
347 * Desctructor of specified class was called.
348 * @param _class Name of the class.
349 */
b38684ce 350void Logger::print_destructor_call(const string& _class) const
254bbf53 351{
cbbdeb6c 352 int level = 1;
d77313ea 353 if ( level <= Loglevel )
59c8d63c
BS
354 {
355 ostringstream msg;
356 msg << "Destructor call: " << _class << endl;
ce70569b 357 log_notice(msg.str());
59c8d63c 358 }
254bbf53
BS
359}
360
361
362/**
363 * Constructor of specified class was called.
364 * @param _class Name of the class.
365 */
b38684ce 366void Logger::print_constructor_call(const string& _class) const
254bbf53 367{
cbbdeb6c 368 int level = 1;
d77313ea 369 if ( level <= Loglevel )
59c8d63c
BS
370 {
371 ostringstream msg;
372 msg << "Constructor call: " << _class << endl;
ce70569b 373 log_notice(msg.str());
59c8d63c 374 }
254bbf53
BS
375}
376
377
378/**
379 * Update method for specified service was called.
daf2ea82 380 * @param service The service for which is the update running.
254bbf53 381 */
b38684ce 382void Logger::print_update_service(const string& service) const
254bbf53 383{
cbbdeb6c 384 int level = 0;
d77313ea 385 if ( level <= Loglevel )
59c8d63c
BS
386 {
387 ostringstream msg;
388 msg << "Running update for service: " << service << endl;
ce70569b 389 log_notice(msg.str());
59c8d63c 390 }
254bbf53
BS
391}
392
393
daf2ea82
BS
394/**
395 * An unknown option on the command line was detected.
396 * @param unknown_option The unknown option.
397 */
b38684ce 398void Logger::print_unknown_cmd_option(const string& unknown_option) const
254bbf53 399{
cbbdeb6c 400 int level = 0;
d77313ea 401 if ( level <= Loglevel )
59c8d63c
BS
402 {
403 ostringstream msg;
404 msg << "Unknown option on command line detected: " << unknown_option << endl;
ce70569b 405 log_error(msg.str());
59c8d63c 406 }
254bbf53
BS
407}
408
409
daf2ea82
BS
410/**
411 * An unknown protocol was specified.
412 * @param protocol The unknown protocol.
413 */
b38684ce 414void Logger::print_unknown_protocol(const string& protocol) const
254bbf53 415{
cbbdeb6c 416 int level = 0;
d77313ea 417 if ( level <= Loglevel )
59c8d63c
BS
418 {
419 ostringstream msg;
420 msg << "Unknown protocol defined: " << protocol << endl;
ce70569b 421 log_error(msg.str());
59c8d63c 422 }
254bbf53
BS
423}
424
425
daf2ea82
BS
426/**
427 * Loading a service config file.
428 * @param filename The service config file.
429 */
b38684ce 430void Logger::print_load_service_conf(const string& filename) const
254bbf53 431{
cbbdeb6c 432 int level = 1;
d77313ea 433 if ( level <= Loglevel )
59c8d63c
BS
434 {
435 ostringstream msg;
436 msg << "Loading service config file: " << filename << endl;
ce70569b 437 log_notice(msg.str());
59c8d63c 438 }
254bbf53
BS
439}
440
441
daf2ea82
BS
442/**
443 * Loading the main config file.
444 * @param filename The main config file.
445 */
b38684ce 446void Logger::print_load_main_conf(const string& filename) const
254bbf53 447{
cbbdeb6c 448 int level = 1;
d77313ea 449 if ( level <= Loglevel )
59c8d63c
BS
450 {
451 ostringstream msg;
452 msg << "Loading main config file: " << filename << endl;
ce70569b 453 log_notice(msg.str());
59c8d63c 454 }
254bbf53
BS
455}
456
457
daf2ea82
BS
458/**
459 * There is an unknown option in a service config file.
460 * @param unknown_option The unknown option.
461 */
8a00a649 462void Logger::print_unknown_service_conf_option(const string& service_conf_file, const string& unknown_option) const
254bbf53 463{
cbbdeb6c 464 int level = 0;
d77313ea 465 if ( level <= Loglevel )
59c8d63c
BS
466 {
467 ostringstream msg;
8a00a649 468 msg << "Unknown option in service config file detected: " << service_conf_file << " Unknown option: " << unknown_option << endl;
ce70569b 469 log_error(msg.str());
59c8d63c 470 }
254bbf53
BS
471}
472
473
daf2ea82
BS
474/**
475 * There is an unknown option in the main config file.
476 * @param unknown_option The unknown option.
477 */
b38684ce 478void Logger::print_unknown_main_conf_option(const string& unknown_option) const
254bbf53 479{
cbbdeb6c 480 int level = 0;
d77313ea 481 if ( level <= Loglevel )
59c8d63c
BS
482 {
483 ostringstream msg;
484 msg << "Unknown option in main config file detected: " << unknown_option << endl;
ce70569b 485 log_error(msg.str());
59c8d63c 486 }
254bbf53
BS
487}
488
489
daf2ea82
BS
490/**
491 * The defined config path doesn't exist or is not a directory.
492 * @param config_path The defined config path.
493 */
b38684ce 494void Logger::print_error_config_path(const string& config_path) const
254bbf53 495{
cbbdeb6c 496 int level = 0;
d77313ea 497 if ( level <= Loglevel )
59c8d63c
BS
498 {
499 ostringstream msg;
500 msg << "Config path doesn't exists or is not a diretory: " << config_path << endl;
ce70569b 501 log_error(msg.str());
59c8d63c 502 }
254bbf53
BS
503}
504
505
daf2ea82
BS
506/**
507 * There is a missing command line option to initialize a service object.
508 */
b38684ce 509void Logger::print_missing_cmd_service_option() const
254bbf53 510{
cbbdeb6c 511 int level = 0;
d77313ea 512 if ( level <= Loglevel )
59c8d63c 513 {
ce70569b 514 log_error("Missing option to initialize service. Protocol, host, login and password must be specified.");
59c8d63c 515 }
254bbf53 516}
388f4ab0
BS
517
518
c5675c01 519/**
8a00a649
BS
520 * Missing option in service config file.
521 * @param service_conf_file Service config file
522 */
523void Logger::print_missing_service_conf_option(const string& service_conf_file) const
524{
cbbdeb6c 525 int level = 0;
d77313ea 526 if ( level <= Loglevel )
8a00a649
BS
527 {
528 ostringstream msg;
529 msg << "Missing option in service config file " << service_conf_file << " to initialize service. Protocol, host, login and password must be specified." << endl;
ce70569b 530 log_error(msg.str());
8a00a649
BS
531 }
532}
533
534
535/**
c5675c01
BS
536 * Process running as daemon.
537 * @param pid The pid of the daemon.
538 */
b38684ce 539void Logger::print_runnig_as_daemon(const int pid) const
388f4ab0 540{
cbbdeb6c 541 int level = 1;
d77313ea 542 if ( level <= Loglevel )
59c8d63c
BS
543 {
544 ostringstream msg;
f3141675 545 msg << "Running as daemon: " << pid << endl;
ce70569b 546 log_notice(msg.str());
59c8d63c 547 }
388f4ab0
BS
548}
549
c5675c01
BS
550
551/**
552 * Prints out the daemon mode.
553 * @param daemon_mode The daemon mode.
554 */
b38684ce 555void Logger::print_daemon_mode(const bool daemon_mode) const
388f4ab0 556{
cbbdeb6c 557 int level = 1;
d77313ea 558 if ( level <= Loglevel )
59c8d63c
BS
559 {
560 string mode = "disabled";
561 if (daemon_mode == true)
562 mode = "enabled";
563 ostringstream msg;
564 msg << "Daemon mode is " << mode << "." << endl;
ce70569b 565 log_notice(msg.str());
59c8d63c 566 }
388f4ab0
BS
567}
568
569
c5675c01
BS
570/**
571 * There was an error while trying to fork.
572 */
b38684ce 573void Logger::print_error_fork() const
388f4ab0 574{
cbbdeb6c 575 int level = 0;
d77313ea 576 if ( level <= Loglevel )
59c8d63c 577 {
ce70569b 578 log_error("Error while trying to fork.");
59c8d63c 579 }
388f4ab0
BS
580}
581
582
c5675c01
BS
583/**
584 * A pid in the pidfile was found.
585 * @param pid The pid found in the pidfile.
586 */
b38684ce 587void Logger::print_pid_found(const int pid) const
388f4ab0 588{
cbbdeb6c 589 int level = 1;
d77313ea 590 if ( level <= Loglevel )
59c8d63c
BS
591 {
592 ostringstream msg;
593 msg << "Pidfile found: " << pid << ". Checking if process is still runnig..." << endl;
ce70569b 594 log_notice(msg.str());
59c8d63c 595 }
388f4ab0
BS
596}
597
598
c5675c01
BS
599/**
600 * Another process is already running.
601 * @param pid The pid of the other process.
602 */
b38684ce 603void Logger::print_process_already_running(const int pid) const
388f4ab0 604{
cbbdeb6c 605 int level = 0;
d77313ea 606 if ( level <= Loglevel )
59c8d63c
BS
607 {
608 ostringstream msg;
609 msg << "Another bpdyndnsd process with PID " << pid << " is already running!" << endl;
ce70569b 610 log_error(msg.str());
59c8d63c 611 }
388f4ab0 612}
c5675c01
BS
613
614
615/**
616 * SIGTERM caught.
617 */
b38684ce 618void Logger::print_caught_sigterm() const
c5675c01 619{
cbbdeb6c 620 int level = 0;
d77313ea 621 if ( level <= Loglevel )
59c8d63c 622 {
ce70569b 623 log_notice("Caught SIGTERM. Exiting...");
59c8d63c 624 }
c5675c01
BS
625}
626
627
628/**
629 * SIGUSR1 caught.
630 */
b38684ce 631void Logger::print_caught_siguser1() const
c5675c01 632{
cbbdeb6c 633 int level = 0;
d77313ea 634 if ( level <= Loglevel )
59c8d63c 635 {
ce70569b 636 log_notice("Caught SIGUSR1. Switching to offline mode...");
59c8d63c 637 }
c5675c01
BS
638}
639
640
641/**
642 * SIGHUP caught.
643 */
b38684ce 644void Logger::print_caught_sighup() const
c5675c01 645{
60657d55 646 int level = 0;
d77313ea 647 if ( level <= Loglevel )
59c8d63c 648 {
64ff14c3
BS
649 log_notice("Caught SIGHUP. Reloading config...");
650 }
651}
652
653
654/**
655 * SIGUSR2 caught.
656 */
657void Logger::print_caught_siguser2() const
658{
60657d55 659 int level = 0;
64ff14c3
BS
660 if ( level <= Loglevel )
661 {
662 log_notice("Caught SIGUSR2. Switching to online mode...");
663 }
664}
665
666
667/**
668 * SIGRTMIN caught.
669 */
670void Logger::print_caught_sigrtmin() const
671{
60657d55 672 int level = 0;
64ff14c3
BS
673 if ( level <= Loglevel )
674 {
675 log_notice("Caught SIGRTMIN. Switching to online mode with webcheck enabled...");
59c8d63c 676 }
c5675c01 677}
8bca3c5d
BS
678
679
680/**
3f39b968
TJ
681 * SIGRTMAX caught.
682 */
683void Logger::print_caught_sigrtmax(int new_loglevel) const
684{
685 int level = 0;
686 if ( level <= Loglevel )
687 {
688 ostringstream msg;
689 msg << "Caught SIGRTMAX. Increasing log level to " << new_loglevel << endl;
690 log_error(msg.str());
691 }
692}
693
694
695/**
8bca3c5d
BS
696 * Error while setting signal handler.
697 */
b38684ce 698void Logger::print_error_setting_signal(const string& signal) const
8bca3c5d 699{
cbbdeb6c 700 int level = 0;
d77313ea 701 if ( level <= Loglevel )
59c8d63c
BS
702 {
703 ostringstream msg;
667c672c 704 msg << "Error while setting signal handler for: " << signal << endl;
ce70569b 705 log_error(msg.str());
59c8d63c 706 }
8bca3c5d
BS
707}
708
709
710/**
711 * Error while setting signal handler.
712 */
b38684ce 713void Logger::print_init_log_facility() const
8bca3c5d 714{
cbbdeb6c 715 int level = 1;
d77313ea 716 if ( level <= Loglevel )
59c8d63c
BS
717 {
718 ostringstream msg;
4475e30a 719 msg << "Initialized logging facility." << " Loglevel: " << Loglevel << " Syslog: " << Syslog << " ExternalLogOnlyOnce: " << ExternalLogOnlyOnce << endl;
ce70569b 720 log_notice(msg.str());
59c8d63c 721 }
8bca3c5d
BS
722}
723
27baf279 724
8bca3c5d
BS
725/**
726 * Be verbose. Currently we are in offline mode.
727 */
b38684ce 728void Logger::print_offline_mode() const
8bca3c5d 729{
60657d55 730 int level = 1;
d77313ea 731 if ( level <= Loglevel )
59c8d63c 732 {
ce70569b 733 log_notice("Offline mode...");
59c8d63c 734 }
8bca3c5d 735}
27baf279
BS
736
737
738/**
c7a2055a
TJ
739 * Dialup mode: Print how long we plan to delay the next network traffic
740 * @param sleep_until Timestamp until we plan to keep quiet
741 */
742void Logger::print_sleep_dialup_mode(time_t sleep_until) const
743{
744 int level = 1;
745 if ( level <= Loglevel )
746 {
747 ostringstream msg;
748 msg << "Skipped update in dialup mode (" << sleep_until-time(NULL) << " more seconds)" << endl;
749 log_error(msg.str());
750 }
751}
752
753/**
27baf279
BS
754 * Objects successfully serialized.
755 */
b38684ce 756void Logger::print_serialized_objects_success() const
27baf279 757{
cbbdeb6c 758 int level = 1;
d77313ea 759 if ( level <= Loglevel )
27baf279 760 {
ce70569b 761 log_notice("Serialized objects successfully.");
27baf279
BS
762 }
763}
764
765
766/**
767 * Objects successfully de-serialized.
768 */
b38684ce 769void Logger::print_deserialized_objects_success() const
27baf279 770{
cbbdeb6c 771 int level = 1;
d77313ea 772 if ( level <= Loglevel )
27baf279 773 {
ce70569b 774 log_notice("De-serialized objects successfully.");
27baf279
BS
775 }
776}
777
778
5d38cfe6
BS
779/**
780 * Prints out the content of a service object.
781 * @param message Message to be added on output first.
782 * @param protocol Service's protocol.
783 * @param hostname Service's hostname.
784 * @param login Service's login.
785 * @param password Service's password.
786 * @param actual_ip Service's actual_ip.
787 * @param lastupdated Service's lastupdated.
788 */
62df5f33 789void Logger::print_service_object(const string& message, const string& protocol, const string& hostname, const string& login, const string& password, const int update_interval, const int max_updates_within_interval, const int dns_cache_ttl , const string& actual_ip, list<time_t> lastupdated) const
27baf279 790{
cbbdeb6c 791 int level = 1;
d77313ea 792 if ( level <= Loglevel )
27baf279
BS
793 {
794 ostringstream msg;
795 msg << message << endl;
3c0cd271
BS
796 msg << "\t" << "Protocol: " << protocol << endl;
797 msg << "\t" << "Hostname: " << hostname << endl;
798 msg << "\t" << "Login: " << login << endl;
799 msg << "\t" << "Password: " << password << endl;
800 msg << "\t" << "Update Interval: " << update_interval << endl;
801 msg << "\t" << "Max Updates: " << max_updates_within_interval << endl;
d5a516ba 802 msg << "\t" << "DNS Cache TTL: " << dns_cache_ttl << endl;
3c0cd271 803 msg << "\t" << "Actual_IP: " << actual_ip << endl;
62df5f33 804 BOOST_FOREACH( time_t update_time, lastupdated)
3c0cd271
BS
805 {
806 msg << "\t" << "Lastupdated: " << update_time << endl;
807 }
ce70569b 808 log_notice(msg.str());
27baf279
BS
809 }
810}
5d38cfe6
BS
811
812
813/**
814 * Caught exception while serialize.
815 * @param exception Exception message.
816 */
ce70569b 817void Logger::print_exception_serialize(const string& errMsg) const
5d38cfe6 818{
cbbdeb6c 819 int level = 0;
d77313ea 820 if ( level <= Loglevel )
667c672c
BS
821 {
822 ostringstream msg;
ce70569b
BS
823 msg << "Error while trying to serialize Serviceholder object: " << errMsg << endl;
824 log_error(msg.str());
667c672c
BS
825 }
826}
827
828
829/**
830 * Caught exception while de-serialize.
831 * @param exception Exception message.
832 */
ce70569b 833void Logger::print_exception_deserialize(const string& errMsg) const
667c672c 834{
cbbdeb6c 835 int level = 0;
d77313ea 836 if ( level <= Loglevel )
667c672c
BS
837 {
838 ostringstream msg;
ce70569b
BS
839 msg << "Error while trying to de-serialize Serviceholder object: " << errMsg << endl;
840 log_error(msg.str());
667c672c
BS
841 }
842}
843
844
845/**
846 * Child couldn't be killed by parent.
847 * @param pid Pid of the child.
848 */
b38684ce 849void Logger::print_error_kill_child(const int pid) const
667c672c 850{
cbbdeb6c 851 int level = 0;
d77313ea 852 if ( level <= Loglevel )
667c672c
BS
853 {
854 ostringstream msg;
855 msg << "Could not kill child process with PID: " << pid << endl;
ce70569b 856 log_error(msg.str());
667c672c
BS
857 }
858}
859
860
0665b239
BS
861/**
862 * Child was killed by parent because of error.
863 * @param pid The pid (child) killed.
864 */
b38684ce 865void Logger::print_child_killed(const int pid) const
584b9407 866{
cbbdeb6c 867 int level = 1;
d77313ea 868 if ( level <= Loglevel )
584b9407
BS
869 {
870 ostringstream msg;
871 msg << "Killed child process with PID: " << pid << endl;
ce70569b 872 log_notice(msg.str());
584b9407
BS
873 }
874}
875
876
667c672c
BS
877/**
878 * There is no object file.
879 * @param object_file The object file.
880 */
e8787e2e 881void Logger::print_no_object_file(const string& object_file)
667c672c 882{
cbbdeb6c
BS
883 int level = 1;
884 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
667c672c
BS
885 {
886 ostringstream msg;
887 msg << "There is no object file: " << object_file << ". Continue without recovering state from old services!" << endl;
cbbdeb6c 888 log_warning(msg.str(),level);
667c672c 889 }
5d38cfe6 890}
0665b239
BS
891
892
893/**
894 * Prints out the given hostname
895 * @param hostname Hostname as string.
896 */
e8d4a6f8 897void Logger::print_hostname(const string& hostname) const
0665b239 898{
cbbdeb6c 899 int level = 1;
d77313ea 900 if ( level <= Loglevel )
0665b239
BS
901 {
902 ostringstream msg;
903 msg << "Detected following hostname of localhost: " << hostname << endl;
ce70569b 904 log_notice(msg.str());
0665b239
BS
905 }
906}
907
908
909/**
019dc0d9 910 * Prints out the detected own ipv4 address
0665b239
BS
911 * @param ip_addr String representation of the detected ip.
912 */
c3dea5dc 913void Logger::print_own_ipv4(const string& ip_addr_v4, const string& hostname) const
0665b239 914{
cbbdeb6c 915 int level = 1;
d77313ea 916 if ( level <= Loglevel )
0665b239
BS
917 {
918 ostringstream msg;
c3dea5dc 919 msg << "Detected following IPv4-Address of host: " << hostname << " : " << ip_addr_v4 << endl;
ce70569b 920 log_notice(msg.str());
019dc0d9
BS
921 }
922}
923
924
925/**
926 * Prints out the detected own ipv5 address
927 * @param ip_addr String representation of the detected ip.
928 */
c3dea5dc 929void Logger::print_own_ipv6(const string& ip_addr_v6, const string& hostname) const
019dc0d9 930{
cbbdeb6c 931 int level = 1;
d77313ea 932 if ( level <= Loglevel )
019dc0d9
BS
933 {
934 ostringstream msg;
c3dea5dc 935 msg << "Detected following IPv6-Address of host: " << hostname << " : " << ip_addr_v6 << endl;
ce70569b 936 log_notice(msg.str());
0665b239
BS
937 }
938}
939
940
941/**
942 * Exception while trying to resolve hostname to ip.
943 * @param exception The exception caught.
944 * @param hostname The hostname.
945 */
ce70569b 946void Logger::print_error_hostname_to_ip(const string& errMsg, const string& hostname) const
0665b239 947{
a03fb896 948 int level = 0;
d77313ea 949 if ( level <= Loglevel )
0665b239
BS
950 {
951 ostringstream msg;
ce70569b 952 msg << "Could not resolve the hostname: " << hostname << " to an IP-Address: " << errMsg << endl;
e8787e2e 953 log_error(msg.str());
0665b239
BS
954 }
955}
68c6b4af
BS
956
957
1c0908b5
BS
958/**
959 * The update of the given service was successful.
960 * @param service The service.
961 */
962void Logger::print_update_service_successful(const string& service) const
68c6b4af 963{
cbbdeb6c 964 int level = 0;
d77313ea 965 if ( level <= Loglevel )
68c6b4af
BS
966 {
967 ostringstream msg;
968 msg << "Updated service successful: " << service << endl;
ce70569b 969 log_notice(msg.str());
1c0908b5
BS
970 }
971}
972
973
974/**
975 * No ip could be determined through webcheck
976 */
e8787e2e 977void Logger::print_webcheck_no_ip()
1c0908b5 978{
cbbdeb6c
BS
979 int level = 0;
980 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1c0908b5 981 {
20cc3887 982 log_warning("IP-Address of this host could not be determined through any configured webcheck url.",level);
1c0908b5
BS
983 }
984}
985
986
987/**
988 * Connection problem while trying to get ip through webcheck url
989 * @param curl_err_buff Curl error message
990 * @param url the url
991 */
e8787e2e 992void Logger::print_webcheck_url_connection_problem(const char * curl_err_buff, const string& url)
1c0908b5 993{
cbbdeb6c
BS
994 int level = 1;
995 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1c0908b5
BS
996 {
997 ostringstream msg;
998 msg << "There was a problem while trying to connect to following URL: " << url << " CURL error: " << curl_err_buff << endl;
cbbdeb6c 999 log_warning(msg.str(),level);
1c0908b5
BS
1000 }
1001}
1002
1003
1004/**
1005 * Prints out curl error.
1006 * @param curl_err_buff Curl error message.
1007 * @param url URL
1008 */
1009void Logger::print_webcheck_error(const char * curl_err_buff, const string& url) const
1010{
cbbdeb6c 1011 int level = 0;
d77313ea 1012 if ( level <= Loglevel )
1c0908b5
BS
1013 {
1014 ostringstream msg;
1015 msg << "There was an error while trying to connect to following URL: " << url << " CURL error: " << curl_err_buff << endl;
ce70569b 1016 log_error(msg.str());
68c6b4af
BS
1017 }
1018}
1c0908b5
BS
1019
1020
1021/**
1022 * Prints out the received data through curl.
1023 * @param curl_data Data string
1024 */
1025void Logger::print_received_curl_data(const string& curl_data) const
1026{
cbbdeb6c 1027 int level = 1;
d77313ea 1028 if ( level <= Loglevel )
1c0908b5
BS
1029 {
1030 ostringstream msg;
1031 msg << "Received CURL data: " << curl_data << endl;
ce70569b 1032 log_notice(msg.str());
1c0908b5
BS
1033 }
1034}
1035
1036
1037/**
1038 * IP was foudn through regex
1039 * @param ip The IP found.
1040 */
1041void Logger::print_regex_found_ip(const string& ip) const
1042{
cbbdeb6c 1043 int level = 1;
d77313ea 1044 if ( level <= Loglevel )
1c0908b5
BS
1045 {
1046 ostringstream msg;
1047 msg << "Found IP-Address via regex: " << ip << endl;
ce70569b 1048 log_notice(msg.str());
1c0908b5
BS
1049 }
1050}
1051
1052
1053/**
1054 * No IP was found through regex.
1055 * @param data The data string which should contain a valid IP.s
1056 */
e8787e2e 1057void Logger::print_regex_ip_not_found(const string& data)
1c0908b5 1058{
efbde536 1059 int level = 1;
cbbdeb6c 1060 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1c0908b5
BS
1061 {
1062 ostringstream msg;
1063 msg << "Could not extract an IP-Address via regex from following data:\n" << data << endl;
cbbdeb6c 1064 log_warning(msg.str(),level);
1c0908b5
BS
1065 }
1066}
3c0cd271
BS
1067
1068
1069/**
1070 * Detected multiple occurrences of the same option.
1071 * @param message Error message.
1072 */
1073void Logger::print_multiple_cmd_option(const string& message) const
1074{
cbbdeb6c 1075 int level = 0;
d77313ea 1076 if ( level <= Loglevel )
3c0cd271
BS
1077 {
1078 ostringstream msg;
1079 msg << "The same option is only allowed once: " << message << endl;
ce70569b 1080 log_error(msg.str());
3c0cd271
BS
1081 }
1082}
1083
1084
1085/**
1086 * An update would exceed the update interval. Prints out a warning message.
1087 * @param current_time Current time.
1088 * @param old_time Time of update #MaxUpdatesWithinInterval ago.
1089 * @param MaxUpdatesWithinInterval Number of allowed updates in one update interval.
1090 * @param service The service which exceeds update interval.
1091 */
e8787e2e 1092void Logger::print_update_not_allowed(const time_t current_time, const time_t old_time, const int MaxUpdatesWithinInterval, const string& service)
3c0cd271 1093{
efbde536 1094 int level = 1;
cbbdeb6c 1095 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
3c0cd271
BS
1096 {
1097 ostringstream msg;
1098 msg << "Update not allowed for service: " << service << ". Too many updates within max update interval. Current time: " << current_time << ". Update time before " << MaxUpdatesWithinInterval << " updates: " << old_time << endl;
cbbdeb6c 1099 log_warning(msg.str(),level);
3c0cd271
BS
1100 }
1101}
1102
1103
1104/**
1105 * Failure while running update for service.
1106 * @param service Services' name.
1107 */
e8787e2e 1108void Logger::print_update_service_failure(const string& service)
3c0cd271 1109{
cbbdeb6c
BS
1110 int level = 0;
1111 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
3c0cd271
BS
1112 {
1113 ostringstream msg;
1114 msg << "Could not update service: " << service << endl;
cbbdeb6c 1115 log_warning(msg.str(),level);
3c0cd271
BS
1116 }
1117}
e304c27b 1118
e38d7604
TJ
1119/**
1120 * Start message
1121 */
1122void Logger::print_started() const
1123{
1124 int level = 0;
1125 if ( level <= Loglevel )
1126 {
1127 log_notice("Started");
1128 }
1129}
1130
e304c27b
BS
1131
1132/**
1133 * Starting shutdown
1134 */
1135void Logger::print_starting_shutdown() const
1136{
cbbdeb6c 1137 int level = 0;
d77313ea 1138 if ( level <= Loglevel )
e304c27b 1139 {
ce70569b 1140 log_notice("Shutting down ...");
e304c27b
BS
1141 }
1142}
1143
1144
1145/**
1146 * Shutdown complete
1147 */
1148void Logger::print_shutdown_succeeded() const
1149{
cbbdeb6c 1150 int level = 0;
d77313ea 1151 if ( level <= Loglevel )
e304c27b 1152 {
ce70569b 1153 log_notice("Shutting down complete ...");
e304c27b
BS
1154 }
1155}
1156
1157
1158/**
1159 * Shutdown parent succeeded
1160 */
1161void Logger::print_shutdown_parent_succeeded() const
1162{
cbbdeb6c 1163 int level = 0;
d77313ea 1164 if ( level <= Loglevel )
e304c27b 1165 {
ce70569b 1166 log_notice("Shutting down parent process completed ...");
e304c27b
BS
1167 }
1168}
1169
1170
1171/**
1172 * Starting shutdown parent
1173 */
1174void Logger::print_starting_shutdown_parent() const
1175{
cbbdeb6c 1176 int level = 0;
d77313ea 1177 if ( level <= Loglevel )
e304c27b 1178 {
ce70569b 1179 log_notice("Shutting down parent process ...");
e304c27b
BS
1180 }
1181}
0541cd71
BS
1182
1183
1184/**
1185 * DNS cache record timeout
1186 * @param hostname Hostname
1187 * @param lastupdated Lastupdated
1188 * @param dns_cache_ttl DNS cache TTL
1189 * @param current_time Current time
1190 */
8a00a649 1191void Logger::print_recheck_dns_entry(const string& hostname, const int lastupdated, const int dns_cache_ttl, const int current_time) const
0541cd71 1192{
cbbdeb6c 1193 int level = 1;
d77313ea 1194 if ( level <= Loglevel )
0541cd71
BS
1195 {
1196 ostringstream msg;
d5a516ba 1197 msg << "DNS cache record for host <" << hostname << "> expired or host will be updated for the first time: Lastupdated: " << lastupdated << " DNS cache ttl: " << dns_cache_ttl << " Current time: " << current_time << " Checking current DNS cache status." << endl;
ce70569b 1198 log_notice(msg.str());
0541cd71
BS
1199 }
1200}
1201
1202
1203/**
8a00a649
BS
1204 * Missing proxy option on command line.
1205 */
1206void Logger::print_missing_cmd_proxy_option() const
1207{
cbbdeb6c 1208 int level = 0;
d77313ea 1209 if ( level <= Loglevel )
8a00a649 1210 {
ce70569b 1211 log_error("Missing option to initialize proxy. http_proxy and http_proxy_port must be specified.");
8a00a649
BS
1212 }
1213}
1214
1215
1216/**
1217 * Multiple option in service config file.
1218 * @param service_conf_file Service config file
1219 * @param message Multiple option text
1220 */
1221void Logger::print_multiple_service_conf_option(const string& service_conf_file, const string& message) const
1222{
cbbdeb6c 1223 int level = 0;
d77313ea 1224 if ( level <= Loglevel )
8a00a649
BS
1225 {
1226 ostringstream msg;
1227 msg << "Multiple occurrences of the same option in service config file detected: " << service_conf_file << " " << message << endl;
ce70569b 1228 log_error(msg.str());
8a00a649
BS
1229 }
1230}
1231
1232
1233/**
1234 * Multiple option in main config file.
1235 * @param service_conf_file Service config file
1236 * @param message Multiple option text
1237 */
1238void Logger::print_multiple_main_conf_option(const string& main_conf_file, const string& message) const
1239{
cbbdeb6c 1240 int level = 0;
d77313ea 1241 if ( level <= Loglevel )
8a00a649
BS
1242 {
1243 ostringstream msg;
1244 msg << "Multiple occurrences of the same option in main config file detected: " << main_conf_file << " " << message << endl;
ce70569b 1245 log_error(msg.str());
8a00a649
BS
1246 }
1247}
1248
1249
1250/**
1251 * Missing proxy option in main config file.
2dd2db3e 1252 * @param main_conf_filename The concerning config file.
8a00a649
BS
1253 */
1254void Logger::print_missing_conf_proxy_option(const string& main_conf_filename) const
1255{
cbbdeb6c 1256 int level = 0;
d77313ea 1257 if ( level <= Loglevel )
8a00a649
BS
1258 {
1259 ostringstream msg;
1260 msg << "Missing option to initialize proxy in main config file: " << main_conf_filename << " http_proxy and http_proxy_port must be specified." << endl;
ce70569b 1261 log_error(msg.str());
8a00a649
BS
1262 }
1263}
2dd2db3e
BS
1264
1265
1266/**
1267 * There is no domain part in the given hostname
1268 * @param hostname The hostname with no domain part in it.
1269 */
d5a516ba 1270void Logger::print_no_domain_part(const string& hostname) const
2dd2db3e
BS
1271{
1272 int level = 0;
d77313ea 1273 if ( level <= Loglevel )
2dd2db3e
BS
1274 {
1275 ostringstream msg;
1276 msg << "There is no domain part in the given hostname: " << hostname << endl;
ce70569b 1277 log_notice(msg.str());
2dd2db3e
BS
1278 }
1279}
d5a516ba
BS
1280
1281
1282/**
31af6a2e
BS
1283 * Service is not initialized properly.
1284 * @param service The service.
1285 */
e8787e2e 1286void Logger::print_httphelper_not_initialized() const
31af6a2e
BS
1287{
1288 int level = 0;
1289 if ( level <= Loglevel )
1290 {
e8787e2e 1291 log_error("HTTP-Helper is not initialized properly.");
31af6a2e
BS
1292 }
1293}
1294
1295
1296/**
1297 * An curl error occured.
1298 * @param msg The error message
1299 * @param curl_err_code The resulting curl error code
1300 */
c730deea 1301void Logger::print_curl_error_init(const std::string& err_msg, const CURLcode curl_err_code) const
31af6a2e
BS
1302{
1303 string curl_err = "";
1304
1305 if ( curl_err_code == CURLE_FAILED_INIT )
1306 curl_err = "CURLE_FAILED_INIT";
1307 else
1308 curl_err = "UNKNOWN";
1309
1310 int level = 0;
e8787e2e 1311 if ( (level <= Loglevel) )
31af6a2e
BS
1312 {
1313 ostringstream msg;
557b6f56 1314 msg << "Curl error: " << err_msg << " Curl error code: " << curl_err_code << " " << curl_err << endl; /*lint !e641 */
ce70569b 1315 log_error(msg.str());
31af6a2e
BS
1316 }
1317}
1318
1319
1320/**
d5a516ba
BS
1321 * An curl error occured.
1322 * @param url The url requested by the curl operation
1323 * @param curl_err_code The resulting curl error code
1324 */
31af6a2e 1325void Logger::print_curl_error(const string& url, const CURLcode curl_err_code) const
d5a516ba
BS
1326{
1327 string curl_err = "";
1328
31af6a2e 1329 if ( curl_err_code == CURLE_URL_MALFORMAT )
d5a516ba 1330 curl_err = "CURLE_URL_MALFORMAT";
31af6a2e 1331 else if ( curl_err_code == CURLE_COULDNT_RESOLVE_HOST )
d5a516ba 1332 curl_err = "CURLE_COULDNT_RESOLVE_HOST";
31af6a2e 1333 else if ( curl_err_code == CURLE_COULDNT_CONNECT )
d5a516ba
BS
1334 curl_err = "CURLE_COULDNT_CONNECT";
1335 else
1336 curl_err = "UNKNOWN";
1337
1338 int level = 0;
e8787e2e 1339 if ( (level <= Loglevel) )
d5a516ba
BS
1340 {
1341 ostringstream msg;
557b6f56 1342 msg << "Curl error while requesting following url: " << url << " Curl error code: " << curl_err_code << " " << curl_err << endl; /*lint !e641 */
e8787e2e 1343 log_error(msg.str());
d5a516ba
BS
1344 }
1345}
1346
1347
1348/**
1349 * An curl error occured.
1350 * @param url The url requested by the curl operation
1351 * @param curl_err_code The resulting curl error code
1352 * @param curl_err_buff The curl error buffer
1353 */
c730deea 1354void Logger::print_curl_error(const string& url, const CURLcode curl_err_code, const char * curl_err_buff) const
d5a516ba
BS
1355{
1356 string curl_err = "";
1357
c730deea 1358 if ( curl_err_code == CURLE_URL_MALFORMAT )
d5a516ba 1359 curl_err = "CURLE_URL_MALFORMAT";
c730deea 1360 else if ( curl_err_code == CURLE_COULDNT_RESOLVE_HOST )
d5a516ba 1361 curl_err = "CURLE_COULDNT_RESOLVE_HOST";
c730deea 1362 else if ( curl_err_code == CURLE_COULDNT_CONNECT )
d5a516ba
BS
1363 curl_err = "CURLE_COULDNT_CONNECT";
1364 else
1365 curl_err = "UNKNOWN";
1366
1367 int level = 0;
e8787e2e 1368 if ( (level <= Loglevel) )
d5a516ba
BS
1369 {
1370 ostringstream msg;
557b6f56 1371 msg << "Curl error while requesting following url: " << url << " Curl error code: " << curl_err_code << " " << curl_err << " " << curl_err_buff << endl; /*lint !e641 */
e8787e2e 1372 log_error(msg.str());
d5a516ba
BS
1373 }
1374}
1375
1376
1377/**
1378 * Prints out the data received by curl operation
43f4565e 1379 * @param CurlWritedataBuff
d5a516ba
BS
1380 */
1381void Logger::print_curl_data(const string& curl_writedata_buff) const
1382{
1383 int level = 1;
d77313ea 1384 if ( level <= Loglevel )
d5a516ba
BS
1385 {
1386 ostringstream msg;
b6228761 1387 msg << "Data received by curl: " << curl_writedata_buff << endl;
ce70569b 1388 log_notice(msg.str());
d5a516ba
BS
1389 }
1390}
1391
1392
1393/**
a03fb896
BS
1394 * Not authorized to perform requested update operation
1395 * @param service The requested service.
d5a516ba
BS
1396 * @param username Username
1397 * @param password Password
1398 */
a03fb896 1399void Logger::print_service_not_authorized(const string& service, const string& username, const string& password) const
d5a516ba
BS
1400{
1401 int level = 0;
e8787e2e 1402 if ( level <= Loglevel )
d5a516ba
BS
1403 {
1404 ostringstream msg;
a03fb896 1405 msg << "Not authorized to perform update operation on service: " << service << " Please check username and password: " << username << ":" << password << endl;
e8787e2e 1406 log_notice(msg.str());
d5a516ba
BS
1407 }
1408}
1409
1410
1411/**
1412 * Prints out the http status code
1413 * @param url Url
1414 * @param output HTTP status code
1415 */
1af7c124 1416void Logger::print_http_status_code(const string& url, const long http_code) const
d5a516ba
BS
1417{
1418 int level = 1;
d77313ea 1419 if ( level <= Loglevel )
d5a516ba
BS
1420 {
1421 ostringstream msg;
1422 msg << "Requested URL: " << url << " Received HTTP status code: " << http_code << endl;
ce70569b 1423 log_notice(msg.str());
d5a516ba
BS
1424 }
1425}
b6228761
BS
1426
1427
1428/**
1429 * Generic failure while trying to update service
1430 * @param url The requested URL
1431 * @param curl_data The received curl_data from the server
1432 */
1433void Logger::print_update_failure(const string& url, const string& curl_data) const
1434{
1435 int level = 0;
e8787e2e 1436 if ( (level <= Loglevel) )
b6228761
BS
1437 {
1438 ostringstream msg;
1439 msg << "Problem while trying to updating service. Requested URL: " << url << " Error Code from Server: " << curl_data << endl;
e8787e2e 1440 log_error(msg.str());
b6228761
BS
1441 }
1442}
1a00eac6
BS
1443
1444
1445/**
b17fd691
BS
1446 * Generic failure while trying to update service
1447 * @param url The requested URL
1448 * @param http_status_code The received http status code
1449 */
1450void Logger::print_update_failure(const string& url, const long http_status_code) const
1451{
1452 int level = 0;
e8787e2e 1453 if ( level <= Loglevel )
b17fd691
BS
1454 {
1455 ostringstream msg;
1456 msg << "Problem while trying to updating service. Requested URL: " << url << " Error Code from Server: " << http_status_code << endl;
e8787e2e 1457 log_error(msg.str());
b17fd691
BS
1458 }
1459}
1460
1461/**
1a00eac6 1462 * Hostname is invalid, contains no or only one domain part.
43f4565e 1463 * @param hostname The full qualified host name.
1a00eac6 1464 */
e8787e2e 1465void Logger::print_invalid_hostname(const string& hostname)
1a00eac6
BS
1466{
1467 int level = 0;
1468 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1469 {
1470 ostringstream msg;
1471 msg << "The configured hostname: " << hostname << " is invalid. Please add the corresponding domain part." << endl;
1472 log_warning(msg.str(),level);
1473 }
1474}
4ef36a12
BS
1475
1476
1477/**
1478 * An IP in a private range was detected
1479 * @param ip The private IP
1480 */
e8787e2e 1481void Logger::print_ip_is_local(const string& ip)
4ef36a12 1482{
60657d55 1483 int level = 1;
4ef36a12
BS
1484 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1485 {
1486 ostringstream msg;
1487 msg << "The detected IP is within a private IP range: " << ip << endl;
1488 log_warning(msg.str(),level);
1489 }
1490}
1491
1492
1493/**
1494 * Regex is matching in string
1495 * @param regex The regex pattern
1496 * @param matching_string The string
1497 */
a78b44b5 1498void Logger::print_regex_match(const string& regex, const string& matching_string) const
4ef36a12
BS
1499{
1500 int level = 1;
d77313ea 1501 if ( level <= Loglevel )
4ef36a12
BS
1502 {
1503 ostringstream msg;
1504 msg << "Regex: " << regex << " is matching in: " << matching_string << endl;
ce70569b 1505 log_notice(msg.str());
4ef36a12
BS
1506 }
1507}
a78b44b5
BS
1508
1509
1510/**
1511 * Regex is not matching
1512 * @param regex Regex
1513 * @param not_matching_string String
1514 */
e8787e2e 1515void Logger::print_no_regex_match(const string& regex, const string& not_matching_string)
a78b44b5
BS
1516{
1517 int level = 1;
1518 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1519 {
1520 ostringstream msg;
1521 msg << "Regex: " << regex << " is not matching in: " << not_matching_string << endl;
1522 log_warning(msg.str(),level);
1523 }
1524}
1525
1526
1527/**
1528 * Could not parse gnudip initial reply.
1529 * @param curl_data The data received from gnudip server which should contain salt, time and sign.
1530 */
1531void Logger::print_could_not_parse_received_data(const string& curl_data) const
1532{
1533 int level = 0;
e8787e2e 1534 if ( (level <= Loglevel) )
a78b44b5
BS
1535 {
1536 ostringstream msg;
1537 msg << "Could not parse salt, time and sign from initial gnudip server reply: " << curl_data << endl;
e8787e2e 1538 log_error(msg.str());
a78b44b5
BS
1539 }
1540}
1541
1542
1543/**
1544 * Gnudip salt, time and sign could not be got from map
1545 */
1546void Logger::print_could_not_get_initial_gnudip_data() const
1547{
1548 int level = 0;
e8787e2e 1549 if ( (level <= Loglevel) )
a78b44b5 1550 {
e8787e2e 1551 log_error("Could not get salt, time and sign from map.");
a78b44b5
BS
1552 }
1553}
1554
1555
a2f5be94
BS
1556
1557/**
1558 * Gnudip protocol requires explicit declaration of a servername.
1559 */
e8787e2e 1560void Logger::print_gnudip_requires_servername()
a78b44b5
BS
1561{
1562 int level = 0;
1563 if ( (level <= Loglevel) || ((level <= ExternalWarningLevel) && (!ExternalWarningLog.empty())) )
1564 {
20cc3887 1565 log_warning("Gnudip requires explicit definition of servername via config!",level);
a78b44b5
BS
1566 }
1567}
a2f5be94
BS
1568
1569
1570/**
1571 * An exception occured while computing the md5 sum.
1572 * @param what The exception occured.
1573 */
c1b8cb79 1574void Logger::print_exception_md5_sum(const string& what) const
a2f5be94
BS
1575{
1576 int level = 0;
d77313ea 1577 if ( level <= Loglevel )
a2f5be94
BS
1578 {
1579 ostringstream msg;
1580 msg << "An exception occured while computing a md5 sum: " << what << endl;
ce70569b 1581 log_error(msg.str());
a2f5be94
BS
1582 }
1583}
a03fb896
BS
1584
1585
1586/**
1587 * An network exception occured.
1588 * @param what The exception occured.
1589 */
c1b8cb79 1590void Logger::print_network_error(const string& what) const
a03fb896
BS
1591{
1592 int level = 0;
d77313ea 1593 if ( level <= Loglevel )
a03fb896
BS
1594 {
1595 ostringstream msg;
1596 msg << "An netowrk exception occured: " << what << endl;
ce70569b 1597 log_error(msg.str());
a03fb896
BS
1598 }
1599}
1600
1601
1602/**
1603 * An undefined protocol error occured.
1604 * @param protocol The protocol
1605 * @param error The error
1606 */
c1b8cb79 1607void Logger::print_undefined_protocol_error(const string& protocol, const string& error) const
a03fb896
BS
1608{
1609 int level = 0;
d77313ea 1610 if ( level <= Loglevel )
a03fb896
BS
1611 {
1612 ostringstream msg;
1613 msg << "An undefined protocol error occured. Protocol: " << protocol << " Error: " << error << endl;
ce70569b 1614 log_error(msg.str());
a03fb896
BS
1615 }
1616}
d77313ea
BS
1617
1618/**
1619 * Error while trying to log through external program.
1620 * @param external_prog The external program called.
1621 */
c1b8cb79 1622void Logger::print_error_external_logging(const string& external_prog) const
d77313ea
BS
1623{
1624 int level = 0;
1625 if ( level <= Loglevel )
1626 {
1627 ostringstream msg;
1628 msg << "Error while trying to log through external program: " << external_prog << endl;
ce70569b 1629 log_notice(msg.str());
d77313ea
BS
1630 }
1631}
c1b8cb79
BS
1632
1633
1634/**
1635 * Error while parsing config file.
1636 * @param error Error occured.
1637 * @param config_file Config file.
1638 */
1639void Logger::print_error_parsing_config_file(const string& filename, const string& error) const
1640{
1641 int level = 0;
1642 if ( level <= Loglevel )
1643 {
1644 ostringstream msg;
1645 msg << "Error while parsing config file: " << filename << " Error: " << error << endl;
ce70569b 1646 log_notice(msg.str());
c1b8cb79
BS
1647 }
1648}
1649
1650
1651/**
1652 * Error while parsing cmd option
1653 * @param error Error
1654 */
1655void Logger::print_error_parsing_cmd(const string& error) const
1656{
1657 int level = 0;
1658 if ( level <= Loglevel )
1659 {
1660 ostringstream msg;
1661 msg << "Error while parsing cmd options: " << error << endl;
ce70569b 1662 log_error(msg.str());
c1b8cb79
BS
1663 }
1664}
2b0f7c11
BS
1665
1666
1667/**
1668 * The webcheck interval was exceeded, so webcheck not allowed.
1669 * @param last_webcheck Time of last webcheck.
1670 * @param webcheck_interval Webcheck interval time.
1671 * @param current_time Current system time.
1672 */
c730deea 1673void Logger::print_webcheck_exceed_interval( const time_t last_webcheck, const int webcheck_interval, const time_t current_time ) const
2b0f7c11 1674{
60657d55 1675 int level = 1;
2b0f7c11
BS
1676 if ( level <= Loglevel )
1677 {
1678 ostringstream msg;
1679 msg << "Exceeding webcheck interval: LastWebcheck " << last_webcheck << " + WebcheckInterval(sec) " << webcheck_interval << " >= CurrentTime " << current_time << endl;
ce70569b 1680 log_notice(msg.str());
2b0f7c11
BS
1681 }
1682}
1af7c124
BS
1683
1684
1685/**
1686 * Checking if hosts needs update.
1687 * @param hostname Hostname
1688 * @param current_time Current time
1689 * @param lastupdated Last updated
1690 */
c730deea 1691void Logger::print_check_service_update(const string& hostname, const time_t current_time, const time_t lastupdated) const
1af7c124
BS
1692{
1693 int level = 1;
1694 if ( level <= Loglevel )
1695 {
1696 ostringstream msg;
1697 msg << "Checking if host: " << hostname << " needs update. Current time: " << current_time << " Last updated: " << lastupdated << endl;
ce70569b 1698 log_notice(msg.str());
1af7c124
BS
1699 }
1700}
1701
1702
1703/**
1704 * Cached DNS entry
1705 * @param hostname Hostname
1706 * @param ip_dns_recheck DNS recheck IP
1707 * @param ip_last_update IP set in last update
1708 * @param ip_host Hosts' IP
1709 */
1710void Logger::print_cached_dns_entry(const string& hostname, const string& ip_dns_recheck, const string& ip_last_update, const string& ip_host) const
1711{
1712 int level = 1;
1713 if ( level <= Loglevel )
1714 {
1715 ostringstream msg;
1716 msg << "Cached DNS record for host <" << hostname << "> : " << ip_dns_recheck << " Last updated IP: " << ip_last_update << " Hosts IP: " << ip_host << endl;
ce70569b 1717 log_notice(msg.str());
1af7c124
BS
1718 }
1719}
1720
1721
1722/**
1af7c124
BS
1723 * Updating service
1724 * @param hostname Hostname
1725 * @param ip_dns_recheck Cached DNS entry
1726 * @param ip_last_update IP set in last update
1727 * @param ip_host Hosts IP
1728 * @param lastupdated Lastupdated
1729 */
08a5a621 1730void Logger::print_update_service(const string& hostname, const string& ip_dns_recheck, const string& ip_last_update, const string& ip_host, const time_t lastupdated) const{
1af7c124
BS
1731 int level = 1;
1732 if ( level <= Loglevel )
1733 {
1734 ostringstream msg;
1735 msg << "Updating service. Hostname: " << hostname << " DNS-Record: " << ip_dns_recheck << " IP set in last update: " << ip_last_update << " Lastupdated: " << lastupdated << " Hosts IP: " << ip_host << endl;
ce70569b 1736 log_notice(msg.str());
1af7c124
BS
1737 }
1738}
1739
1740
1741/**
1742 * TTL expired
1743 * @param hostname Hostname
1744 * @param ip_dns_recheck Cached DNS entry
1745 * @param ip_last_update IP set in last update
1746 * @param ip_host Hosts IP
1747 * @param lastupdated Last updated
1748 * @param dns_cache_ttl DNS cache ttl
1749 * @param current_time Current time
1750 */
08a5a621 1751void Logger::print_update_service_ttl_expired(const string& hostname, const string& ip_dns_recheck, const string& ip_last_update, const string& ip_host, const time_t lastupdated, const int dns_cache_ttl, const time_t current_time) const
1af7c124
BS
1752{
1753 int level = 1;
1754 if ( level <= Loglevel )
1755 {
1756 ostringstream msg;
1757 msg << "TTL for service expired and still pointing to old IP. Hostname: " << hostname << " DNS-Record: " << ip_dns_recheck << " IP set in last update: " << ip_last_update << " Lastupdated: " << lastupdated << "DNS Cache TTL: " << dns_cache_ttl << " Current Time: " << current_time << " Hosts IP: " << ip_host << endl;
ce70569b 1758 log_notice(msg.str());
1af7c124
BS
1759 }
1760}
1761
1762
1763/**
1764 * TTL expired
d55e13a6 1765 * @param override_log_level Override log level with zero if true
1af7c124
BS
1766 * @param hostname Hostname
1767 * @param ip_dns_recheck Cached DNS entry
1768 * @param ip_last_update IP set in last update
1769 * @param ip_host Hosts IP
1770 * @param lastupdated Last updated
1771 * @param dns_cache_ttl DNS cache ttl
1772 * @param current_time Current time
1773 */
d55e13a6 1774void Logger::print_update_service_ttl_not_expired(bool override_log_level, const string& hostname, const string& ip_dns_recheck, const string& ip_last_update, const string& ip_host, const time_t lastupdated, const int dns_cache_ttl, const time_t current_time) const
1af7c124
BS
1775{
1776 int level = 1;
d55e13a6
TJ
1777
1778 if (override_log_level)
1779 level = 0;
1780
1af7c124
BS
1781 if ( level <= Loglevel )
1782 {
1783 ostringstream msg;
1784 msg << "Waiting for DNS cache TTL to expire. Hostname: " << hostname << " DNS-Record: " << ip_dns_recheck << " IP set in last update: " << ip_last_update << " Lastupdated: " << lastupdated << "DNS Cache TTL: " << dns_cache_ttl << " Current Time: " << current_time << " Hosts IP: " << ip_host << endl;
ce70569b 1785 log_notice(msg.str());
1af7c124
BS
1786 }
1787}
1788
1789
1790/**
1791 * No update needed
d55e13a6 1792 * @param override_log_level Override log level with zero if true
1af7c124
BS
1793 * @param hostname Hostname
1794 * @param ip_dns_recheck Cached DNS entry
1795 * @param ip_last_update IP set in last update
1796 * @param ip_host Hosts IP
1797 * @param lastupdated Last updated
1798 */
d55e13a6 1799void Logger::print_no_update_needed(bool override_log_level, const string& hostname, const string& ip_dns_recheck, const string& ip_last_update, const string& ip_host, const time_t lastupdated) const
1af7c124
BS
1800{
1801 int level = 1;
d55e13a6
TJ
1802
1803 if (override_log_level)
1804 level = 0;
1805
1af7c124
BS
1806 if ( level <= Loglevel )
1807 {
1808 ostringstream msg;
1809 msg << "No update needed for host: " << hostname << " Cached DNS record: " << ip_dns_recheck << " IP set in last update: " << ip_last_update << " Hosts IP: " << ip_host << " Last updated: " << lastupdated << endl;
ce70569b 1810 log_notice(msg.str());
1af7c124
BS
1811 }
1812}
1d2e2f56
BS
1813
1814
1815/**
1816 * Error while trying to get local wan interface IP address through getifaddrs.
1817 * @param error The system call which raised the error.
1818 * @param error The error set by getifaddrs.
1819 */
1820void Logger::print_error_getting_local_wan_ip(const std::string& system_call, const std::string& error) const
1821{
1822 int level = 0;
1823 if ( level <= Loglevel )
1824 {
1825 ostringstream msg;
1826 msg << "Error while trying to get local wan interface IP address through '" << system_call << "': " << error << endl;
ce70569b 1827 log_error(msg.str());
1d2e2f56
BS
1828 }
1829}
1830
1831
1832/**
1833 * Could not get IP address of local wan interface.
f3141675
TJ
1834 * @param override_log_level Override log level with zero if true
1835 */
1836void Logger::print_no_wan_ip(bool override_log_level) const
1837{
1838 int level = 1;
1839
1840 if (override_log_level)
1841 level = 0;
1842
1843 if ( level <= Loglevel )
1844 {
1845 ostringstream msg;
1846 msg << "Could not get IP address of local wan interface. Will retry later." << endl;
1847 log_error(msg.str());
1848 }
1849}
1850
62956d9a
TJ
1851/**
1852 * Print extenral WAN IP
1853 * @param override_log_level Override log level with zero if true
1854 * @param ip External WAN IP
1855 */
1856void Logger::print_external_wan_ip(bool override_log_level, const std::string &ip) const
1857{
1858 int level = 1;
1859
1860 if (override_log_level)
1861 level = 0;
1862
1863 if ( level <= Loglevel )
1864 {
1865 ostringstream msg;
1866 msg << "Determined WAN interface IP: " << ip << endl;
1867 log_error(msg.str());
1868 }
1869}
f3141675
TJ
1870
1871/**
1872 * Could not resolve current IP for DNS name
1873 * @param override_log_level Override log level with zero if true
1d2e2f56 1874 */
f3141675 1875void Logger::print_dns_lookup_failed(bool override_log_level, const std::string &hostname) const
1d2e2f56 1876{
60657d55 1877 int level = 1;
f3141675
TJ
1878
1879 if (override_log_level)
1880 level = 0;
1881
1d2e2f56
BS
1882 if ( level <= Loglevel )
1883 {
1884 ostringstream msg;
f3141675 1885 msg << "Could not resolve IP address for host " << hostname << ". Will retry later." << endl;
ce70569b 1886 log_error(msg.str());
1d2e2f56
BS
1887 }
1888}
60657d55
BS
1889
1890
1891/**
1892 * Invalid service config was detected.
1893 */
1894void Logger::print_invalid_service_config() const
1895{
1896 int level = 0;
1897 if ( level <= Loglevel )
1898 {
1899 log_error("Ignoring invalid service. Please check.\n");
1900 }
1901}
4475e30a
BS
1902
1903
1904/**
1905 * Print simple message.
1906 */
1907void Logger::print_msg( const string& msg ) const
1908{
1909 int level = 0;
1910 if ( level <= Loglevel )
1911 {
1912 log_error(msg);
1913 }
1914}