123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- // Copyright (C) 2011-2012, 2014 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <config.h>
- #include <dhcp4/ctrl_dhcp4_srv.h>
- #include <dhcp4/dhcp4_log.h>
- #include <log/logger_support.h>
- #include <log/logger_manager.h>
- #include <boost/lexical_cast.hpp>
- #include <iostream>
- using namespace isc::dhcp;
- using namespace std;
- /// This file contains entry point (main() function) for standard DHCPv4 server
- /// component for BIND10 framework. It parses command-line arguments and
- /// instantiates ControlledDhcpv4Srv class that is responsible for establishing
- /// connection with msgq (receiving commands and configuration) and also
- /// creating Dhcpv4 server object as well.
- ///
- /// For detailed explanation or relations between main(), ControlledDhcpv4Srv,
- /// Dhcpv4Srv and other classes, see \ref dhcpv4Session.
- namespace {
- const char* const DHCP4_NAME = "kea-dhcp4";
- const char* const DHCP4_LOGGER_NAME = "kea";
- void
- usage() {
- cerr << "Usage: " << DHCP4_NAME << " [-v] [-p number] [-c file]" << endl;
- cerr << " -v: verbose output" << endl;
- cerr << " -p number: specify non-standard port number 1-65535 "
- << "(useful for testing only)" << endl;
- cerr << " -c file: specify configuration file" << endl;
- exit(EXIT_FAILURE);
- }
- } // end of anonymous namespace
- int
- main(int argc, char* argv[]) {
- int ch;
- int port_number = DHCP4_SERVER_PORT; // The default. any other values are
- // useful for testing only.
- bool verbose_mode = false; // Should server be verbose?
- // The standard config file
- std::string config_file("");
- while ((ch = getopt(argc, argv, "vp:c:")) != -1) {
- switch (ch) {
- case 'v':
- verbose_mode = true;
- break;
- case 'p':
- try {
- port_number = boost::lexical_cast<int>(optarg);
- } catch (const boost::bad_lexical_cast &) {
- cerr << "Failed to parse port number: [" << optarg
- << "], 1-65535 allowed." << endl;
- usage();
- }
- if (port_number <= 0 || port_number > 65535) {
- cerr << "Failed to parse port number: [" << optarg
- << "], 1-65535 allowed." << endl;
- usage();
- }
- break;
- case 'c': // config file
- config_file = optarg;
- break;
- default:
- usage();
- }
- }
- // Check for extraneous parameters.
- if (argc > optind) {
- usage();
- }
- int ret = EXIT_SUCCESS;
- try {
- // Initialize logging. If verbose, we'll use maximum verbosity.
- // If standalone is enabled, do not buffer initial log messages
- Daemon::loggerInit(DHCP4_LOGGER_NAME, verbose_mode);
- LOG_DEBUG(dhcp4_logger, DBG_DHCP4_START, DHCP4_START_INFO)
- .arg(getpid()).arg(port_number).arg(verbose_mode ? "yes" : "no");
- LOG_INFO(dhcp4_logger, DHCP4_STARTING);
- // Create the server instance.
- ControlledDhcpv4Srv server(port_number);
- try {
- // Initialize the server.
- server.init(config_file);
- } catch (const std::exception& ex) {
- LOG_ERROR(dhcp4_logger, DHCP4_INIT_FAIL).arg(ex.what());
- // We should not continue if were told to configure (either read
- // config file or establish Bundy control session).
- isc::log::LoggerManager log_manager;
- log_manager.process();
- cerr << "Failed to initialize server: " << ex.what() << endl;
- return (EXIT_FAILURE);
- }
- // And run the main loop of the server.
- server.run();
- LOG_INFO(dhcp4_logger, DHCP4_SHUTDOWN);
- } catch (const std::exception& ex) {
- LOG_FATAL(dhcp4_logger, DHCP4_SERVER_FAILED).arg(ex.what());
- ret = EXIT_FAILURE;
- }
- return (ret);
- }
|