From 49e0aef3cb74b96ee710d5c705aa48512d81cddc Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 6 Dec 2010 16:57:12 +1100 Subject: s4-dns: support Samba command line options to the dlz_bind.so module this allows setting of Samba command line options in named.conf --- source4/dns_server/dlz_bind9.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'source4/dns_server/dlz_bind9.c') diff --git a/source4/dns_server/dlz_bind9.c b/source4/dns_server/dlz_bind9.c index 0eb90b78c5..5249ca3d7c 100644 --- a/source4/dns_server/dlz_bind9.c +++ b/source4/dns_server/dlz_bind9.c @@ -26,6 +26,7 @@ #include "dsdb/common/util.h" #include "auth/session.h" #include "gen_ndr/ndr_dnsp.h" +#include "lib/cmdline/popt_common.h" #include "dlz_bind9.h" struct dlz_bind9_data { @@ -221,6 +222,35 @@ static isc_result_t b9_putnamedrr(struct dlz_bind9_data *state, } +/* + parse options + */ +static isc_result_t parse_options(struct dlz_bind9_data *state, + unsigned int argc, char *argv[]) +{ + int opt; + poptContext pc; + struct poptOption long_options[] = { + POPT_COMMON_SAMBA + { NULL } + }; + + pc = poptGetContext("dlz_bind9", argc, (const char **)argv, long_options, + POPT_CONTEXT_KEEP_FIRST); + + while ((opt = poptGetNextOpt(pc)) != -1) { + switch (opt) { + default: + state->log(ISC_LOG_ERROR, "Invalid option %s: %s", + poptBadOption(pc, 0), poptStrerror(opt)); + return ISC_R_FAILURE; + } + } + + return ISC_R_SUCCESS; +} + + /* called to initialise the driver */ @@ -251,6 +281,11 @@ _PUBLIC_ isc_result_t dlz_create(const char *dlzname, } va_end(ap); + result = parse_options(state, argc, argv); + if (result != ISC_R_SUCCESS) { + goto failed; + } + state->lp = loadparm_init_global(true); if (state->lp == NULL) { result = ISC_R_NOMEMORY; -- cgit