2007-01-03 05:42:32 -05:00
|
|
|
/*
|
|
|
|
|
* daemon/unbound.c - main program for unbound DNS resolver daemon.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2007, NLnet Labs. All rights reserved.
|
|
|
|
|
*
|
2007-01-25 07:39:51 -05:00
|
|
|
* This software is open source.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* Neither the name of the NLNET LABS nor the names of its contributors may
|
|
|
|
|
* be used to endorse or promote products derived from this software without
|
|
|
|
|
* specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
|
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2007-01-03 05:42:32 -05:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2007-01-03 09:55:21 -05:00
|
|
|
/**
|
|
|
|
|
* \file
|
|
|
|
|
*
|
|
|
|
|
* Main program to start the DNS resolver daemon.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-01-03 05:42:32 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
#include "util/log.h"
|
2007-01-30 11:36:46 -05:00
|
|
|
#include "daemon/worker.h"
|
2007-01-25 11:08:52 -05:00
|
|
|
|
|
|
|
|
/** buffer size for network connections */
|
|
|
|
|
#define BUFSZ 65552
|
2007-01-25 07:39:51 -05:00
|
|
|
|
2007-01-25 07:50:40 -05:00
|
|
|
/** print usage. */
|
2007-01-25 07:39:51 -05:00
|
|
|
static void usage()
|
|
|
|
|
{
|
|
|
|
|
printf("usage: unbound [options]\n");
|
2007-02-06 11:26:19 -05:00
|
|
|
printf(" start unbound daemon DNS resolver.\n");
|
2007-01-25 11:08:52 -05:00
|
|
|
printf("-h this help\n");
|
|
|
|
|
printf("-p port the port to listen on\n");
|
|
|
|
|
printf("-v verbose (multiple times increase verbosity)\n");
|
2007-02-02 07:52:40 -05:00
|
|
|
printf("-f ip set forwarder address\n");
|
|
|
|
|
printf("-z port set forwarder port\n");
|
2007-01-25 07:39:51 -05:00
|
|
|
printf("Version %s\n", PACKAGE_VERSION);
|
2007-02-06 11:26:19 -05:00
|
|
|
printf("BSD licensed, see LICENSE in source package for details.\n");
|
|
|
|
|
printf("Report bugs to %s\n", PACKAGE_BUGREPORT);
|
2007-01-25 07:39:51 -05:00
|
|
|
}
|
|
|
|
|
|
2007-01-25 07:50:40 -05:00
|
|
|
/** getopt global, in case header files fail to declare it. */
|
2007-01-25 07:39:51 -05:00
|
|
|
extern int optind;
|
2007-01-25 07:50:40 -05:00
|
|
|
/** getopt global, in case header files fail to declare it. */
|
2007-01-25 07:39:51 -05:00
|
|
|
extern char* optarg;
|
2007-01-03 05:42:32 -05:00
|
|
|
|
2007-01-03 09:55:21 -05:00
|
|
|
/**
|
|
|
|
|
* main program. Set options given commandline arguments.
|
|
|
|
|
* @param argc: number of commandline arguments.
|
|
|
|
|
* @param argv: array of commandline arguments.
|
2007-02-06 11:26:19 -05:00
|
|
|
* @return: exit status of the program.
|
2007-01-03 09:55:21 -05:00
|
|
|
*/
|
2007-01-03 05:42:32 -05:00
|
|
|
int
|
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
|
{
|
2007-01-30 11:36:46 -05:00
|
|
|
struct worker* worker = NULL;
|
2007-01-25 11:08:52 -05:00
|
|
|
int do_ip4=1, do_ip6=1, do_udp=1, do_tcp=1;
|
2007-01-31 10:38:44 -05:00
|
|
|
size_t numports=3;
|
|
|
|
|
int baseport=10000;
|
2007-01-25 11:08:52 -05:00
|
|
|
const char* port = UNBOUND_DNS_PORT;
|
2007-01-25 07:39:51 -05:00
|
|
|
int c;
|
2007-01-31 10:38:44 -05:00
|
|
|
const char* fwd = "127.0.0.1";
|
|
|
|
|
const char* fwdport = UNBOUND_DNS_PORT;
|
2007-01-25 07:39:51 -05:00
|
|
|
|
|
|
|
|
log_init();
|
2007-02-06 09:00:52 -05:00
|
|
|
log_info("Start of %s.", PACKAGE_STRING);
|
2007-01-25 07:39:51 -05:00
|
|
|
/* parse the options */
|
2007-02-02 07:52:40 -05:00
|
|
|
while( (c=getopt(argc, argv, "f:hvp:z:")) != -1) {
|
2007-01-25 07:39:51 -05:00
|
|
|
switch(c) {
|
2007-02-02 07:52:40 -05:00
|
|
|
case 'f':
|
|
|
|
|
fwd = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'z':
|
|
|
|
|
fwdport = optarg;
|
|
|
|
|
break;
|
2007-01-25 11:08:52 -05:00
|
|
|
case 'p':
|
|
|
|
|
if(!atoi(optarg))
|
|
|
|
|
fatal_exit("invalid port '%s'", optarg);
|
|
|
|
|
port = optarg;
|
2007-01-31 10:38:44 -05:00
|
|
|
baseport = atoi(optarg)+2000;
|
2007-01-25 11:08:52 -05:00
|
|
|
verbose(VERB_ALGO, "using port: %s", port);
|
|
|
|
|
break;
|
2007-01-25 07:39:51 -05:00
|
|
|
case 'v':
|
|
|
|
|
verbosity ++;
|
|
|
|
|
break;
|
|
|
|
|
case '?':
|
|
|
|
|
case 'h':
|
|
|
|
|
default:
|
|
|
|
|
usage();
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
argc -= optind;
|
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
|
|
if(argc != 0) {
|
|
|
|
|
usage();
|
2007-01-03 05:42:32 -05:00
|
|
|
return 1;
|
|
|
|
|
}
|
2007-01-25 07:39:51 -05:00
|
|
|
|
2007-01-25 11:08:52 -05:00
|
|
|
/* setup */
|
2007-01-31 10:38:44 -05:00
|
|
|
worker = worker_init(port, do_ip4, do_ip6, do_udp, do_tcp, BUFSZ,
|
|
|
|
|
numports, baseport);
|
2007-01-30 11:36:46 -05:00
|
|
|
if(!worker) {
|
|
|
|
|
fatal_exit("could not initialize");
|
2007-01-26 02:55:16 -05:00
|
|
|
}
|
2007-01-31 10:38:44 -05:00
|
|
|
if(!worker_set_fwd(worker, fwd, fwdport)) {
|
2007-02-02 04:57:53 -05:00
|
|
|
worker_delete(worker);
|
2007-02-02 07:52:40 -05:00
|
|
|
fatal_exit("could not set forwarder address");
|
2007-01-31 10:38:44 -05:00
|
|
|
}
|
2007-01-26 04:44:13 -05:00
|
|
|
|
|
|
|
|
/* drop user priviliges and chroot if needed */
|
2007-02-15 10:50:22 -05:00
|
|
|
log_info("start of service (%s).", PACKAGE_STRING);
|
2007-01-30 11:36:46 -05:00
|
|
|
worker_work(worker);
|
2007-01-25 07:39:51 -05:00
|
|
|
|
2007-01-25 11:08:52 -05:00
|
|
|
/* cleanup */
|
|
|
|
|
verbose(VERB_ALGO, "Exit cleanup.");
|
2007-01-30 11:36:46 -05:00
|
|
|
worker_delete(worker);
|
2007-01-03 05:42:32 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|