Home | History | Annotate | Line # | Download | only in dns
master.c revision 1.12.2.1
      1  1.12.2.1  perseant /*	$NetBSD: master.c,v 1.12.2.1 2025/08/02 05:53:27 perseant Exp $	*/
      2       1.1  christos 
      3       1.1  christos /*
      4       1.1  christos  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      5       1.1  christos  *
      6       1.9  christos  * SPDX-License-Identifier: MPL-2.0
      7       1.9  christos  *
      8       1.1  christos  * This Source Code Form is subject to the terms of the Mozilla Public
      9       1.1  christos  * License, v. 2.0. If a copy of the MPL was not distributed with this
     10       1.7  christos  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
     11       1.1  christos  *
     12       1.1  christos  * See the COPYRIGHT file distributed with this work for additional
     13       1.1  christos  * information regarding copyright ownership.
     14       1.1  christos  */
     15       1.1  christos 
     16       1.1  christos /*! \file */
     17       1.1  christos 
     18       1.3  christos #include <inttypes.h>
     19       1.3  christos #include <stdbool.h>
     20       1.3  christos 
     21  1.12.2.1  perseant #include <isc/async.h>
     22       1.5  christos #include <isc/atomic.h>
     23       1.1  christos #include <isc/lex.h>
     24  1.12.2.1  perseant #include <isc/loop.h>
     25       1.1  christos #include <isc/magic.h>
     26       1.1  christos #include <isc/mem.h>
     27       1.5  christos #include <isc/refcount.h>
     28      1.12  christos #include <isc/result.h>
     29       1.1  christos #include <isc/serial.h>
     30       1.1  christos #include <isc/stdio.h>
     31       1.1  christos #include <isc/stdtime.h>
     32       1.1  christos #include <isc/string.h>
     33       1.1  christos #include <isc/util.h>
     34  1.12.2.1  perseant #include <isc/work.h>
     35       1.1  christos 
     36       1.1  christos #include <dns/callbacks.h>
     37       1.1  christos #include <dns/fixedname.h>
     38       1.1  christos #include <dns/master.h>
     39       1.1  christos #include <dns/name.h>
     40       1.1  christos #include <dns/rdata.h>
     41       1.1  christos #include <dns/rdataclass.h>
     42       1.1  christos #include <dns/rdatalist.h>
     43       1.1  christos #include <dns/rdataset.h>
     44       1.1  christos #include <dns/rdatastruct.h>
     45       1.1  christos #include <dns/rdatatype.h>
     46       1.1  christos #include <dns/soa.h>
     47       1.1  christos #include <dns/time.h>
     48       1.1  christos #include <dns/ttl.h>
     49       1.1  christos 
     50       1.1  christos /*!
     51       1.5  christos  * Grow the number of dns_rdatalist_t (#RDLSZ) and dns_rdata_t (#RDSZ)
     52       1.5  christos  * structures by these sizes when we need to.
     53       1.1  christos  *
     54       1.1  christos  */
     55       1.1  christos /*% RDLSZ reflects the number of different types with the same name expected. */
     56       1.1  christos #define RDLSZ 32
     57       1.1  christos /*%
     58       1.1  christos  * RDSZ reflects the number of rdata expected at a give name that can fit into
     59       1.1  christos  * 64k.
     60       1.1  christos  */
     61       1.1  christos #define RDSZ 512
     62       1.1  christos 
     63       1.5  christos #define NBUFS	  4
     64       1.1  christos #define MAXWIRESZ 255
     65       1.1  christos 
     66       1.1  christos /*%
     67       1.1  christos  * Target buffer size and minimum target size.
     68       1.1  christos  * MINTSIZ must be big enough to hold the largest rdata record.
     69       1.1  christos  * \brief
     70       1.1  christos  * TSIZ >= MINTSIZ
     71       1.1  christos  */
     72       1.5  christos #define TSIZ (128 * 1024)
     73       1.1  christos /*%
     74       1.1  christos  * max message size - header - root - type - class - ttl - rdlen
     75       1.1  christos  */
     76       1.1  christos #define MINTSIZ DNS_RDATA_MAXLENGTH
     77       1.1  christos /*%
     78       1.1  christos  * Size for tokens in the presentation format,
     79       1.1  christos  * The largest tokens are the base64 blocks in KEY and CERT records,
     80       1.1  christos  * Largest key allowed is about 1372 bytes but
     81       1.1  christos  * there is no fixed upper bound on CERT records.
     82       1.1  christos  * 2K is too small for some X.509s, 8K is overkill.
     83       1.1  christos  */
     84       1.5  christos #define TOKENSIZ (8 * 1024)
     85       1.1  christos 
     86       1.1  christos /*%
     87       1.1  christos  * Buffers sizes for $GENERATE.
     88       1.1  christos  */
     89       1.1  christos #define DNS_MASTER_LHS 2048
     90       1.1  christos #define DNS_MASTER_RHS MINTSIZ
     91       1.1  christos 
     92      1.12  christos #define CHECKNAMESFAIL(x) (((x) & DNS_MASTER_CHECKNAMESFAIL) != 0)
     93       1.1  christos 
     94       1.1  christos typedef ISC_LIST(dns_rdatalist_t) rdatalist_head_t;
     95       1.1  christos 
     96       1.1  christos typedef struct dns_incctx dns_incctx_t;
     97       1.1  christos 
     98       1.1  christos /*%
     99       1.1  christos  * Master file load state.
    100       1.1  christos  */
    101       1.1  christos 
    102       1.1  christos struct dns_loadctx {
    103       1.5  christos 	unsigned int magic;
    104       1.5  christos 	isc_mem_t *mctx;
    105       1.5  christos 	dns_masterformat_t format;
    106       1.5  christos 
    107       1.5  christos 	dns_rdatacallbacks_t *callbacks;
    108       1.5  christos 	dns_loaddonefunc_t done;
    109       1.5  christos 	void *done_arg;
    110       1.1  christos 
    111       1.1  christos 	/* Common methods */
    112       1.5  christos 	isc_result_t (*openfile)(dns_loadctx_t *lctx, const char *filename);
    113       1.5  christos 	isc_result_t (*load)(dns_loadctx_t *lctx);
    114       1.1  christos 
    115       1.1  christos 	/* Members used by all formats */
    116       1.5  christos 	uint32_t maxttl;
    117       1.1  christos 
    118       1.1  christos 	/* Members specific to the text format: */
    119       1.5  christos 	isc_lex_t *lex;
    120       1.5  christos 	bool keep_lex;
    121       1.5  christos 	unsigned int options;
    122       1.5  christos 	bool ttl_known;
    123       1.5  christos 	bool default_ttl_known;
    124       1.5  christos 	bool warn_1035;
    125       1.5  christos 	bool warn_tcr;
    126       1.5  christos 	bool warn_sigexpired;
    127       1.5  christos 	bool seen_include;
    128       1.5  christos 	uint32_t ttl;
    129       1.5  christos 	uint32_t default_ttl;
    130       1.5  christos 	dns_rdataclass_t zclass;
    131       1.5  christos 	dns_fixedname_t fixed_top;
    132       1.5  christos 	dns_name_t *top; /*%< top of zone */
    133       1.1  christos 
    134       1.1  christos 	/* Members specific to the raw format: */
    135       1.5  christos 	FILE *f;
    136       1.5  christos 	bool first;
    137       1.5  christos 	dns_masterrawheader_t header;
    138       1.1  christos 
    139       1.1  christos 	/* Which fixed buffers we are using? */
    140       1.5  christos 	isc_result_t result;
    141       1.5  christos 
    142       1.5  christos 	/* Atomic */
    143       1.5  christos 	isc_refcount_t references;
    144       1.5  christos 	atomic_bool canceled;
    145       1.5  christos 
    146       1.1  christos 	/* locked by lock */
    147       1.5  christos 	dns_incctx_t *inc;
    148       1.5  christos 	uint32_t resign;
    149       1.5  christos 	isc_stdtime_t now;
    150       1.1  christos 
    151       1.5  christos 	dns_masterincludecb_t include_cb;
    152       1.5  christos 	void *include_arg;
    153       1.1  christos };
    154       1.1  christos 
    155       1.1  christos struct dns_incctx {
    156       1.5  christos 	dns_incctx_t *parent;
    157       1.5  christos 	dns_name_t *origin;
    158       1.5  christos 	dns_name_t *current;
    159       1.5  christos 	dns_name_t *glue;
    160       1.5  christos 	dns_fixedname_t fixed[NBUFS]; /* working buffers */
    161       1.5  christos 	unsigned int in_use[NBUFS];   /* covert to bitmap? */
    162       1.5  christos 	int glue_in_use;
    163       1.5  christos 	int current_in_use;
    164       1.5  christos 	int origin_in_use;
    165       1.5  christos 	bool origin_changed;
    166       1.5  christos 	bool drop;
    167       1.5  christos 	unsigned int glue_line;
    168       1.5  christos 	unsigned int current_line;
    169       1.1  christos };
    170       1.1  christos 
    171       1.5  christos #define DNS_LCTX_MAGIC	     ISC_MAGIC('L', 'c', 't', 'x')
    172       1.1  christos #define DNS_LCTX_VALID(lctx) ISC_MAGIC_VALID(lctx, DNS_LCTX_MAGIC)
    173       1.1  christos 
    174       1.1  christos #define DNS_AS_STR(t) ((t).value.as_textregion.base)
    175       1.1  christos 
    176       1.1  christos static isc_result_t
    177       1.1  christos openfile_text(dns_loadctx_t *lctx, const char *master_file);
    178       1.1  christos 
    179       1.1  christos static isc_result_t
    180       1.1  christos load_text(dns_loadctx_t *lctx);
    181       1.1  christos 
    182       1.1  christos static isc_result_t
    183       1.1  christos openfile_raw(dns_loadctx_t *lctx, const char *master_file);
    184       1.1  christos 
    185       1.1  christos static isc_result_t
    186       1.1  christos load_raw(dns_loadctx_t *lctx);
    187       1.1  christos 
    188       1.1  christos static isc_result_t
    189       1.1  christos pushfile(const char *master_file, dns_name_t *origin, dns_loadctx_t *lctx);
    190       1.1  christos 
    191       1.1  christos static isc_result_t
    192       1.1  christos commit(dns_rdatacallbacks_t *, dns_loadctx_t *, rdatalist_head_t *,
    193       1.1  christos        dns_name_t *, const char *, unsigned int);
    194       1.1  christos 
    195       1.3  christos static bool
    196       1.1  christos is_glue(rdatalist_head_t *, dns_name_t *);
    197       1.1  christos 
    198       1.1  christos static dns_rdatalist_t *
    199       1.1  christos grow_rdatalist(int, dns_rdatalist_t *, int, rdatalist_head_t *,
    200       1.5  christos 	       rdatalist_head_t *, isc_mem_t *mctx);
    201       1.1  christos 
    202       1.1  christos static dns_rdata_t *
    203       1.1  christos grow_rdata(int, dns_rdata_t *, int, rdatalist_head_t *, rdatalist_head_t *,
    204       1.1  christos 	   isc_mem_t *);
    205       1.1  christos 
    206       1.1  christos static void
    207       1.1  christos loadctx_destroy(dns_loadctx_t *lctx);
    208       1.1  christos 
    209  1.12.2.1  perseant #define LCTX_MANYERRORS(lctx) (((lctx)->options & DNS_MASTER_MANYERRORS) != 0)
    210  1.12.2.1  perseant 
    211  1.12.2.1  perseant #define GETTOKENERR(lexer, options, token, eol, err)                         \
    212  1.12.2.1  perseant 	do {                                                                 \
    213  1.12.2.1  perseant 		result = gettoken(lexer, options, token, eol, callbacks);    \
    214  1.12.2.1  perseant 		switch (result) {                                            \
    215  1.12.2.1  perseant 		case ISC_R_SUCCESS:                                          \
    216  1.12.2.1  perseant 			break;                                               \
    217  1.12.2.1  perseant 		case ISC_R_NOTFILE:                                          \
    218  1.12.2.1  perseant 			/* Treat "bad" $INCLUDE as eof. */                   \
    219  1.12.2.1  perseant 			if (ictx->parent != NULL && LCTX_MANYERRORS(lctx)) { \
    220  1.12.2.1  perseant 				SETRESULT(lctx, result);                     \
    221  1.12.2.1  perseant 				COMMITALL;                                   \
    222  1.12.2.1  perseant 				lctx->inc = ictx->parent;                    \
    223  1.12.2.1  perseant 				ictx->parent = NULL;                         \
    224  1.12.2.1  perseant 				incctx_destroy(lctx->mctx, ictx);            \
    225  1.12.2.1  perseant 				RUNTIME_CHECK(isc_lex_close(lctx->lex) ==    \
    226  1.12.2.1  perseant 					      ISC_R_SUCCESS);                \
    227  1.12.2.1  perseant 				line = isc_lex_getsourceline(lctx->lex);     \
    228  1.12.2.1  perseant 				POST(line);                                  \
    229  1.12.2.1  perseant 				source = isc_lex_getsourcename(lctx->lex);   \
    230  1.12.2.1  perseant 				ictx = lctx->inc;                            \
    231  1.12.2.1  perseant 				continue;                                    \
    232  1.12.2.1  perseant 			}                                                    \
    233  1.12.2.1  perseant 			goto insist_and_cleanup;                             \
    234  1.12.2.1  perseant 		case ISC_R_UNEXPECTED:                                       \
    235  1.12.2.1  perseant 			goto insist_and_cleanup;                             \
    236  1.12.2.1  perseant 		default:                                                     \
    237  1.12.2.1  perseant 			if (MANYERRS(lctx, result)) {                        \
    238  1.12.2.1  perseant 				SETRESULT(lctx, result);                     \
    239  1.12.2.1  perseant 				LOGIT(result);                               \
    240  1.12.2.1  perseant 				read_till_eol = true;                        \
    241  1.12.2.1  perseant 				err goto next_line;                          \
    242  1.12.2.1  perseant 			} else                                               \
    243  1.12.2.1  perseant 				goto log_and_cleanup;                        \
    244  1.12.2.1  perseant 		}                                                            \
    245  1.12.2.1  perseant 		if ((token)->type == isc_tokentype_special) {                \
    246  1.12.2.1  perseant 			result = DNS_R_SYNTAX;                               \
    247  1.12.2.1  perseant 			if (MANYERRS(lctx, result)) {                        \
    248  1.12.2.1  perseant 				SETRESULT(lctx, result);                     \
    249  1.12.2.1  perseant 				LOGIT(result);                               \
    250  1.12.2.1  perseant 				read_till_eol = true;                        \
    251  1.12.2.1  perseant 				goto next_line;                              \
    252  1.12.2.1  perseant 			} else                                               \
    253  1.12.2.1  perseant 				goto log_and_cleanup;                        \
    254  1.12.2.1  perseant 		}                                                            \
    255       1.8    rillig 	} while (0)
    256       1.1  christos #define GETTOKEN(lexer, options, token, eol) \
    257       1.5  christos 	GETTOKENERR(lexer, options, token, eol, {})
    258       1.1  christos 
    259       1.5  christos #define COMMITALL                                                              \
    260       1.5  christos 	do {                                                                   \
    261       1.5  christos 		result = commit(callbacks, lctx, &current_list, ictx->current, \
    262       1.5  christos 				source, ictx->current_line);                   \
    263       1.5  christos 		if (MANYERRS(lctx, result)) {                                  \
    264       1.5  christos 			SETRESULT(lctx, result);                               \
    265       1.5  christos 		} else if (result != ISC_R_SUCCESS)                            \
    266       1.5  christos 			goto insist_and_cleanup;                               \
    267       1.5  christos 		result = commit(callbacks, lctx, &glue_list, ictx->glue,       \
    268       1.5  christos 				source, ictx->glue_line);                      \
    269       1.5  christos 		if (MANYERRS(lctx, result)) {                                  \
    270       1.5  christos 			SETRESULT(lctx, result);                               \
    271       1.5  christos 		} else if (result != ISC_R_SUCCESS)                            \
    272       1.5  christos 			goto insist_and_cleanup;                               \
    273       1.5  christos 		rdcount = 0;                                                   \
    274       1.5  christos 		rdlcount = 0;                                                  \
    275       1.5  christos 		isc_buffer_init(&target, target_mem, target_size);             \
    276       1.5  christos 		rdcount_save = rdcount;                                        \
    277       1.5  christos 		rdlcount_save = rdlcount;                                      \
    278       1.8    rillig 	} while (0)
    279       1.1  christos 
    280       1.5  christos #define WARNUNEXPECTEDEOF(lexer)                                         \
    281       1.5  christos 	do {                                                             \
    282       1.5  christos 		if (isc_lex_isfile(lexer))                               \
    283       1.5  christos 			(*callbacks->warn)(callbacks,                    \
    284       1.5  christos 					   "%s: file does not end with " \
    285       1.5  christos 					   "newline",                    \
    286       1.5  christos 					   source);                      \
    287       1.8    rillig 	} while (0)
    288       1.1  christos 
    289       1.5  christos #define EXPECTEOL                                              \
    290       1.5  christos 	do {                                                   \
    291       1.5  christos 		GETTOKEN(lctx->lex, 0, &token, true);          \
    292       1.5  christos 		if (token.type != isc_tokentype_eol) {         \
    293       1.1  christos 			isc_lex_ungettoken(lctx->lex, &token); \
    294       1.5  christos 			result = DNS_R_EXTRATOKEN;             \
    295       1.5  christos 			if (MANYERRS(lctx, result)) {          \
    296       1.5  christos 				SETRESULT(lctx, result);       \
    297       1.5  christos 				LOGIT(result);                 \
    298       1.5  christos 				read_till_eol = true;          \
    299       1.5  christos 				break;                         \
    300       1.5  christos 			} else if (result != ISC_R_SUCCESS)    \
    301       1.5  christos 				goto log_and_cleanup;          \
    302       1.5  christos 		}                                              \
    303       1.8    rillig 	} while (0)
    304       1.5  christos 
    305       1.5  christos #define MANYERRS(lctx, result)                                     \
    306       1.5  christos 	((result != ISC_R_SUCCESS) && (result != ISC_R_IOERROR) && \
    307  1.12.2.1  perseant 	 LCTX_MANYERRORS(lctx))
    308       1.5  christos 
    309  1.12.2.1  perseant #define SETRESULT(lctx, r)                     \
    310  1.12.2.1  perseant 	if ((lctx)->result == ISC_R_SUCCESS) { \
    311  1.12.2.1  perseant 		(lctx)->result = r;            \
    312  1.12.2.1  perseant 	}
    313       1.1  christos 
    314       1.5  christos #define LOGITFILE(result, filename)                                            \
    315       1.5  christos 	if (result == ISC_R_INVALIDFILE || result == ISC_R_FILENOTFOUND ||     \
    316       1.5  christos 	    result == ISC_R_IOERROR || result == ISC_R_TOOMANYOPENFILES ||     \
    317       1.5  christos 	    result == ISC_R_NOPERM)                                            \
    318       1.5  christos 		(*callbacks->error)(callbacks, "%s: %s:%lu: %s: %s",           \
    319       1.5  christos 				    "dns_master_load", source, line, filename, \
    320      1.12  christos 				    isc_result_totext(result));                \
    321       1.5  christos 	else                                                                   \
    322       1.5  christos 		LOGIT(result)
    323       1.1  christos 
    324       1.5  christos #define LOGIT(result)                                                 \
    325       1.5  christos 	if (result == ISC_R_NOMEMORY)                                 \
    326       1.1  christos 		(*callbacks->error)(callbacks, "dns_master_load: %s", \
    327      1.12  christos 				    isc_result_totext(result));       \
    328       1.5  christos 	else                                                          \
    329       1.5  christos 		(*callbacks->error)(callbacks, "%s: %s:%lu: %s",      \
    330       1.5  christos 				    "dns_master_load", source, line,  \
    331      1.12  christos 				    isc_result_totext(result))
    332       1.1  christos 
    333       1.5  christos static unsigned char in_addr_arpa_data[] = "\007IN-ADDR\004ARPA";
    334       1.1  christos static unsigned char in_addr_arpa_offsets[] = { 0, 8, 13 };
    335       1.1  christos static dns_name_t const in_addr_arpa =
    336       1.1  christos 	DNS_NAME_INITABSOLUTE(in_addr_arpa_data, in_addr_arpa_offsets);
    337       1.1  christos 
    338       1.5  christos static unsigned char ip6_int_data[] = "\003IP6\003INT";
    339       1.1  christos static unsigned char ip6_int_offsets[] = { 0, 4, 8 };
    340       1.5  christos static dns_name_t const ip6_int = DNS_NAME_INITABSOLUTE(ip6_int_data,
    341       1.5  christos 							ip6_int_offsets);
    342       1.1  christos 
    343       1.5  christos static unsigned char ip6_arpa_data[] = "\003IP6\004ARPA";
    344       1.1  christos static unsigned char ip6_arpa_offsets[] = { 0, 4, 9 };
    345       1.5  christos static dns_name_t const ip6_arpa = DNS_NAME_INITABSOLUTE(ip6_arpa_data,
    346       1.5  christos 							 ip6_arpa_offsets);
    347       1.1  christos 
    348       1.9  christos static bool
    349       1.6  christos dns_master_isprimary(dns_loadctx_t *lctx) {
    350  1.12.2.1  perseant 	return (lctx->options & DNS_MASTER_ZONE) != 0 &&
    351  1.12.2.1  perseant 	       (lctx->options & DNS_MASTER_SECONDARY) == 0 &&
    352  1.12.2.1  perseant 	       (lctx->options & DNS_MASTER_KEY) == 0;
    353       1.6  christos }
    354       1.6  christos 
    355       1.9  christos static isc_result_t
    356       1.5  christos gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *token, bool eol,
    357       1.5  christos 	 dns_rdatacallbacks_t *callbacks) {
    358       1.1  christos 	isc_result_t result;
    359       1.1  christos 
    360       1.1  christos 	options |= ISC_LEXOPT_EOL | ISC_LEXOPT_EOF | ISC_LEXOPT_DNSMULTILINE |
    361       1.5  christos 		   ISC_LEXOPT_ESCAPE;
    362       1.1  christos 	result = isc_lex_gettoken(lex, options, token);
    363       1.1  christos 	if (result != ISC_R_SUCCESS) {
    364       1.1  christos 		switch (result) {
    365       1.1  christos 		case ISC_R_NOMEMORY:
    366  1.12.2.1  perseant 			return ISC_R_NOMEMORY;
    367       1.1  christos 		default:
    368       1.1  christos 			(*callbacks->error)(callbacks,
    369       1.1  christos 					    "dns_master_load: %s:%lu:"
    370       1.1  christos 					    " isc_lex_gettoken() failed: %s",
    371       1.1  christos 					    isc_lex_getsourcename(lex),
    372       1.1  christos 					    isc_lex_getsourceline(lex),
    373       1.1  christos 					    isc_result_totext(result));
    374  1.12.2.1  perseant 			return result;
    375       1.1  christos 		}
    376       1.1  christos 		/*NOTREACHED*/
    377       1.1  christos 	}
    378       1.5  christos 	if (eol != true) {
    379       1.1  christos 		if (token->type == isc_tokentype_eol ||
    380      1.10  christos 		    token->type == isc_tokentype_eof)
    381      1.10  christos 		{
    382       1.5  christos 			{
    383       1.5  christos 				unsigned long int line;
    384       1.5  christos 				const char *what;
    385       1.5  christos 				const char *file;
    386       1.5  christos 				file = isc_lex_getsourcename(lex);
    387       1.5  christos 				line = isc_lex_getsourceline(lex);
    388       1.5  christos 				if (token->type == isc_tokentype_eol) {
    389       1.5  christos 					line--;
    390       1.5  christos 					what = "line";
    391       1.5  christos 				} else {
    392       1.5  christos 					what = "file";
    393       1.5  christos 				}
    394       1.5  christos 				(*callbacks->error)(callbacks,
    395       1.5  christos 						    "dns_master_load: %s:%lu: "
    396       1.5  christos 						    "unexpected end of %s",
    397       1.5  christos 						    file, line, what);
    398  1.12.2.1  perseant 				return ISC_R_UNEXPECTEDEND;
    399       1.5  christos 			}
    400       1.1  christos 		}
    401       1.5  christos 	}
    402  1.12.2.1  perseant 	return ISC_R_SUCCESS;
    403       1.1  christos }
    404       1.1  christos 
    405       1.1  christos void
    406       1.1  christos dns_loadctx_attach(dns_loadctx_t *source, dns_loadctx_t **target) {
    407       1.1  christos 	REQUIRE(target != NULL && *target == NULL);
    408       1.1  christos 	REQUIRE(DNS_LCTX_VALID(source));
    409       1.1  christos 
    410       1.5  christos 	isc_refcount_increment(&source->references);
    411       1.1  christos 
    412       1.1  christos 	*target = source;
    413       1.1  christos }
    414       1.1  christos 
    415       1.1  christos void
    416       1.1  christos dns_loadctx_detach(dns_loadctx_t **lctxp) {
    417       1.1  christos 	dns_loadctx_t *lctx;
    418       1.1  christos 
    419       1.1  christos 	REQUIRE(lctxp != NULL);
    420       1.1  christos 	lctx = *lctxp;
    421       1.5  christos 	*lctxp = NULL;
    422       1.1  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
    423       1.1  christos 
    424       1.5  christos 	if (isc_refcount_decrement(&lctx->references) == 1) {
    425       1.1  christos 		loadctx_destroy(lctx);
    426       1.5  christos 	}
    427       1.1  christos }
    428       1.1  christos 
    429       1.1  christos static void
    430       1.1  christos incctx_destroy(isc_mem_t *mctx, dns_incctx_t *ictx) {
    431       1.1  christos 	dns_incctx_t *parent;
    432       1.1  christos 
    433       1.5  christos again:
    434       1.1  christos 	parent = ictx->parent;
    435       1.1  christos 	ictx->parent = NULL;
    436       1.1  christos 
    437       1.1  christos 	isc_mem_put(mctx, ictx, sizeof(*ictx));
    438       1.1  christos 
    439       1.1  christos 	if (parent != NULL) {
    440       1.1  christos 		ictx = parent;
    441       1.1  christos 		goto again;
    442       1.1  christos 	}
    443       1.1  christos }
    444       1.1  christos 
    445       1.1  christos static void
    446       1.1  christos loadctx_destroy(dns_loadctx_t *lctx) {
    447       1.5  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
    448       1.1  christos 
    449       1.5  christos 	isc_refcount_destroy(&lctx->references);
    450       1.1  christos 
    451       1.1  christos 	lctx->magic = 0;
    452       1.5  christos 	if (lctx->inc != NULL) {
    453       1.1  christos 		incctx_destroy(lctx->mctx, lctx->inc);
    454       1.5  christos 	}
    455       1.1  christos 
    456       1.1  christos 	if (lctx->f != NULL) {
    457       1.5  christos 		isc_result_t result = isc_stdio_close(lctx->f);
    458       1.1  christos 		if (result != ISC_R_SUCCESS) {
    459      1.12  christos 			UNEXPECTED_ERROR("isc_stdio_close() failed: %s",
    460       1.1  christos 					 isc_result_totext(result));
    461       1.1  christos 		}
    462       1.1  christos 	}
    463       1.1  christos 
    464       1.1  christos 	/* isc_lex_destroy() will close all open streams */
    465       1.5  christos 	if (lctx->lex != NULL && !lctx->keep_lex) {
    466       1.1  christos 		isc_lex_destroy(&lctx->lex);
    467       1.5  christos 	}
    468       1.1  christos 
    469       1.5  christos 	isc_mem_putanddetach(&lctx->mctx, lctx, sizeof(*lctx));
    470       1.1  christos }
    471       1.1  christos 
    472  1.12.2.1  perseant static void
    473       1.1  christos incctx_create(isc_mem_t *mctx, dns_name_t *origin, dns_incctx_t **ictxp) {
    474       1.1  christos 	dns_incctx_t *ictx;
    475       1.1  christos 	isc_region_t r;
    476       1.1  christos 	int i;
    477       1.1  christos 
    478       1.1  christos 	ictx = isc_mem_get(mctx, sizeof(*ictx));
    479       1.1  christos 
    480       1.1  christos 	for (i = 0; i < NBUFS; i++) {
    481       1.1  christos 		dns_fixedname_init(&ictx->fixed[i]);
    482       1.3  christos 		ictx->in_use[i] = false;
    483       1.1  christos 	}
    484       1.1  christos 
    485       1.1  christos 	ictx->origin_in_use = 0;
    486       1.1  christos 	ictx->origin = dns_fixedname_name(&ictx->fixed[ictx->origin_in_use]);
    487       1.3  christos 	ictx->in_use[ictx->origin_in_use] = true;
    488       1.1  christos 	dns_name_toregion(origin, &r);
    489       1.1  christos 	dns_name_fromregion(ictx->origin, &r);
    490       1.1  christos 
    491       1.1  christos 	ictx->glue = NULL;
    492       1.1  christos 	ictx->current = NULL;
    493       1.1  christos 	ictx->glue_in_use = -1;
    494       1.1  christos 	ictx->current_in_use = -1;
    495       1.1  christos 	ictx->parent = NULL;
    496       1.3  christos 	ictx->drop = false;
    497       1.1  christos 	ictx->glue_line = 0;
    498       1.1  christos 	ictx->current_line = 0;
    499       1.3  christos 	ictx->origin_changed = true;
    500       1.1  christos 
    501       1.1  christos 	*ictxp = ictx;
    502       1.1  christos }
    503       1.1  christos 
    504  1.12.2.1  perseant static void
    505       1.5  christos loadctx_create(dns_masterformat_t format, isc_mem_t *mctx, unsigned int options,
    506       1.5  christos 	       uint32_t resign, dns_name_t *top, dns_rdataclass_t zclass,
    507       1.5  christos 	       dns_name_t *origin, dns_rdatacallbacks_t *callbacks,
    508  1.12.2.1  perseant 	       dns_loaddonefunc_t done, void *done_arg,
    509       1.1  christos 	       dns_masterincludecb_t include_cb, void *include_arg,
    510       1.5  christos 	       isc_lex_t *lex, dns_loadctx_t **lctxp) {
    511  1.12.2.1  perseant 	dns_loadctx_t *lctx = NULL;
    512       1.1  christos 	isc_region_t r;
    513       1.1  christos 
    514       1.1  christos 	REQUIRE(lctxp != NULL && *lctxp == NULL);
    515       1.1  christos 	REQUIRE(callbacks != NULL);
    516       1.1  christos 	REQUIRE(callbacks->add != NULL);
    517       1.1  christos 	REQUIRE(callbacks->error != NULL);
    518       1.1  christos 	REQUIRE(callbacks->warn != NULL);
    519       1.1  christos 	REQUIRE(mctx != NULL);
    520       1.1  christos 	REQUIRE(dns_name_isabsolute(top));
    521       1.1  christos 	REQUIRE(dns_name_isabsolute(origin));
    522       1.1  christos 
    523       1.1  christos 	lctx = isc_mem_get(mctx, sizeof(*lctx));
    524  1.12.2.1  perseant 	*lctx = (dns_loadctx_t){
    525  1.12.2.1  perseant 		.format = format,
    526  1.12.2.1  perseant 		.ttl_known = ((options & DNS_MASTER_NOTTL) != 0),
    527  1.12.2.1  perseant 		.default_ttl_known = ((options & DNS_MASTER_NOTTL) != 0),
    528  1.12.2.1  perseant 		.warn_1035 = true,
    529  1.12.2.1  perseant 		.warn_tcr = true,
    530  1.12.2.1  perseant 		.warn_sigexpired = true,
    531  1.12.2.1  perseant 		.options = options,
    532  1.12.2.1  perseant 		.zclass = zclass,
    533  1.12.2.1  perseant 		.resign = resign,
    534  1.12.2.1  perseant 		.include_cb = include_cb,
    535  1.12.2.1  perseant 		.include_arg = include_arg,
    536  1.12.2.1  perseant 		.first = true,
    537  1.12.2.1  perseant 		.done = done,
    538  1.12.2.1  perseant 		.callbacks = callbacks,
    539  1.12.2.1  perseant 		.done_arg = done_arg,
    540  1.12.2.1  perseant 	};
    541       1.1  christos 
    542  1.12.2.1  perseant 	incctx_create(mctx, origin, &lctx->inc);
    543       1.1  christos 
    544       1.1  christos 	switch (format) {
    545       1.1  christos 	case dns_masterformat_text:
    546       1.1  christos 		lctx->openfile = openfile_text;
    547       1.1  christos 		lctx->load = load_text;
    548       1.1  christos 		break;
    549       1.1  christos 	case dns_masterformat_raw:
    550       1.1  christos 		lctx->openfile = openfile_raw;
    551       1.1  christos 		lctx->load = load_raw;
    552       1.1  christos 		break;
    553       1.3  christos 	default:
    554       1.9  christos 		UNREACHABLE();
    555       1.1  christos 	}
    556       1.1  christos 
    557       1.1  christos 	if (lex != NULL) {
    558       1.1  christos 		lctx->lex = lex;
    559       1.3  christos 		lctx->keep_lex = true;
    560       1.1  christos 	} else {
    561  1.12.2.1  perseant 		isc_lexspecials_t specials;
    562       1.1  christos 		lctx->lex = NULL;
    563  1.12.2.1  perseant 		isc_lex_create(mctx, TOKENSIZ, &lctx->lex);
    564       1.3  christos 		lctx->keep_lex = false;
    565       1.4  christos 		/*
    566       1.4  christos 		 * If specials change update dns_test_rdatafromstring()
    567       1.4  christos 		 * in lib/dns/tests/dnstest.c.
    568       1.4  christos 		 */
    569       1.1  christos 		memset(specials, 0, sizeof(specials));
    570       1.1  christos 		specials[0] = 1;
    571       1.1  christos 		specials['('] = 1;
    572       1.1  christos 		specials[')'] = 1;
    573       1.1  christos 		specials['"'] = 1;
    574       1.1  christos 		isc_lex_setspecials(lctx->lex, specials);
    575       1.1  christos 		isc_lex_setcomments(lctx->lex, ISC_LEXCOMMENT_DNSMASTERFILE);
    576       1.1  christos 	}
    577       1.1  christos 
    578  1.12.2.1  perseant 	lctx->now = isc_stdtime_now();
    579       1.1  christos 
    580       1.1  christos 	lctx->top = dns_fixedname_initname(&lctx->fixed_top);
    581       1.1  christos 	dns_name_toregion(top, &r);
    582       1.1  christos 	dns_name_fromregion(lctx->top, &r);
    583       1.1  christos 
    584       1.1  christos 	dns_master_initrawheader(&lctx->header);
    585       1.1  christos 
    586       1.5  christos 	isc_refcount_init(&lctx->references, 1); /* Implicit attach. */
    587  1.12.2.1  perseant 	isc_mem_attach(mctx, &lctx->mctx);
    588       1.5  christos 
    589       1.1  christos 	lctx->magic = DNS_LCTX_MAGIC;
    590       1.1  christos 	*lctxp = lctx;
    591  1.12.2.1  perseant 	return;
    592       1.1  christos }
    593       1.1  christos 
    594       1.1  christos static const char *hex = "0123456789abcdef0123456789ABCDEF";
    595       1.1  christos 
    596       1.1  christos /*%
    597       1.1  christos  * Convert value into a nibble sequence from least significant to most
    598       1.1  christos  * significant nibble.  Zero fill upper most significant nibbles if
    599       1.1  christos  * required to make the width.
    600       1.1  christos  *
    601       1.1  christos  * Returns the number of characters that should have been written without
    602       1.1  christos  * counting the terminating NUL.
    603       1.1  christos  */
    604       1.1  christos static unsigned int
    605  1.12.2.1  perseant nibbles(char *numbuf, size_t length, unsigned int width, char mode,
    606  1.12.2.1  perseant 	unsigned int value) {
    607       1.1  christos 	unsigned int count = 0;
    608       1.1  christos 
    609       1.1  christos 	/*
    610       1.1  christos 	 * This reserve space for the NUL string terminator.
    611       1.1  christos 	 */
    612       1.1  christos 	if (length > 0U) {
    613       1.1  christos 		*numbuf = '\0';
    614       1.1  christos 		length--;
    615       1.1  christos 	}
    616       1.1  christos 	do {
    617       1.1  christos 		char val = hex[(value & 0x0f) + ((mode == 'n') ? 0 : 16)];
    618       1.1  christos 		value >>= 4;
    619       1.1  christos 		if (length > 0U) {
    620       1.1  christos 			*numbuf++ = val;
    621       1.1  christos 			*numbuf = '\0';
    622       1.1  christos 			length--;
    623       1.1  christos 		}
    624       1.5  christos 		if (width > 0) {
    625       1.1  christos 			width--;
    626       1.5  christos 		}
    627       1.1  christos 		count++;
    628       1.1  christos 		/*
    629       1.5  christos 		 * If width is non zero then we need to add a label separator.
    630       1.1  christos 		 * If value is non zero then we need to add another label and
    631       1.5  christos 		 * that requires a label separator.
    632       1.1  christos 		 */
    633       1.1  christos 		if (width > 0 || value != 0) {
    634       1.1  christos 			if (length > 0U) {
    635       1.1  christos 				*numbuf++ = '.';
    636       1.1  christos 				*numbuf = '\0';
    637       1.1  christos 				length--;
    638       1.1  christos 			}
    639       1.5  christos 			if (width > 0) {
    640       1.1  christos 				width--;
    641       1.5  christos 			}
    642       1.1  christos 			count++;
    643       1.1  christos 		}
    644       1.1  christos 	} while (value != 0 || width > 0);
    645  1.12.2.1  perseant 	return count;
    646       1.1  christos }
    647       1.1  christos 
    648       1.1  christos static isc_result_t
    649       1.1  christos genname(char *name, int it, char *buffer, size_t length) {
    650       1.1  christos 	char fmt[sizeof("%04000000000d")];
    651       1.1  christos 	char numbuf[128];
    652       1.1  christos 	char *cp;
    653       1.9  christos 	char mode[2] = { 0 };
    654       1.9  christos 	char brace[2] = { 0 };
    655       1.9  christos 	char comma1[2] = { 0 };
    656       1.9  christos 	char comma2[2] = { 0 };
    657       1.1  christos 	int delta = 0;
    658       1.1  christos 	isc_textregion_t r;
    659       1.1  christos 	unsigned int n;
    660       1.1  christos 	unsigned int width;
    661       1.3  christos 	bool nibblemode;
    662       1.1  christos 
    663       1.1  christos 	r.base = buffer;
    664       1.1  christos 	r.length = (unsigned int)length;
    665       1.1  christos 
    666       1.1  christos 	while (*name != '\0') {
    667       1.1  christos 		if (*name == '$') {
    668       1.1  christos 			name++;
    669       1.1  christos 			if (*name == '$') {
    670       1.5  christos 				if (r.length == 0) {
    671  1.12.2.1  perseant 					return ISC_R_NOSPACE;
    672       1.5  christos 				}
    673       1.1  christos 				r.base[0] = *name++;
    674       1.1  christos 				isc_textregion_consume(&r, 1);
    675       1.1  christos 				continue;
    676       1.1  christos 			}
    677       1.3  christos 			nibblemode = false;
    678       1.1  christos 			strlcpy(fmt, "%d", sizeof(fmt));
    679       1.1  christos 			/* Get format specifier. */
    680       1.5  christos 			if (*name == '{') {
    681       1.9  christos 				n = sscanf(name,
    682       1.9  christos 					   "{%d%1[,}]%u%1[,}]%1[doxXnN]%1[}]",
    683       1.9  christos 					   &delta, comma1, &width, comma2, mode,
    684       1.9  christos 					   brace);
    685       1.9  christos 				if (n < 2 || n > 6) {
    686  1.12.2.1  perseant 					return DNS_R_SYNTAX;
    687       1.9  christos 				}
    688       1.9  christos 				if (comma1[0] == '}') {
    689       1.9  christos 					/* %{delta} */
    690       1.9  christos 				} else if (comma1[0] == ',' && comma2[0] == '}')
    691       1.9  christos 				{
    692       1.9  christos 					/* %{delta,width} */
    693       1.5  christos 					n = snprintf(fmt, sizeof(fmt), "%%0%ud",
    694       1.5  christos 						     width);
    695       1.9  christos 				} else if (comma1[0] == ',' &&
    696       1.9  christos 					   comma2[0] == ',' && mode[0] != 0 &&
    697       1.9  christos 					   brace[0] == '}')
    698       1.9  christos 				{
    699       1.9  christos 					/* %{delta,width,format} */
    700       1.5  christos 					if (mode[0] == 'n' || mode[0] == 'N') {
    701       1.3  christos 						nibblemode = true;
    702       1.5  christos 					}
    703       1.1  christos 					n = snprintf(fmt, sizeof(fmt),
    704       1.1  christos 						     "%%0%u%c", width, mode[0]);
    705       1.9  christos 				} else {
    706  1.12.2.1  perseant 					return DNS_R_SYNTAX;
    707       1.1  christos 				}
    708       1.5  christos 				if (n >= sizeof(fmt)) {
    709  1.12.2.1  perseant 					return ISC_R_NOSPACE;
    710       1.5  christos 				}
    711       1.1  christos 				/* Skip past closing brace. */
    712       1.5  christos 				while (*name != '\0' && *name++ != '}') {
    713       1.1  christos 					continue;
    714       1.5  christos 				}
    715       1.1  christos 			}
    716       1.9  christos 			/*
    717       1.9  christos 			 * 'it' is >= 0 so we don't need to check for
    718       1.9  christos 			 * underflow.
    719       1.9  christos 			 */
    720  1.12.2.1  perseant 			if (it > 0 && delta > INT_MAX - it) {
    721  1.12.2.1  perseant 				return ISC_R_RANGE;
    722       1.9  christos 			}
    723       1.5  christos 			if (nibblemode) {
    724       1.1  christos 				n = nibbles(numbuf, sizeof(numbuf), width,
    725       1.1  christos 					    mode[0], it + delta);
    726       1.5  christos 			} else {
    727       1.1  christos 				n = snprintf(numbuf, sizeof(numbuf), fmt,
    728       1.1  christos 					     it + delta);
    729       1.5  christos 			}
    730       1.5  christos 			if (n >= sizeof(numbuf)) {
    731  1.12.2.1  perseant 				return ISC_R_NOSPACE;
    732       1.5  christos 			}
    733       1.1  christos 			cp = numbuf;
    734       1.1  christos 			while (*cp != '\0') {
    735       1.5  christos 				if (r.length == 0) {
    736  1.12.2.1  perseant 					return ISC_R_NOSPACE;
    737       1.5  christos 				}
    738       1.1  christos 				r.base[0] = *cp++;
    739       1.1  christos 				isc_textregion_consume(&r, 1);
    740       1.1  christos 			}
    741       1.1  christos 		} else if (*name == '\\') {
    742       1.5  christos 			if (r.length == 0) {
    743  1.12.2.1  perseant 				return ISC_R_NOSPACE;
    744       1.5  christos 			}
    745       1.1  christos 			r.base[0] = *name++;
    746       1.1  christos 			isc_textregion_consume(&r, 1);
    747       1.5  christos 			if (*name == '\0') {
    748       1.1  christos 				continue;
    749       1.5  christos 			}
    750       1.5  christos 			if (r.length == 0) {
    751  1.12.2.1  perseant 				return ISC_R_NOSPACE;
    752       1.5  christos 			}
    753       1.1  christos 			r.base[0] = *name++;
    754       1.1  christos 			isc_textregion_consume(&r, 1);
    755       1.1  christos 		} else {
    756       1.5  christos 			if (r.length == 0) {
    757  1.12.2.1  perseant 				return ISC_R_NOSPACE;
    758       1.5  christos 			}
    759       1.1  christos 			r.base[0] = *name++;
    760       1.1  christos 			isc_textregion_consume(&r, 1);
    761       1.1  christos 		}
    762       1.1  christos 	}
    763       1.5  christos 	if (r.length == 0) {
    764  1.12.2.1  perseant 		return ISC_R_NOSPACE;
    765       1.5  christos 	}
    766       1.1  christos 	r.base[0] = '\0';
    767  1.12.2.1  perseant 	return ISC_R_SUCCESS;
    768       1.1  christos }
    769       1.1  christos 
    770       1.1  christos static isc_result_t
    771       1.1  christos generate(dns_loadctx_t *lctx, char *range, char *lhs, char *gtype, char *rhs,
    772       1.5  christos 	 const char *source, unsigned int line) {
    773       1.1  christos 	char *target_mem = NULL;
    774       1.1  christos 	char *lhsbuf = NULL;
    775       1.1  christos 	char *rhsbuf = NULL;
    776       1.1  christos 	dns_fixedname_t ownerfixed;
    777       1.1  christos 	dns_name_t *owner;
    778       1.1  christos 	dns_rdata_t rdata = DNS_RDATA_INIT;
    779       1.1  christos 	dns_rdatacallbacks_t *callbacks;
    780       1.1  christos 	dns_rdatalist_t rdatalist;
    781       1.1  christos 	dns_rdatatype_t type;
    782       1.1  christos 	rdatalist_head_t head;
    783       1.5  christos 	int target_size = MINTSIZ; /* only one rdata at a time */
    784       1.1  christos 	isc_buffer_t buffer;
    785       1.1  christos 	isc_buffer_t target;
    786       1.1  christos 	isc_result_t result;
    787       1.1  christos 	isc_textregion_t r;
    788       1.9  christos 	int n, start, stop, step = 0;
    789       1.9  christos 	unsigned int i;
    790       1.1  christos 	dns_incctx_t *ictx;
    791       1.1  christos 	char dummy[2];
    792       1.1  christos 
    793       1.1  christos 	ictx = lctx->inc;
    794       1.1  christos 	callbacks = lctx->callbacks;
    795       1.1  christos 	owner = dns_fixedname_initname(&ownerfixed);
    796       1.1  christos 	ISC_LIST_INIT(head);
    797       1.1  christos 
    798       1.1  christos 	target_mem = isc_mem_get(lctx->mctx, target_size);
    799       1.1  christos 	rhsbuf = isc_mem_get(lctx->mctx, DNS_MASTER_RHS);
    800       1.1  christos 	lhsbuf = isc_mem_get(lctx->mctx, DNS_MASTER_LHS);
    801       1.1  christos 	if (target_mem == NULL || rhsbuf == NULL || lhsbuf == NULL) {
    802       1.1  christos 		result = ISC_R_NOMEMORY;
    803       1.1  christos 		goto error_cleanup;
    804       1.1  christos 	}
    805       1.1  christos 	isc_buffer_init(&target, target_mem, target_size);
    806       1.1  christos 
    807       1.1  christos 	n = sscanf(range, "%d-%d%1[/]%d", &start, &stop, dummy, &step);
    808       1.1  christos 	if ((n != 2 && n != 4) || (start < 0) || (stop < 0) ||
    809       1.5  christos 	    (n == 4 && step < 1) || (stop < start))
    810       1.1  christos 	{
    811       1.5  christos 		(*callbacks->error)(callbacks, "%s: %s:%lu: invalid range '%s'",
    812       1.5  christos 				    "$GENERATE", source, line, range);
    813       1.1  christos 		result = DNS_R_SYNTAX;
    814       1.1  christos 		goto insist_cleanup;
    815       1.1  christos 	}
    816       1.5  christos 	if (n == 2) {
    817       1.1  christos 		step = 1;
    818       1.5  christos 	}
    819       1.1  christos 
    820       1.1  christos 	/*
    821       1.1  christos 	 * Get type.
    822       1.1  christos 	 */
    823       1.1  christos 	r.base = gtype;
    824       1.1  christos 	r.length = strlen(gtype);
    825       1.1  christos 	result = dns_rdatatype_fromtext(&type, &r);
    826       1.1  christos 	if (result != ISC_R_SUCCESS) {
    827       1.1  christos 		(*callbacks->error)(callbacks,
    828       1.5  christos 				    "%s: %s:%lu: unknown RR type '%s'",
    829       1.5  christos 				    "$GENERATE", source, line, gtype);
    830       1.1  christos 		goto insist_cleanup;
    831       1.1  christos 	}
    832       1.1  christos 
    833       1.1  christos 	/*
    834       1.1  christos 	 * RFC2930: TKEY and TSIG are not allowed to be loaded
    835       1.1  christos 	 * from master files.
    836       1.1  christos 	 */
    837       1.6  christos 	if (dns_master_isprimary(lctx) && dns_rdatatype_ismeta(type)) {
    838       1.5  christos 		(*callbacks->error)(callbacks, "%s: %s:%lu: meta RR type '%s'",
    839       1.5  christos 				    "$GENERATE", source, line, gtype);
    840       1.1  christos 		result = DNS_R_METATYPE;
    841       1.1  christos 		goto insist_cleanup;
    842       1.1  christos 	}
    843       1.1  christos 
    844       1.9  christos 	for (i = start; i <= (unsigned int)stop; i += step) {
    845       1.1  christos 		result = genname(lhs, i, lhsbuf, DNS_MASTER_LHS);
    846       1.5  christos 		if (result != ISC_R_SUCCESS) {
    847       1.1  christos 			goto error_cleanup;
    848       1.5  christos 		}
    849       1.1  christos 		result = genname(rhs, i, rhsbuf, DNS_MASTER_RHS);
    850       1.5  christos 		if (result != ISC_R_SUCCESS) {
    851       1.1  christos 			goto error_cleanup;
    852       1.5  christos 		}
    853       1.1  christos 
    854       1.1  christos 		isc_buffer_init(&buffer, lhsbuf, strlen(lhsbuf));
    855       1.1  christos 		isc_buffer_add(&buffer, strlen(lhsbuf));
    856       1.1  christos 		isc_buffer_setactive(&buffer, strlen(lhsbuf));
    857       1.5  christos 		result = dns_name_fromtext(owner, &buffer, ictx->origin, 0,
    858       1.5  christos 					   NULL);
    859       1.5  christos 		if (result != ISC_R_SUCCESS) {
    860       1.1  christos 			goto error_cleanup;
    861       1.5  christos 		}
    862       1.1  christos 
    863       1.6  christos 		if (dns_master_isprimary(lctx) &&
    864      1.10  christos 		    !dns_name_issubdomain(owner, lctx->top))
    865      1.10  christos 		{
    866       1.1  christos 			char namebuf[DNS_NAME_FORMATSIZE];
    867       1.1  christos 			dns_name_format(owner, namebuf, sizeof(namebuf));
    868       1.1  christos 			/*
    869       1.1  christos 			 * Ignore out-of-zone data.
    870       1.1  christos 			 */
    871       1.1  christos 			(*callbacks->warn)(callbacks,
    872       1.1  christos 					   "%s:%lu: "
    873       1.1  christos 					   "ignoring out-of-zone data (%s)",
    874       1.1  christos 					   source, line, namebuf);
    875       1.1  christos 			continue;
    876       1.1  christos 		}
    877       1.1  christos 
    878       1.1  christos 		isc_buffer_init(&buffer, rhsbuf, strlen(rhsbuf));
    879       1.1  christos 		isc_buffer_add(&buffer, strlen(rhsbuf));
    880       1.1  christos 		isc_buffer_setactive(&buffer, strlen(rhsbuf));
    881       1.1  christos 
    882       1.1  christos 		result = isc_lex_openbuffer(lctx->lex, &buffer);
    883       1.5  christos 		if (result != ISC_R_SUCCESS) {
    884       1.1  christos 			goto error_cleanup;
    885       1.5  christos 		}
    886       1.1  christos 
    887       1.1  christos 		isc_buffer_init(&target, target_mem, target_size);
    888       1.1  christos 		result = dns_rdata_fromtext(&rdata, lctx->zclass, type,
    889       1.1  christos 					    lctx->lex, ictx->origin, 0,
    890       1.1  christos 					    lctx->mctx, &target, callbacks);
    891       1.1  christos 		RUNTIME_CHECK(isc_lex_close(lctx->lex) == ISC_R_SUCCESS);
    892       1.5  christos 		if (result != ISC_R_SUCCESS) {
    893       1.1  christos 			goto error_cleanup;
    894       1.5  christos 		}
    895       1.1  christos 
    896       1.1  christos 		dns_rdatalist_init(&rdatalist);
    897       1.1  christos 		rdatalist.type = type;
    898       1.1  christos 		rdatalist.rdclass = lctx->zclass;
    899       1.1  christos 		rdatalist.ttl = lctx->ttl;
    900       1.1  christos 		ISC_LIST_PREPEND(head, &rdatalist, link);
    901       1.1  christos 		ISC_LIST_APPEND(rdatalist.rdata, &rdata, link);
    902       1.1  christos 		result = commit(callbacks, lctx, &head, owner, source, line);
    903       1.1  christos 		ISC_LIST_UNLINK(rdatalist.rdata, &rdata, link);
    904       1.5  christos 		if (result != ISC_R_SUCCESS) {
    905       1.1  christos 			goto error_cleanup;
    906       1.5  christos 		}
    907       1.1  christos 		dns_rdata_reset(&rdata);
    908       1.1  christos 	}
    909       1.1  christos 	result = ISC_R_SUCCESS;
    910       1.1  christos 	goto cleanup;
    911       1.1  christos 
    912       1.5  christos error_cleanup:
    913       1.5  christos 	if (result == ISC_R_NOMEMORY) {
    914       1.1  christos 		(*callbacks->error)(callbacks, "$GENERATE: %s",
    915      1.12  christos 				    isc_result_totext(result));
    916       1.5  christos 	} else {
    917       1.5  christos 		(*callbacks->error)(callbacks, "$GENERATE: %s:%lu: %s", source,
    918      1.12  christos 				    line, isc_result_totext(result));
    919       1.5  christos 	}
    920       1.1  christos 
    921       1.5  christos insist_cleanup:
    922       1.1  christos 	INSIST(result != ISC_R_SUCCESS);
    923       1.1  christos 
    924       1.5  christos cleanup:
    925       1.5  christos 	if (target_mem != NULL) {
    926       1.1  christos 		isc_mem_put(lctx->mctx, target_mem, target_size);
    927       1.5  christos 	}
    928       1.5  christos 	if (lhsbuf != NULL) {
    929       1.1  christos 		isc_mem_put(lctx->mctx, lhsbuf, DNS_MASTER_LHS);
    930       1.5  christos 	}
    931       1.5  christos 	if (rhsbuf != NULL) {
    932       1.1  christos 		isc_mem_put(lctx->mctx, rhsbuf, DNS_MASTER_RHS);
    933       1.5  christos 	}
    934  1.12.2.1  perseant 	return result;
    935       1.1  christos }
    936       1.1  christos 
    937       1.1  christos static void
    938       1.1  christos limit_ttl(dns_rdatacallbacks_t *callbacks, const char *source,
    939       1.5  christos 	  unsigned int line, uint32_t *ttlp) {
    940       1.1  christos 	if (*ttlp > 0x7fffffffUL) {
    941       1.1  christos 		(callbacks->warn)(callbacks,
    942       1.1  christos 				  "%s: %s:%lu: "
    943       1.1  christos 				  "$TTL %lu > MAXTTL, "
    944       1.1  christos 				  "setting $TTL to 0",
    945       1.5  christos 				  "dns_master_load", source, line, *ttlp);
    946       1.1  christos 		*ttlp = 0;
    947       1.1  christos 	}
    948       1.1  christos }
    949       1.1  christos 
    950       1.1  christos static isc_result_t
    951       1.1  christos check_ns(dns_loadctx_t *lctx, isc_token_t *token, const char *source,
    952       1.5  christos 	 unsigned long line) {
    953       1.1  christos 	char *tmp = NULL;
    954       1.1  christos 	isc_result_t result = ISC_R_SUCCESS;
    955       1.1  christos 	void (*callback)(struct dns_rdatacallbacks *, const char *, ...);
    956       1.1  christos 
    957       1.5  christos 	if ((lctx->options & DNS_MASTER_FATALNS) != 0) {
    958       1.1  christos 		callback = lctx->callbacks->error;
    959       1.5  christos 	} else {
    960       1.1  christos 		callback = lctx->callbacks->warn;
    961       1.5  christos 	}
    962       1.1  christos 
    963       1.1  christos 	if (token->type == isc_tokentype_string) {
    964       1.1  christos 		struct in_addr addr;
    965       1.1  christos 		struct in6_addr addr6;
    966       1.1  christos 
    967       1.1  christos 		tmp = isc_mem_strdup(lctx->mctx, DNS_AS_STR(*token));
    968       1.1  christos 		/*
    969       1.1  christos 		 * Catch both "1.2.3.4" and "1.2.3.4."
    970       1.1  christos 		 */
    971       1.5  christos 		if (tmp[strlen(tmp) - 1] == '.') {
    972       1.1  christos 			tmp[strlen(tmp) - 1] = '\0';
    973       1.5  christos 		}
    974       1.3  christos 		if (inet_pton(AF_INET, tmp, &addr) == 1 ||
    975       1.1  christos 		    inet_pton(AF_INET6, tmp, &addr6) == 1)
    976       1.5  christos 		{
    977       1.1  christos 			result = DNS_R_NSISADDRESS;
    978       1.5  christos 		}
    979       1.1  christos 	}
    980       1.5  christos 	if (result != ISC_R_SUCCESS) {
    981       1.5  christos 		(*callback)(lctx->callbacks,
    982       1.5  christos 			    "%s:%lu: NS record '%s' "
    983       1.1  christos 			    "appears to be an address",
    984       1.1  christos 			    source, line, DNS_AS_STR(*token));
    985       1.5  christos 	}
    986       1.5  christos 	if (tmp != NULL) {
    987       1.1  christos 		isc_mem_free(lctx->mctx, tmp);
    988       1.5  christos 	}
    989  1.12.2.1  perseant 	return result;
    990       1.1  christos }
    991       1.1  christos 
    992       1.1  christos static void
    993       1.1  christos check_wildcard(dns_incctx_t *ictx, const char *source, unsigned long line,
    994       1.5  christos 	       dns_rdatacallbacks_t *callbacks) {
    995       1.1  christos 	dns_name_t *name;
    996       1.1  christos 
    997       1.1  christos 	name = (ictx->glue != NULL) ? ictx->glue : ictx->current;
    998       1.1  christos 	if (dns_name_internalwildcard(name)) {
    999       1.1  christos 		char namebuf[DNS_NAME_FORMATSIZE];
   1000       1.1  christos 
   1001       1.1  christos 		dns_name_format(name, namebuf, sizeof(namebuf));
   1002       1.5  christos 		(*callbacks->warn)(callbacks,
   1003       1.5  christos 				   "%s:%lu: warning: ownername "
   1004       1.1  christos 				   "'%s' contains an non-terminal wildcard",
   1005       1.1  christos 				   source, line, namebuf);
   1006       1.1  christos 	}
   1007       1.1  christos }
   1008       1.1  christos 
   1009       1.1  christos static isc_result_t
   1010       1.1  christos openfile_text(dns_loadctx_t *lctx, const char *master_file) {
   1011  1.12.2.1  perseant 	return isc_lex_openfile(lctx->lex, master_file);
   1012       1.1  christos }
   1013       1.1  christos 
   1014       1.1  christos static int
   1015       1.1  christos find_free_name(dns_incctx_t *incctx) {
   1016       1.1  christos 	int i;
   1017       1.1  christos 
   1018       1.1  christos 	for (i = 0; i < (NBUFS - 1); i++) {
   1019       1.1  christos 		if (!incctx->in_use[i]) {
   1020       1.1  christos 			break;
   1021       1.1  christos 		}
   1022       1.1  christos 	}
   1023       1.1  christos 	INSIST(!incctx->in_use[i]);
   1024  1.12.2.1  perseant 	return i;
   1025       1.1  christos }
   1026       1.1  christos 
   1027       1.1  christos static isc_result_t
   1028       1.1  christos load_text(dns_loadctx_t *lctx) {
   1029       1.1  christos 	dns_rdataclass_t rdclass;
   1030       1.1  christos 	dns_rdatatype_t type, covers;
   1031       1.3  christos 	uint32_t ttl_offset = 0;
   1032  1.12.2.1  perseant 	dns_name_t *new_name = NULL;
   1033       1.3  christos 	bool current_has_delegation = false;
   1034       1.3  christos 	bool finish_origin = false;
   1035       1.3  christos 	bool finish_include = false;
   1036       1.3  christos 	bool read_till_eol = false;
   1037       1.3  christos 	bool initialws;
   1038       1.1  christos 	char *include_file = NULL;
   1039       1.1  christos 	isc_token_t token;
   1040       1.1  christos 	isc_result_t result = ISC_R_UNEXPECTED;
   1041       1.1  christos 	rdatalist_head_t glue_list;
   1042       1.1  christos 	rdatalist_head_t current_list;
   1043  1.12.2.1  perseant 	dns_rdatalist_t *this = NULL;
   1044       1.1  christos 	dns_rdatalist_t *rdatalist = NULL;
   1045  1.12.2.1  perseant 	dns_rdatalist_t *new_rdatalist = NULL;
   1046       1.1  christos 	int rdlcount = 0;
   1047       1.1  christos 	int rdlcount_save = 0;
   1048       1.1  christos 	int rdatalist_size = 0;
   1049       1.1  christos 	isc_buffer_t buffer;
   1050       1.1  christos 	isc_buffer_t target;
   1051       1.1  christos 	isc_buffer_t target_ft;
   1052       1.1  christos 	isc_buffer_t target_save;
   1053       1.1  christos 	dns_rdata_t *rdata = NULL;
   1054  1.12.2.1  perseant 	dns_rdata_t *new_rdata = NULL;
   1055       1.1  christos 	int rdcount = 0;
   1056       1.1  christos 	int rdcount_save = 0;
   1057       1.1  christos 	int rdata_size = 0;
   1058       1.1  christos 	unsigned char *target_mem = NULL;
   1059       1.1  christos 	int target_size = TSIZ;
   1060       1.1  christos 	int new_in_use;
   1061  1.12.2.1  perseant 	isc_mem_t *mctx = NULL;
   1062  1.12.2.1  perseant 	dns_rdatacallbacks_t *callbacks = NULL;
   1063  1.12.2.1  perseant 	dns_incctx_t *ictx = NULL;
   1064       1.1  christos 	char *range = NULL;
   1065       1.1  christos 	char *lhs = NULL;
   1066       1.1  christos 	char *gtype = NULL;
   1067       1.1  christos 	char *rhs = NULL;
   1068  1.12.2.1  perseant 	const char *source = NULL;
   1069       1.1  christos 	unsigned long line = 0;
   1070       1.3  christos 	bool explicit_ttl;
   1071       1.1  christos 	char classname1[DNS_RDATACLASS_FORMATSIZE];
   1072       1.1  christos 	char classname2[DNS_RDATACLASS_FORMATSIZE];
   1073       1.1  christos 	unsigned int options = 0;
   1074       1.1  christos 
   1075       1.1  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
   1076       1.1  christos 	callbacks = lctx->callbacks;
   1077       1.1  christos 	mctx = lctx->mctx;
   1078       1.1  christos 	ictx = lctx->inc;
   1079       1.1  christos 
   1080       1.1  christos 	ISC_LIST_INIT(glue_list);
   1081       1.1  christos 	ISC_LIST_INIT(current_list);
   1082       1.1  christos 
   1083       1.1  christos 	/*
   1084       1.1  christos 	 * Allocate target_size of buffer space.  This is greater than twice
   1085       1.1  christos 	 * the maximum individual RR data size.
   1086       1.1  christos 	 */
   1087       1.1  christos 	target_mem = isc_mem_get(mctx, target_size);
   1088       1.1  christos 	isc_buffer_init(&target, target_mem, target_size);
   1089       1.1  christos 	target_save = target;
   1090       1.1  christos 
   1091  1.12.2.1  perseant 	/* open a database transaction */
   1092  1.12.2.1  perseant 	if (callbacks->setup != NULL) {
   1093  1.12.2.1  perseant 		callbacks->setup(callbacks->add_private);
   1094  1.12.2.1  perseant 	}
   1095  1.12.2.1  perseant 
   1096       1.5  christos 	if ((lctx->options & DNS_MASTER_CHECKNAMES) != 0) {
   1097       1.1  christos 		options |= DNS_RDATA_CHECKNAMES;
   1098       1.5  christos 	}
   1099       1.5  christos 	if ((lctx->options & DNS_MASTER_CHECKNAMESFAIL) != 0) {
   1100       1.1  christos 		options |= DNS_RDATA_CHECKNAMESFAIL;
   1101       1.5  christos 	}
   1102       1.5  christos 	if ((lctx->options & DNS_MASTER_CHECKMX) != 0) {
   1103       1.1  christos 		options |= DNS_RDATA_CHECKMX;
   1104       1.5  christos 	}
   1105       1.5  christos 	if ((lctx->options & DNS_MASTER_CHECKMXFAIL) != 0) {
   1106       1.1  christos 		options |= DNS_RDATA_CHECKMXFAIL;
   1107       1.5  christos 	}
   1108       1.1  christos 	source = isc_lex_getsourcename(lctx->lex);
   1109  1.12.2.1  perseant 	while (true) {
   1110  1.12.2.1  perseant 		if (atomic_load_acquire(&lctx->canceled)) {
   1111  1.12.2.1  perseant 			result = ISC_R_CANCELED;
   1112  1.12.2.1  perseant 			goto log_and_cleanup;
   1113  1.12.2.1  perseant 		}
   1114  1.12.2.1  perseant 
   1115       1.3  christos 		initialws = false;
   1116       1.1  christos 		line = isc_lex_getsourceline(lctx->lex);
   1117       1.1  christos 		GETTOKEN(lctx->lex, ISC_LEXOPT_INITIALWS | ISC_LEXOPT_QSTRING,
   1118       1.3  christos 			 &token, true);
   1119       1.1  christos 		line = isc_lex_getsourceline(lctx->lex);
   1120       1.1  christos 
   1121       1.1  christos 		if (token.type == isc_tokentype_eof) {
   1122       1.5  christos 			if (read_till_eol) {
   1123       1.1  christos 				WARNUNEXPECTEDEOF(lctx->lex);
   1124       1.5  christos 			}
   1125       1.1  christos 			/* Pop the include stack? */
   1126       1.1  christos 			if (ictx->parent != NULL) {
   1127       1.1  christos 				COMMITALL;
   1128       1.1  christos 				lctx->inc = ictx->parent;
   1129       1.1  christos 				ictx->parent = NULL;
   1130       1.1  christos 				incctx_destroy(lctx->mctx, ictx);
   1131       1.5  christos 				RUNTIME_CHECK(isc_lex_close(lctx->lex) ==
   1132       1.5  christos 					      ISC_R_SUCCESS);
   1133       1.1  christos 				line = isc_lex_getsourceline(lctx->lex);
   1134       1.1  christos 				POST(line);
   1135       1.1  christos 				source = isc_lex_getsourcename(lctx->lex);
   1136       1.1  christos 				ictx = lctx->inc;
   1137       1.1  christos 				continue;
   1138       1.1  christos 			}
   1139  1.12.2.1  perseant 			break;
   1140       1.1  christos 		}
   1141       1.1  christos 
   1142       1.1  christos 		if (token.type == isc_tokentype_eol) {
   1143       1.3  christos 			read_till_eol = false;
   1144       1.5  christos 			continue; /* blank line */
   1145       1.1  christos 		}
   1146       1.1  christos 
   1147       1.5  christos 		if (read_till_eol) {
   1148       1.1  christos 			continue;
   1149       1.5  christos 		}
   1150       1.1  christos 
   1151       1.1  christos 		if (token.type == isc_tokentype_initialws) {
   1152       1.1  christos 			/*
   1153       1.1  christos 			 * Still working on the same name.
   1154       1.1  christos 			 */
   1155       1.3  christos 			initialws = true;
   1156       1.1  christos 		} else if (token.type == isc_tokentype_string ||
   1157       1.5  christos 			   token.type == isc_tokentype_qstring)
   1158       1.5  christos 		{
   1159       1.1  christos 			/*
   1160       1.1  christos 			 * "$" Support.
   1161       1.1  christos 			 *
   1162       1.1  christos 			 * "$ORIGIN" and "$INCLUDE" can both take domain names.
   1163       1.1  christos 			 * The processing of "$ORIGIN" and "$INCLUDE" extends
   1164       1.1  christos 			 * across the normal domain name processing.
   1165       1.1  christos 			 */
   1166       1.1  christos 
   1167       1.1  christos 			if (strcasecmp(DNS_AS_STR(token), "$ORIGIN") == 0) {
   1168       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, false);
   1169       1.3  christos 				finish_origin = true;
   1170       1.5  christos 			} else if (strcasecmp(DNS_AS_STR(token), "$TTL") == 0) {
   1171       1.3  christos 				GETTOKENERR(lctx->lex, 0, &token, false,
   1172       1.1  christos 					    lctx->ttl = 0;
   1173       1.3  christos 					    lctx->default_ttl_known = true;);
   1174       1.5  christos 				result = dns_ttl_fromtext(
   1175       1.5  christos 					&token.value.as_textregion, &lctx->ttl);
   1176       1.1  christos 				if (MANYERRS(lctx, result)) {
   1177       1.1  christos 					SETRESULT(lctx, result);
   1178       1.1  christos 					lctx->ttl = 0;
   1179       1.5  christos 				} else if (result != ISC_R_SUCCESS) {
   1180       1.1  christos 					goto insist_and_cleanup;
   1181       1.5  christos 				}
   1182       1.1  christos 				limit_ttl(callbacks, source, line, &lctx->ttl);
   1183       1.1  christos 				lctx->default_ttl = lctx->ttl;
   1184       1.3  christos 				lctx->default_ttl_known = true;
   1185       1.1  christos 				EXPECTEOL;
   1186       1.1  christos 				continue;
   1187       1.5  christos 			} else if (strcasecmp(DNS_AS_STR(token), "$INCLUDE") ==
   1188      1.10  christos 				   0)
   1189      1.10  christos 			{
   1190       1.1  christos 				COMMITALL;
   1191       1.5  christos 				if ((lctx->options & DNS_MASTER_NOINCLUDE) != 0)
   1192       1.1  christos 				{
   1193       1.1  christos 					(callbacks->error)(callbacks,
   1194       1.5  christos 							   "%s: %s:%lu: "
   1195       1.5  christos 							   "$INCLUDE not "
   1196       1.5  christos 							   "allowed",
   1197       1.5  christos 							   "dns_master_load",
   1198       1.5  christos 							   source, line);
   1199       1.1  christos 					result = DNS_R_REFUSED;
   1200       1.1  christos 					goto insist_and_cleanup;
   1201       1.1  christos 				}
   1202       1.1  christos 				if (ttl_offset != 0) {
   1203       1.1  christos 					(callbacks->error)(callbacks,
   1204       1.5  christos 							   "%s: %s:%lu: "
   1205       1.5  christos 							   "$INCLUDE "
   1206       1.5  christos 							   "may not be used "
   1207       1.5  christos 							   "with $DATE",
   1208       1.5  christos 							   "dns_master_load",
   1209       1.5  christos 							   source, line);
   1210       1.1  christos 					result = DNS_R_SYNTAX;
   1211       1.1  christos 					goto insist_and_cleanup;
   1212       1.1  christos 				}
   1213       1.1  christos 				GETTOKEN(lctx->lex, ISC_LEXOPT_QSTRING, &token,
   1214       1.3  christos 					 false);
   1215       1.5  christos 				if (include_file != NULL) {
   1216       1.1  christos 					isc_mem_free(mctx, include_file);
   1217       1.1  christos 				}
   1218       1.5  christos 				include_file =
   1219       1.5  christos 					isc_mem_strdup(mctx, DNS_AS_STR(token));
   1220       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, true);
   1221       1.1  christos 
   1222       1.1  christos 				if (token.type == isc_tokentype_eol ||
   1223      1.10  christos 				    token.type == isc_tokentype_eof)
   1224      1.10  christos 				{
   1225       1.5  christos 					if (token.type == isc_tokentype_eof) {
   1226       1.1  christos 						WARNUNEXPECTEDEOF(lctx->lex);
   1227       1.5  christos 					}
   1228       1.1  christos 					/*
   1229       1.1  christos 					 * No origin field.
   1230       1.1  christos 					 */
   1231       1.1  christos 					result = pushfile(include_file,
   1232       1.1  christos 							  ictx->origin, lctx);
   1233       1.1  christos 					if (MANYERRS(lctx, result)) {
   1234       1.1  christos 						SETRESULT(lctx, result);
   1235       1.1  christos 						LOGITFILE(result, include_file);
   1236       1.1  christos 						continue;
   1237       1.1  christos 					} else if (result != ISC_R_SUCCESS) {
   1238       1.1  christos 						LOGITFILE(result, include_file);
   1239       1.1  christos 						goto insist_and_cleanup;
   1240       1.1  christos 					}
   1241       1.1  christos 					ictx = lctx->inc;
   1242       1.5  christos 					source = isc_lex_getsourcename(
   1243       1.5  christos 						lctx->lex);
   1244       1.1  christos 					line = isc_lex_getsourceline(lctx->lex);
   1245       1.1  christos 					POST(line);
   1246       1.1  christos 					continue;
   1247       1.1  christos 				}
   1248       1.1  christos 				/*
   1249       1.1  christos 				 * There is an origin field.  Fall through
   1250       1.1  christos 				 * to domain name processing code and do
   1251       1.1  christos 				 * the actual inclusion later.
   1252       1.1  christos 				 */
   1253       1.3  christos 				finish_include = true;
   1254       1.5  christos 			} else if (strcasecmp(DNS_AS_STR(token), "$DATE") == 0)
   1255       1.5  christos 			{
   1256       1.3  christos 				int64_t dump_time64;
   1257  1.12.2.1  perseant 				isc_stdtime_t dump_time;
   1258  1.12.2.1  perseant 				isc_stdtime_t current_time = isc_stdtime_now();
   1259       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, false);
   1260       1.1  christos 				result = dns_time64_fromtext(DNS_AS_STR(token),
   1261       1.1  christos 							     &dump_time64);
   1262       1.1  christos 				if (MANYERRS(lctx, result)) {
   1263       1.1  christos 					SETRESULT(lctx, result);
   1264       1.1  christos 					LOGIT(result);
   1265       1.1  christos 					dump_time64 = 0;
   1266       1.5  christos 				} else if (result != ISC_R_SUCCESS) {
   1267       1.1  christos 					goto log_and_cleanup;
   1268       1.5  christos 				}
   1269       1.1  christos 				dump_time = (isc_stdtime_t)dump_time64;
   1270       1.1  christos 				if (dump_time != dump_time64) {
   1271      1.12  christos 					UNEXPECTED_ERROR("%s: %s:%lu: $DATE "
   1272       1.5  christos 							 "outside epoch",
   1273       1.5  christos 							 "dns_master_load",
   1274       1.5  christos 							 source, line);
   1275       1.1  christos 					result = ISC_R_UNEXPECTED;
   1276       1.1  christos 					goto insist_and_cleanup;
   1277       1.1  christos 				}
   1278       1.1  christos 				if (dump_time > current_time) {
   1279      1.12  christos 					UNEXPECTED_ERROR("%s: %s:%lu: "
   1280       1.5  christos 							 "$DATE in future, "
   1281       1.5  christos 							 "using current date",
   1282       1.5  christos 							 "dns_master_load",
   1283       1.5  christos 							 source, line);
   1284       1.1  christos 					dump_time = current_time;
   1285       1.1  christos 				}
   1286       1.1  christos 				ttl_offset = current_time - dump_time;
   1287       1.1  christos 				EXPECTEOL;
   1288       1.1  christos 				continue;
   1289       1.5  christos 			} else if (strcasecmp(DNS_AS_STR(token), "$GENERATE") ==
   1290      1.10  christos 				   0)
   1291      1.10  christos 			{
   1292       1.1  christos 				/*
   1293       1.1  christos 				 * Lazy cleanup.
   1294       1.1  christos 				 */
   1295       1.5  christos 				if (range != NULL) {
   1296       1.1  christos 					isc_mem_free(mctx, range);
   1297       1.5  christos 				}
   1298       1.5  christos 				if (lhs != NULL) {
   1299       1.1  christos 					isc_mem_free(mctx, lhs);
   1300       1.5  christos 				}
   1301       1.5  christos 				if (gtype != NULL) {
   1302       1.1  christos 					isc_mem_free(mctx, gtype);
   1303       1.5  christos 				}
   1304       1.5  christos 				if (rhs != NULL) {
   1305       1.1  christos 					isc_mem_free(mctx, rhs);
   1306       1.5  christos 				}
   1307       1.1  christos 				range = lhs = gtype = rhs = NULL;
   1308       1.1  christos 				/* RANGE */
   1309       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, false);
   1310       1.5  christos 				range = isc_mem_strdup(mctx, DNS_AS_STR(token));
   1311       1.1  christos 				/* LHS */
   1312       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, false);
   1313       1.1  christos 				lhs = isc_mem_strdup(mctx, DNS_AS_STR(token));
   1314       1.1  christos 				rdclass = 0;
   1315       1.3  christos 				explicit_ttl = false;
   1316       1.1  christos 				/* CLASS? */
   1317       1.3  christos 				GETTOKEN(lctx->lex, 0, &token, false);
   1318       1.5  christos 				if (dns_rdataclass_fromtext(
   1319       1.5  christos 					    &rdclass,
   1320       1.5  christos 					    &token.value.as_textregion) ==
   1321       1.5  christos 				    ISC_R_SUCCESS)
   1322       1.5  christos 				{
   1323       1.5  christos 					GETTOKEN(lctx->lex, 0, &token, false);
   1324       1.1  christos 				}
   1325       1.1  christos 				/* TTL? */
   1326       1.1  christos 				if (dns_ttl_fromtext(&token.value.as_textregion,
   1327       1.5  christos 						     &lctx->ttl) ==
   1328      1.10  christos 				    ISC_R_SUCCESS)
   1329      1.10  christos 				{
   1330       1.1  christos 					limit_ttl(callbacks, source, line,
   1331       1.1  christos 						  &lctx->ttl);
   1332       1.3  christos 					lctx->ttl_known = true;
   1333       1.3  christos 					explicit_ttl = true;
   1334       1.5  christos 					GETTOKEN(lctx->lex, 0, &token, false);
   1335       1.1  christos 				}
   1336       1.1  christos 				/* CLASS? */
   1337       1.1  christos 				if (rdclass == 0 &&
   1338       1.5  christos 				    dns_rdataclass_fromtext(
   1339       1.5  christos 					    &rdclass,
   1340       1.5  christos 					    &token.value.as_textregion) ==
   1341       1.5  christos 					    ISC_R_SUCCESS)
   1342       1.5  christos 				{
   1343       1.5  christos 					GETTOKEN(lctx->lex, 0, &token, false);
   1344       1.5  christos 				}
   1345       1.1  christos 				/* TYPE */
   1346       1.5  christos 				gtype = isc_mem_strdup(mctx, DNS_AS_STR(token));
   1347       1.1  christos 				/* RHS */
   1348       1.5  christos 				GETTOKEN(lctx->lex, ISC_LEXOPT_QSTRING, &token,
   1349       1.5  christos 					 false);
   1350       1.1  christos 				rhs = isc_mem_strdup(mctx, DNS_AS_STR(token));
   1351       1.1  christos 				if (!lctx->ttl_known &&
   1352      1.10  christos 				    !lctx->default_ttl_known)
   1353      1.10  christos 				{
   1354       1.1  christos 					(*callbacks->error)(callbacks,
   1355       1.5  christos 							    "%s: %s:%lu: no "
   1356       1.5  christos 							    "TTL specified",
   1357       1.5  christos 							    "dns_master_load",
   1358       1.5  christos 							    source, line);
   1359       1.1  christos 					result = DNS_R_NOTTL;
   1360       1.1  christos 					if (MANYERRS(lctx, result)) {
   1361       1.1  christos 						SETRESULT(lctx, result);
   1362       1.1  christos 						lctx->ttl = 0;
   1363       1.1  christos 					} else {
   1364       1.1  christos 						goto insist_and_cleanup;
   1365       1.1  christos 					}
   1366       1.1  christos 				} else if (!explicit_ttl &&
   1367      1.10  christos 					   lctx->default_ttl_known)
   1368      1.10  christos 				{
   1369       1.1  christos 					lctx->ttl = lctx->default_ttl;
   1370       1.1  christos 				}
   1371       1.1  christos 				/*
   1372       1.1  christos 				 * If the class specified does not match the
   1373       1.1  christos 				 * zone's class print out a error message and
   1374       1.1  christos 				 * exit.
   1375       1.1  christos 				 */
   1376       1.1  christos 				if (rdclass != 0 && rdclass != lctx->zclass) {
   1377       1.1  christos 					goto bad_class;
   1378       1.1  christos 				}
   1379       1.1  christos 				result = generate(lctx, range, lhs, gtype, rhs,
   1380       1.1  christos 						  source, line);
   1381       1.1  christos 				if (MANYERRS(lctx, result)) {
   1382       1.1  christos 					SETRESULT(lctx, result);
   1383       1.5  christos 				} else if (result != ISC_R_SUCCESS) {
   1384       1.1  christos 					goto insist_and_cleanup;
   1385       1.5  christos 				}
   1386       1.1  christos 				EXPECTEOL;
   1387       1.1  christos 				continue;
   1388       1.5  christos 			} else if (strncasecmp(DNS_AS_STR(token), "$", 1) == 0)
   1389       1.5  christos 			{
   1390       1.1  christos 				(callbacks->error)(callbacks,
   1391       1.5  christos 						   "%s: %s:%lu: "
   1392       1.5  christos 						   "unknown $ directive '%s'",
   1393       1.5  christos 						   "dns_master_load", source,
   1394       1.5  christos 						   line, DNS_AS_STR(token));
   1395       1.1  christos 				result = DNS_R_SYNTAX;
   1396       1.1  christos 				if (MANYERRS(lctx, result)) {
   1397       1.1  christos 					SETRESULT(lctx, result);
   1398       1.1  christos 				} else {
   1399       1.1  christos 					goto insist_and_cleanup;
   1400       1.1  christos 				}
   1401       1.1  christos 			}
   1402       1.1  christos 
   1403       1.1  christos 			/*
   1404       1.1  christos 			 * Normal processing resumes.
   1405       1.1  christos 			 */
   1406       1.1  christos 			new_in_use = find_free_name(ictx);
   1407       1.5  christos 			new_name = dns_fixedname_initname(
   1408       1.5  christos 				&ictx->fixed[new_in_use]);
   1409       1.1  christos 			isc_buffer_init(&buffer, token.value.as_region.base,
   1410       1.1  christos 					token.value.as_region.length);
   1411       1.1  christos 			isc_buffer_add(&buffer, token.value.as_region.length);
   1412       1.1  christos 			isc_buffer_setactive(&buffer,
   1413       1.1  christos 					     token.value.as_region.length);
   1414       1.1  christos 			result = dns_name_fromtext(new_name, &buffer,
   1415       1.5  christos 						   ictx->origin, 0, NULL);
   1416       1.1  christos 			if (MANYERRS(lctx, result)) {
   1417       1.1  christos 				SETRESULT(lctx, result);
   1418       1.1  christos 				LOGIT(result);
   1419       1.3  christos 				read_till_eol = true;
   1420       1.1  christos 				continue;
   1421       1.5  christos 			} else if (result != ISC_R_SUCCESS) {
   1422       1.1  christos 				goto log_and_cleanup;
   1423       1.5  christos 			}
   1424       1.1  christos 
   1425       1.1  christos 			/*
   1426       1.1  christos 			 * Finish $ORIGIN / $INCLUDE processing if required.
   1427       1.1  christos 			 */
   1428       1.1  christos 			if (finish_origin) {
   1429       1.5  christos 				if (ictx->origin_in_use != -1) {
   1430       1.1  christos 					ictx->in_use[ictx->origin_in_use] =
   1431       1.3  christos 						false;
   1432       1.5  christos 				}
   1433       1.1  christos 				ictx->origin_in_use = new_in_use;
   1434       1.3  christos 				ictx->in_use[ictx->origin_in_use] = true;
   1435       1.1  christos 				ictx->origin = new_name;
   1436       1.3  christos 				ictx->origin_changed = true;
   1437       1.3  christos 				finish_origin = false;
   1438       1.1  christos 				EXPECTEOL;
   1439       1.1  christos 				continue;
   1440       1.1  christos 			}
   1441       1.1  christos 			if (finish_include) {
   1442       1.3  christos 				finish_include = false;
   1443       1.1  christos 				EXPECTEOL;
   1444       1.1  christos 				result = pushfile(include_file, new_name, lctx);
   1445       1.1  christos 				if (MANYERRS(lctx, result)) {
   1446       1.1  christos 					SETRESULT(lctx, result);
   1447       1.1  christos 					LOGITFILE(result, include_file);
   1448       1.1  christos 					continue;
   1449       1.1  christos 				} else if (result != ISC_R_SUCCESS) {
   1450       1.1  christos 					LOGITFILE(result, include_file);
   1451       1.1  christos 					goto insist_and_cleanup;
   1452       1.1  christos 				}
   1453       1.1  christos 				ictx = lctx->inc;
   1454       1.3  christos 				ictx->origin_changed = true;
   1455       1.1  christos 				source = isc_lex_getsourcename(lctx->lex);
   1456       1.1  christos 				line = isc_lex_getsourceline(lctx->lex);
   1457       1.1  christos 				POST(line);
   1458       1.1  christos 				continue;
   1459       1.1  christos 			}
   1460       1.1  christos 
   1461       1.1  christos 			/*
   1462       1.1  christos 			 * "$" Processing Finished
   1463       1.1  christos 			 */
   1464       1.1  christos 
   1465       1.1  christos 			/*
   1466       1.1  christos 			 * If we are processing glue and the new name does
   1467       1.1  christos 			 * not match the current glue name, commit the glue
   1468       1.1  christos 			 * and pop stacks leaving us in 'normal' processing
   1469       1.1  christos 			 * state.  Linked lists are undone by commit().
   1470       1.1  christos 			 */
   1471       1.1  christos 			if (ictx->glue != NULL &&
   1472      1.10  christos 			    !dns_name_caseequal(ictx->glue, new_name))
   1473      1.10  christos 			{
   1474       1.1  christos 				result = commit(callbacks, lctx, &glue_list,
   1475       1.1  christos 						ictx->glue, source,
   1476       1.1  christos 						ictx->glue_line);
   1477       1.1  christos 				if (MANYERRS(lctx, result)) {
   1478       1.1  christos 					SETRESULT(lctx, result);
   1479       1.5  christos 				} else if (result != ISC_R_SUCCESS) {
   1480       1.1  christos 					goto insist_and_cleanup;
   1481       1.5  christos 				}
   1482       1.5  christos 				if (ictx->glue_in_use != -1) {
   1483       1.5  christos 					ictx->in_use[ictx->glue_in_use] = false;
   1484       1.5  christos 				}
   1485       1.1  christos 				ictx->glue_in_use = -1;
   1486       1.1  christos 				ictx->glue = NULL;
   1487       1.1  christos 				rdcount = rdcount_save;
   1488       1.1  christos 				rdlcount = rdlcount_save;
   1489       1.1  christos 				target = target_save;
   1490       1.1  christos 			}
   1491       1.1  christos 
   1492       1.1  christos 			/*
   1493       1.1  christos 			 * If we are in 'normal' processing state and the new
   1494       1.1  christos 			 * name does not match the current name, see if the
   1495       1.1  christos 			 * new name is for glue and treat it as such,
   1496       1.1  christos 			 * otherwise we have a new name so commit what we
   1497       1.1  christos 			 * have.
   1498       1.1  christos 			 */
   1499       1.5  christos 			if ((ictx->glue == NULL) &&
   1500       1.5  christos 			    (ictx->current == NULL ||
   1501       1.5  christos 			     !dns_name_caseequal(ictx->current, new_name)))
   1502       1.5  christos 			{
   1503       1.1  christos 				if (current_has_delegation &&
   1504      1.10  christos 				    is_glue(&current_list, new_name))
   1505      1.10  christos 				{
   1506       1.1  christos 					rdcount_save = rdcount;
   1507       1.1  christos 					rdlcount_save = rdlcount;
   1508       1.1  christos 					target_save = target;
   1509       1.1  christos 					ictx->glue = new_name;
   1510       1.1  christos 					ictx->glue_in_use = new_in_use;
   1511       1.5  christos 					ictx->in_use[ictx->glue_in_use] = true;
   1512       1.1  christos 				} else {
   1513       1.1  christos 					result = commit(callbacks, lctx,
   1514       1.1  christos 							&current_list,
   1515       1.5  christos 							ictx->current, source,
   1516       1.1  christos 							ictx->current_line);
   1517       1.1  christos 					if (MANYERRS(lctx, result)) {
   1518       1.1  christos 						SETRESULT(lctx, result);
   1519       1.5  christos 					} else if (result != ISC_R_SUCCESS) {
   1520       1.1  christos 						goto insist_and_cleanup;
   1521       1.5  christos 					}
   1522       1.1  christos 					rdcount = 0;
   1523       1.1  christos 					rdlcount = 0;
   1524       1.5  christos 					if (ictx->current_in_use != -1) {
   1525       1.5  christos 						ictx->in_use
   1526       1.5  christos 							[ictx->current_in_use] =
   1527       1.5  christos 							false;
   1528       1.5  christos 					}
   1529       1.1  christos 					ictx->current_in_use = new_in_use;
   1530       1.1  christos 					ictx->in_use[ictx->current_in_use] =
   1531       1.3  christos 						true;
   1532       1.1  christos 					ictx->current = new_name;
   1533       1.3  christos 					current_has_delegation = false;
   1534       1.1  christos 					isc_buffer_init(&target, target_mem,
   1535       1.1  christos 							target_size);
   1536       1.1  christos 				}
   1537       1.1  christos 				/*
   1538       1.1  christos 				 * Check for internal wildcards.
   1539       1.1  christos 				 */
   1540       1.5  christos 				if ((lctx->options &
   1541      1.10  christos 				     DNS_MASTER_CHECKWILDCARD) != 0)
   1542      1.10  christos 				{
   1543       1.1  christos 					check_wildcard(ictx, source, line,
   1544       1.1  christos 						       callbacks);
   1545       1.5  christos 				}
   1546       1.1  christos 			}
   1547       1.6  christos 			if (dns_master_isprimary(lctx) &&
   1548      1.10  christos 			    !dns_name_issubdomain(new_name, lctx->top))
   1549      1.10  christos 			{
   1550       1.1  christos 				char namebuf[DNS_NAME_FORMATSIZE];
   1551       1.1  christos 				dns_name_format(new_name, namebuf,
   1552       1.1  christos 						sizeof(namebuf));
   1553       1.1  christos 				/*
   1554       1.1  christos 				 * Ignore out-of-zone data.
   1555       1.1  christos 				 */
   1556       1.1  christos 				(*callbacks->warn)(callbacks,
   1557       1.5  christos 						   "%s:%lu: "
   1558       1.5  christos 						   "ignoring out-of-zone data "
   1559       1.5  christos 						   "(%s)",
   1560       1.5  christos 						   source, line, namebuf);
   1561       1.3  christos 				ictx->drop = true;
   1562       1.5  christos 			} else {
   1563       1.3  christos 				ictx->drop = false;
   1564       1.5  christos 			}
   1565       1.1  christos 		} else {
   1566      1.12  christos 			UNEXPECTED_ERROR("%s:%lu: isc_lex_gettoken() returned "
   1567       1.1  christos 					 "unexpected token type (%d)",
   1568       1.1  christos 					 source, line, token.type);
   1569       1.1  christos 			result = ISC_R_UNEXPECTED;
   1570       1.1  christos 			if (MANYERRS(lctx, result)) {
   1571       1.1  christos 				SETRESULT(lctx, result);
   1572       1.1  christos 				LOGIT(result);
   1573       1.1  christos 				continue;
   1574       1.1  christos 			} else {
   1575       1.1  christos 				goto insist_and_cleanup;
   1576       1.1  christos 			}
   1577       1.1  christos 		}
   1578       1.1  christos 
   1579       1.1  christos 		/*
   1580       1.1  christos 		 * Find TTL, class and type.  Both TTL and class are optional
   1581       1.1  christos 		 * and may occur in any order if they exist. TTL and class
   1582       1.1  christos 		 * come before type which must exist.
   1583       1.1  christos 		 *
   1584       1.1  christos 		 * [<TTL>] [<class>] <type> <RDATA>
   1585       1.1  christos 		 * [<class>] [<TTL>] <type> <RDATA>
   1586       1.1  christos 		 */
   1587       1.1  christos 
   1588       1.1  christos 		type = 0;
   1589       1.1  christos 		rdclass = 0;
   1590       1.1  christos 
   1591       1.1  christos 		GETTOKEN(lctx->lex, 0, &token, initialws);
   1592       1.1  christos 
   1593       1.1  christos 		if (initialws) {
   1594       1.1  christos 			if (token.type == isc_tokentype_eol) {
   1595       1.3  christos 				read_till_eol = false;
   1596       1.5  christos 				continue; /* blank line */
   1597       1.1  christos 			}
   1598       1.1  christos 
   1599       1.1  christos 			if (token.type == isc_tokentype_eof) {
   1600       1.1  christos 				WARNUNEXPECTEDEOF(lctx->lex);
   1601       1.3  christos 				read_till_eol = false;
   1602       1.1  christos 				isc_lex_ungettoken(lctx->lex, &token);
   1603       1.1  christos 				continue;
   1604       1.1  christos 			}
   1605       1.1  christos 
   1606       1.1  christos 			if (ictx->current == NULL) {
   1607       1.1  christos 				(*callbacks->error)(callbacks,
   1608       1.5  christos 						    "%s:%lu: no current owner "
   1609       1.5  christos 						    "name",
   1610       1.5  christos 						    source, line);
   1611       1.1  christos 				result = DNS_R_NOOWNER;
   1612       1.1  christos 				if (MANYERRS(lctx, result)) {
   1613       1.1  christos 					SETRESULT(lctx, result);
   1614       1.3  christos 					read_till_eol = true;
   1615       1.1  christos 					continue;
   1616       1.1  christos 				} else {
   1617       1.1  christos 					goto insist_and_cleanup;
   1618       1.1  christos 				}
   1619       1.1  christos 			}
   1620       1.1  christos 
   1621       1.1  christos 			if (ictx->origin_changed) {
   1622       1.1  christos 				char cbuf[DNS_NAME_FORMATSIZE];
   1623       1.1  christos 				char obuf[DNS_NAME_FORMATSIZE];
   1624       1.1  christos 				dns_name_format(ictx->current, cbuf,
   1625       1.1  christos 						sizeof(cbuf));
   1626       1.1  christos 				dns_name_format(ictx->origin, obuf,
   1627       1.1  christos 						sizeof(obuf));
   1628       1.1  christos 				(*callbacks->warn)(callbacks,
   1629       1.5  christos 						   "%s:%lu: record with "
   1630       1.5  christos 						   "inherited "
   1631       1.5  christos 						   "owner (%s) immediately "
   1632       1.5  christos 						   "after "
   1633       1.5  christos 						   "$ORIGIN (%s)",
   1634       1.5  christos 						   source, line, cbuf, obuf);
   1635       1.1  christos 			}
   1636       1.1  christos 		}
   1637       1.1  christos 
   1638       1.3  christos 		ictx->origin_changed = false;
   1639       1.1  christos 
   1640       1.1  christos 		if (dns_rdataclass_fromtext(&rdclass,
   1641       1.5  christos 					    &token.value.as_textregion) ==
   1642       1.5  christos 		    ISC_R_SUCCESS)
   1643       1.5  christos 		{
   1644       1.3  christos 			GETTOKEN(lctx->lex, 0, &token, false);
   1645       1.5  christos 		}
   1646       1.1  christos 
   1647       1.3  christos 		explicit_ttl = false;
   1648       1.1  christos 		result = dns_ttl_fromtext(&token.value.as_textregion,
   1649       1.1  christos 					  &lctx->ttl);
   1650       1.1  christos 		if (result == ISC_R_SUCCESS) {
   1651       1.1  christos 			limit_ttl(callbacks, source, line, &lctx->ttl);
   1652       1.3  christos 			explicit_ttl = true;
   1653       1.3  christos 			lctx->ttl_known = true;
   1654       1.3  christos 			GETTOKEN(lctx->lex, 0, &token, false);
   1655       1.1  christos 		}
   1656       1.1  christos 
   1657       1.1  christos 		if (token.type != isc_tokentype_string) {
   1658      1.12  christos 			UNEXPECTED_ERROR("isc_lex_gettoken() returned "
   1659       1.5  christos 					 "unexpected token type");
   1660       1.1  christos 			result = ISC_R_UNEXPECTED;
   1661       1.1  christos 			if (MANYERRS(lctx, result)) {
   1662       1.1  christos 				SETRESULT(lctx, result);
   1663       1.3  christos 				read_till_eol = true;
   1664       1.1  christos 				continue;
   1665       1.1  christos 			} else {
   1666       1.1  christos 				goto insist_and_cleanup;
   1667       1.1  christos 			}
   1668       1.1  christos 		}
   1669       1.1  christos 
   1670       1.1  christos 		if (rdclass == 0 &&
   1671       1.1  christos 		    dns_rdataclass_fromtext(&rdclass,
   1672       1.5  christos 					    &token.value.as_textregion) ==
   1673       1.5  christos 			    ISC_R_SUCCESS)
   1674       1.5  christos 		{
   1675       1.3  christos 			GETTOKEN(lctx->lex, 0, &token, false);
   1676       1.5  christos 		}
   1677       1.1  christos 
   1678       1.1  christos 		if (token.type != isc_tokentype_string) {
   1679      1.12  christos 			UNEXPECTED_ERROR("isc_lex_gettoken() returned "
   1680       1.5  christos 					 "unexpected token type");
   1681       1.1  christos 			result = ISC_R_UNEXPECTED;
   1682       1.1  christos 			if (MANYERRS(lctx, result)) {
   1683       1.1  christos 				SETRESULT(lctx, result);
   1684       1.3  christos 				read_till_eol = true;
   1685       1.1  christos 				continue;
   1686       1.1  christos 			} else {
   1687       1.1  christos 				goto insist_and_cleanup;
   1688       1.1  christos 			}
   1689       1.1  christos 		}
   1690       1.1  christos 
   1691       1.1  christos 		result = dns_rdatatype_fromtext(&type,
   1692       1.1  christos 						&token.value.as_textregion);
   1693       1.1  christos 		if (result != ISC_R_SUCCESS) {
   1694       1.5  christos 			(*callbacks->warn)(
   1695       1.5  christos 				callbacks, "%s:%lu: unknown RR type '%.*s'",
   1696       1.5  christos 				source, line, token.value.as_textregion.length,
   1697       1.5  christos 				token.value.as_textregion.base);
   1698       1.1  christos 			if (MANYERRS(lctx, result)) {
   1699       1.1  christos 				SETRESULT(lctx, result);
   1700       1.3  christos 				read_till_eol = true;
   1701       1.1  christos 				continue;
   1702  1.12.2.1  perseant 			} else {
   1703       1.1  christos 				goto insist_and_cleanup;
   1704       1.5  christos 			}
   1705       1.1  christos 		}
   1706       1.1  christos 
   1707       1.1  christos 		/*
   1708       1.1  christos 		 * If the class specified does not match the zone's class
   1709       1.1  christos 		 * print out a error message and exit.
   1710       1.1  christos 		 */
   1711       1.1  christos 		if (rdclass != 0 && rdclass != lctx->zclass) {
   1712       1.5  christos 		bad_class:
   1713       1.1  christos 
   1714       1.1  christos 			dns_rdataclass_format(rdclass, classname1,
   1715       1.1  christos 					      sizeof(classname1));
   1716       1.1  christos 			dns_rdataclass_format(lctx->zclass, classname2,
   1717       1.1  christos 					      sizeof(classname2));
   1718       1.1  christos 			(*callbacks->error)(callbacks,
   1719       1.1  christos 					    "%s:%lu: class '%s' != "
   1720       1.1  christos 					    "zone class '%s'",
   1721       1.5  christos 					    source, line, classname1,
   1722       1.5  christos 					    classname2);
   1723       1.1  christos 			result = DNS_R_BADCLASS;
   1724       1.1  christos 			if (MANYERRS(lctx, result)) {
   1725       1.1  christos 				SETRESULT(lctx, result);
   1726       1.3  christos 				read_till_eol = true;
   1727       1.1  christos 				continue;
   1728       1.1  christos 			} else {
   1729       1.1  christos 				goto insist_and_cleanup;
   1730       1.1  christos 			}
   1731       1.1  christos 		}
   1732       1.1  christos 
   1733       1.5  christos 		if (type == dns_rdatatype_ns && ictx->glue == NULL) {
   1734       1.3  christos 			current_has_delegation = true;
   1735       1.5  christos 		}
   1736       1.1  christos 
   1737       1.1  christos 		/*
   1738       1.1  christos 		 * RFC1123: MD and MF are not allowed to be loaded from
   1739       1.1  christos 		 * master files.
   1740       1.1  christos 		 */
   1741       1.6  christos 		if (dns_master_isprimary(lctx) &&
   1742       1.5  christos 		    (type == dns_rdatatype_md || type == dns_rdatatype_mf))
   1743       1.5  christos 		{
   1744       1.3  christos 			char typebuf[DNS_RDATATYPE_FORMATSIZE];
   1745       1.1  christos 
   1746       1.1  christos 			result = DNS_R_OBSOLETE;
   1747       1.1  christos 
   1748       1.3  christos 			dns_rdatatype_format(type, typebuf, sizeof(typebuf));
   1749       1.5  christos 			(*callbacks->error)(callbacks, "%s:%lu: %s '%s': %s",
   1750       1.5  christos 					    source, line, "type", typebuf,
   1751      1.12  christos 					    isc_result_totext(result));
   1752       1.1  christos 			if (MANYERRS(lctx, result)) {
   1753       1.1  christos 				SETRESULT(lctx, result);
   1754       1.5  christos 			} else {
   1755       1.1  christos 				goto insist_and_cleanup;
   1756       1.5  christos 			}
   1757       1.1  christos 		}
   1758       1.1  christos 
   1759       1.1  christos 		/*
   1760       1.1  christos 		 * RFC2930: TKEY and TSIG are not allowed to be loaded
   1761       1.1  christos 		 * from master files.
   1762       1.1  christos 		 */
   1763       1.6  christos 		if (dns_master_isprimary(lctx) && dns_rdatatype_ismeta(type)) {
   1764       1.3  christos 			char typebuf[DNS_RDATATYPE_FORMATSIZE];
   1765       1.1  christos 
   1766       1.1  christos 			result = DNS_R_METATYPE;
   1767       1.1  christos 
   1768       1.3  christos 			dns_rdatatype_format(type, typebuf, sizeof(typebuf));
   1769       1.5  christos 			(*callbacks->error)(callbacks, "%s:%lu: %s '%s': %s",
   1770       1.5  christos 					    source, line, "type", typebuf,
   1771      1.12  christos 					    isc_result_totext(result));
   1772       1.1  christos 			if (MANYERRS(lctx, result)) {
   1773       1.1  christos 				SETRESULT(lctx, result);
   1774       1.5  christos 			} else {
   1775       1.1  christos 				goto insist_and_cleanup;
   1776       1.5  christos 			}
   1777       1.1  christos 		}
   1778       1.1  christos 
   1779       1.1  christos 		/*
   1780       1.1  christos 		 * Find a rdata structure.
   1781       1.1  christos 		 */
   1782       1.1  christos 		if (rdcount == rdata_size) {
   1783       1.1  christos 			new_rdata = grow_rdata(rdata_size + RDSZ, rdata,
   1784       1.1  christos 					       rdata_size, &current_list,
   1785       1.1  christos 					       &glue_list, mctx);
   1786       1.1  christos 			if (new_rdata == NULL) {
   1787       1.1  christos 				result = ISC_R_NOMEMORY;
   1788       1.1  christos 				goto log_and_cleanup;
   1789       1.1  christos 			}
   1790       1.1  christos 			rdata_size += RDSZ;
   1791       1.1  christos 			rdata = new_rdata;
   1792       1.1  christos 		}
   1793       1.1  christos 
   1794       1.1  christos 		/*
   1795       1.1  christos 		 * Peek at the NS record.
   1796       1.1  christos 		 */
   1797       1.1  christos 		if (type == dns_rdatatype_ns &&
   1798       1.1  christos 		    lctx->zclass == dns_rdataclass_in &&
   1799       1.5  christos 		    (lctx->options & DNS_MASTER_CHECKNS) != 0)
   1800       1.5  christos 		{
   1801       1.3  christos 			GETTOKEN(lctx->lex, 0, &token, false);
   1802       1.1  christos 			result = check_ns(lctx, &token, source, line);
   1803       1.1  christos 			isc_lex_ungettoken(lctx->lex, &token);
   1804       1.1  christos 			if ((lctx->options & DNS_MASTER_FATALNS) != 0) {
   1805       1.1  christos 				if (MANYERRS(lctx, result)) {
   1806       1.1  christos 					SETRESULT(lctx, result);
   1807       1.5  christos 				} else if (result != ISC_R_SUCCESS) {
   1808       1.1  christos 					goto insist_and_cleanup;
   1809       1.5  christos 				}
   1810       1.1  christos 			}
   1811       1.1  christos 		}
   1812       1.1  christos 
   1813       1.1  christos 		/*
   1814       1.1  christos 		 * Check owner name.
   1815       1.1  christos 		 */
   1816       1.1  christos 		options &= ~DNS_RDATA_CHECKREVERSE;
   1817       1.1  christos 		if ((lctx->options & DNS_MASTER_CHECKNAMES) != 0) {
   1818       1.3  christos 			bool ok;
   1819       1.1  christos 			dns_name_t *name;
   1820       1.1  christos 
   1821       1.5  christos 			name = (ictx->glue != NULL) ? ictx->glue
   1822       1.5  christos 						    : ictx->current;
   1823       1.1  christos 			ok = dns_rdata_checkowner(name, lctx->zclass, type,
   1824       1.3  christos 						  true);
   1825       1.1  christos 			if (!ok) {
   1826       1.1  christos 				char namebuf[DNS_NAME_FORMATSIZE];
   1827       1.1  christos 				const char *desc;
   1828       1.1  christos 				dns_name_format(name, namebuf, sizeof(namebuf));
   1829       1.1  christos 				result = DNS_R_BADOWNERNAME;
   1830      1.12  christos 				desc = isc_result_totext(result);
   1831       1.1  christos 				if (CHECKNAMESFAIL(lctx->options) ||
   1832      1.10  christos 				    type == dns_rdatatype_nsec3)
   1833      1.10  christos 				{
   1834       1.5  christos 					(*callbacks->error)(
   1835       1.5  christos 						callbacks, "%s:%lu: %s: %s",
   1836       1.5  christos 						source, line, namebuf, desc);
   1837       1.1  christos 					if (MANYERRS(lctx, result)) {
   1838       1.1  christos 						SETRESULT(lctx, result);
   1839       1.1  christos 					} else {
   1840       1.1  christos 						goto cleanup;
   1841       1.1  christos 					}
   1842       1.1  christos 				} else {
   1843       1.5  christos 					(*callbacks->warn)(
   1844       1.5  christos 						callbacks, "%s:%lu: %s: %s",
   1845       1.5  christos 						source, line, namebuf, desc);
   1846       1.1  christos 				}
   1847       1.1  christos 			}
   1848       1.1  christos 			if (type == dns_rdatatype_ptr &&
   1849       1.1  christos 			    !dns_name_isdnssd(name) &&
   1850       1.1  christos 			    (dns_name_issubdomain(name, &in_addr_arpa) ||
   1851       1.1  christos 			     dns_name_issubdomain(name, &ip6_arpa) ||
   1852       1.1  christos 			     dns_name_issubdomain(name, &ip6_int)))
   1853       1.5  christos 			{
   1854       1.1  christos 				options |= DNS_RDATA_CHECKREVERSE;
   1855       1.5  christos 			}
   1856       1.1  christos 		}
   1857       1.1  christos 
   1858       1.1  christos 		/*
   1859       1.1  christos 		 * Read rdata contents.
   1860       1.1  christos 		 */
   1861       1.1  christos 		dns_rdata_init(&rdata[rdcount]);
   1862       1.1  christos 		target_ft = target;
   1863       1.5  christos 		result = dns_rdata_fromtext(&rdata[rdcount], lctx->zclass, type,
   1864       1.5  christos 					    lctx->lex, ictx->origin, options,
   1865       1.5  christos 					    lctx->mctx, &target, callbacks);
   1866       1.1  christos 		if (MANYERRS(lctx, result)) {
   1867       1.1  christos 			SETRESULT(lctx, result);
   1868       1.1  christos 			continue;
   1869       1.5  christos 		} else if (result != ISC_R_SUCCESS) {
   1870       1.1  christos 			goto insist_and_cleanup;
   1871       1.5  christos 		}
   1872       1.1  christos 
   1873       1.1  christos 		if (ictx->drop) {
   1874       1.1  christos 			target = target_ft;
   1875       1.1  christos 			continue;
   1876       1.1  christos 		}
   1877       1.1  christos 
   1878       1.1  christos 		if (type == dns_rdatatype_soa &&
   1879       1.1  christos 		    (lctx->options & DNS_MASTER_ZONE) != 0 &&
   1880       1.5  christos 		    !dns_name_equal(ictx->current, lctx->top))
   1881       1.5  christos 		{
   1882       1.1  christos 			char namebuf[DNS_NAME_FORMATSIZE];
   1883       1.1  christos 			dns_name_format(ictx->current, namebuf,
   1884       1.1  christos 					sizeof(namebuf));
   1885       1.5  christos 			(*callbacks->error)(callbacks,
   1886       1.5  christos 					    "%s:%lu: SOA "
   1887       1.1  christos 					    "record not at top of zone (%s)",
   1888       1.1  christos 					    source, line, namebuf);
   1889       1.1  christos 			result = DNS_R_NOTZONETOP;
   1890       1.1  christos 			if (MANYERRS(lctx, result)) {
   1891       1.1  christos 				SETRESULT(lctx, result);
   1892       1.3  christos 				read_till_eol = true;
   1893       1.1  christos 				target = target_ft;
   1894       1.1  christos 				continue;
   1895       1.1  christos 			} else {
   1896       1.1  christos 				goto insist_and_cleanup;
   1897       1.1  christos 			}
   1898       1.1  christos 		}
   1899       1.1  christos 
   1900  1.12.2.1  perseant 		if (type == dns_rdatatype_svcb &&
   1901  1.12.2.1  perseant 		    (lctx->options & DNS_MASTER_ZONE) != 0 &&
   1902  1.12.2.1  perseant 		    (lctx->options & DNS_MASTER_CHECKSVCB) != 0)
   1903  1.12.2.1  perseant 		{
   1904  1.12.2.1  perseant 			result = dns_rdata_checksvcb(ictx->current,
   1905  1.12.2.1  perseant 						     &rdata[rdcount]);
   1906  1.12.2.1  perseant 			if (result != ISC_R_SUCCESS) {
   1907  1.12.2.1  perseant 				(*callbacks->error)(callbacks,
   1908  1.12.2.1  perseant 						    "%s:%lu: SVCB "
   1909  1.12.2.1  perseant 						    "record not valid: %s",
   1910  1.12.2.1  perseant 						    source, line,
   1911  1.12.2.1  perseant 						    isc_result_totext(result));
   1912  1.12.2.1  perseant 				if (MANYERRS(lctx, result)) {
   1913  1.12.2.1  perseant 					SETRESULT(lctx, result);
   1914  1.12.2.1  perseant 					target = target_ft;
   1915  1.12.2.1  perseant 					continue;
   1916  1.12.2.1  perseant 				} else if (result != ISC_R_SUCCESS) {
   1917  1.12.2.1  perseant 					goto insist_and_cleanup;
   1918  1.12.2.1  perseant 				}
   1919  1.12.2.1  perseant 			}
   1920  1.12.2.1  perseant 		}
   1921  1.12.2.1  perseant 
   1922       1.6  christos 		if (dns_rdatatype_atparent(type) &&
   1923       1.6  christos 		    dns_master_isprimary(lctx) &&
   1924       1.6  christos 		    dns_name_equal(ictx->current, lctx->top))
   1925       1.6  christos 		{
   1926       1.6  christos 			char namebuf[DNS_NAME_FORMATSIZE];
   1927       1.6  christos 			char typebuf[DNS_RDATATYPE_FORMATSIZE];
   1928       1.6  christos 
   1929       1.6  christos 			dns_name_format(ictx->current, namebuf,
   1930       1.6  christos 					sizeof(namebuf));
   1931       1.6  christos 			dns_rdatatype_format(type, typebuf, sizeof(typebuf));
   1932       1.6  christos 			(*callbacks->error)(
   1933       1.6  christos 				callbacks,
   1934       1.6  christos 				"%s:%lu: %s record at top of zone (%s)", source,
   1935       1.6  christos 				line, typebuf, namebuf);
   1936       1.6  christos 			result = DNS_R_ATZONETOP;
   1937       1.6  christos 			if (MANYERRS(lctx, result)) {
   1938       1.6  christos 				SETRESULT(lctx, result);
   1939       1.6  christos 				target = target_ft;
   1940       1.6  christos 				continue;
   1941       1.6  christos 			} else {
   1942       1.6  christos 				goto insist_and_cleanup;
   1943       1.6  christos 			}
   1944       1.6  christos 		}
   1945       1.6  christos 
   1946       1.5  christos 		if (type == dns_rdatatype_rrsig || type == dns_rdatatype_sig) {
   1947       1.1  christos 			covers = dns_rdata_covers(&rdata[rdcount]);
   1948       1.5  christos 		} else {
   1949       1.1  christos 			covers = 0;
   1950       1.5  christos 		}
   1951       1.1  christos 
   1952       1.1  christos 		if (!lctx->ttl_known && !lctx->default_ttl_known) {
   1953       1.1  christos 			if (type == dns_rdatatype_soa) {
   1954       1.1  christos 				(*callbacks->warn)(callbacks,
   1955       1.1  christos 						   "%s:%lu: no TTL specified; "
   1956       1.1  christos 						   "using SOA MINTTL instead",
   1957       1.1  christos 						   source, line);
   1958       1.1  christos 				lctx->ttl = dns_soa_getminimum(&rdata[rdcount]);
   1959       1.1  christos 				limit_ttl(callbacks, source, line, &lctx->ttl);
   1960       1.1  christos 				lctx->default_ttl = lctx->ttl;
   1961       1.3  christos 				lctx->default_ttl_known = true;
   1962       1.1  christos 			} else if ((lctx->options & DNS_MASTER_HINT) != 0) {
   1963       1.1  christos 				/*
   1964       1.1  christos 				 * Zero TTL's are fine for hints.
   1965       1.1  christos 				 */
   1966       1.1  christos 				lctx->ttl = 0;
   1967       1.1  christos 				lctx->default_ttl = lctx->ttl;
   1968       1.3  christos 				lctx->default_ttl_known = true;
   1969       1.1  christos 			} else {
   1970       1.1  christos 				(*callbacks->warn)(callbacks,
   1971       1.1  christos 						   "%s:%lu: no TTL specified; "
   1972       1.1  christos 						   "zone rejected",
   1973       1.1  christos 						   source, line);
   1974       1.1  christos 				result = DNS_R_NOTTL;
   1975       1.1  christos 				if (MANYERRS(lctx, result)) {
   1976       1.1  christos 					SETRESULT(lctx, result);
   1977       1.1  christos 					lctx->ttl = 0;
   1978       1.1  christos 				} else {
   1979       1.1  christos 					goto insist_and_cleanup;
   1980       1.1  christos 				}
   1981       1.1  christos 			}
   1982       1.1  christos 		} else if (!explicit_ttl && lctx->default_ttl_known) {
   1983       1.1  christos 			lctx->ttl = lctx->default_ttl;
   1984       1.1  christos 		} else if (!explicit_ttl && lctx->warn_1035) {
   1985       1.1  christos 			(*callbacks->warn)(callbacks,
   1986       1.1  christos 					   "%s:%lu: "
   1987       1.1  christos 					   "using RFC1035 TTL semantics",
   1988       1.1  christos 					   source, line);
   1989       1.3  christos 			lctx->warn_1035 = false;
   1990       1.1  christos 		}
   1991       1.1  christos 
   1992       1.1  christos 		if (type == dns_rdatatype_rrsig && lctx->warn_sigexpired) {
   1993       1.1  christos 			dns_rdata_rrsig_t sig;
   1994       1.1  christos 			result = dns_rdata_tostruct(&rdata[rdcount], &sig,
   1995       1.1  christos 						    NULL);
   1996       1.1  christos 			RUNTIME_CHECK(result == ISC_R_SUCCESS);
   1997       1.1  christos 			if (isc_serial_lt(sig.timeexpire, lctx->now)) {
   1998       1.1  christos 				(*callbacks->warn)(callbacks,
   1999       1.1  christos 						   "%s:%lu: "
   2000       1.1  christos 						   "signature has expired",
   2001       1.1  christos 						   source, line);
   2002       1.3  christos 				lctx->warn_sigexpired = false;
   2003       1.1  christos 			}
   2004       1.1  christos 		}
   2005       1.1  christos 
   2006       1.1  christos 		if ((type == dns_rdatatype_sig || type == dns_rdatatype_nxt) &&
   2007       1.6  christos 		    lctx->warn_tcr && dns_master_isprimary(lctx))
   2008       1.5  christos 		{
   2009       1.5  christos 			(*callbacks->warn)(callbacks,
   2010       1.5  christos 					   "%s:%lu: old style DNSSEC "
   2011       1.5  christos 					   " zone detected",
   2012       1.5  christos 					   source, line);
   2013       1.3  christos 			lctx->warn_tcr = false;
   2014       1.1  christos 		}
   2015       1.1  christos 
   2016       1.1  christos 		if ((lctx->options & DNS_MASTER_AGETTL) != 0) {
   2017       1.1  christos 			/*
   2018       1.1  christos 			 * Adjust the TTL for $DATE. If the RR has
   2019       1.1  christos 			 * already expired, set its TTL to 0. This
   2020       1.1  christos 			 * should be okay even if the TTL stretching
   2021       1.1  christos 			 * feature is not in effect, because it will
   2022       1.1  christos 			 * just be quickly expired by the cache, and the
   2023       1.1  christos 			 * way this was written before the patch it
   2024       1.1  christos 			 * could potentially add 0 TTLs anyway.
   2025       1.1  christos 			 */
   2026       1.5  christos 			if (lctx->ttl < ttl_offset) {
   2027       1.1  christos 				lctx->ttl = 0;
   2028       1.5  christos 			} else {
   2029       1.1  christos 				lctx->ttl -= ttl_offset;
   2030       1.5  christos 			}
   2031       1.1  christos 		}
   2032       1.1  christos 
   2033       1.1  christos 		/*
   2034       1.1  christos 		 * Find type in rdatalist.
   2035       1.1  christos 		 * If it does not exist create new one and prepend to list
   2036       1.1  christos 		 * as this will minimise list traversal.
   2037       1.1  christos 		 */
   2038       1.5  christos 		if (ictx->glue != NULL) {
   2039       1.1  christos 			this = ISC_LIST_HEAD(glue_list);
   2040       1.5  christos 		} else {
   2041       1.1  christos 			this = ISC_LIST_HEAD(current_list);
   2042       1.5  christos 		}
   2043       1.1  christos 
   2044       1.1  christos 		while (this != NULL) {
   2045       1.5  christos 			if (this->type == type && this->covers == covers) {
   2046       1.1  christos 				break;
   2047       1.5  christos 			}
   2048       1.1  christos 			this = ISC_LIST_NEXT(this, link);
   2049       1.1  christos 		}
   2050       1.1  christos 
   2051       1.1  christos 		if (this == NULL) {
   2052       1.1  christos 			if (rdlcount == rdatalist_size) {
   2053       1.5  christos 				new_rdatalist = grow_rdatalist(
   2054       1.5  christos 					rdatalist_size + RDLSZ, rdatalist,
   2055       1.5  christos 					rdatalist_size, &current_list,
   2056       1.5  christos 					&glue_list, mctx);
   2057       1.1  christos 				if (new_rdatalist == NULL) {
   2058       1.1  christos 					result = ISC_R_NOMEMORY;
   2059       1.1  christos 					goto log_and_cleanup;
   2060       1.1  christos 				}
   2061       1.1  christos 				rdatalist = new_rdatalist;
   2062       1.1  christos 				rdatalist_size += RDLSZ;
   2063       1.1  christos 			}
   2064       1.1  christos 			this = &rdatalist[rdlcount++];
   2065       1.1  christos 			dns_rdatalist_init(this);
   2066       1.1  christos 			this->type = type;
   2067       1.1  christos 			this->covers = covers;
   2068       1.1  christos 			this->rdclass = lctx->zclass;
   2069       1.1  christos 			this->ttl = lctx->ttl;
   2070       1.5  christos 			if (ictx->glue != NULL) {
   2071       1.1  christos 				ISC_LIST_INITANDPREPEND(glue_list, this, link);
   2072       1.5  christos 			} else {
   2073       1.1  christos 				ISC_LIST_INITANDPREPEND(current_list, this,
   2074       1.1  christos 							link);
   2075       1.5  christos 			}
   2076       1.1  christos 		} else if (this->ttl != lctx->ttl) {
   2077       1.1  christos 			(*callbacks->warn)(callbacks,
   2078       1.1  christos 					   "%s:%lu: "
   2079       1.1  christos 					   "TTL set to prior TTL (%lu)",
   2080       1.1  christos 					   source, line, this->ttl);
   2081       1.1  christos 			lctx->ttl = this->ttl;
   2082       1.1  christos 		}
   2083       1.1  christos 
   2084       1.1  christos 		if ((lctx->options & DNS_MASTER_CHECKTTL) != 0 &&
   2085      1.10  christos 		    lctx->ttl > lctx->maxttl)
   2086      1.10  christos 		{
   2087       1.1  christos 			(callbacks->error)(callbacks,
   2088       1.5  christos 					   "dns_master_load: %s:%lu: "
   2089       1.5  christos 					   "TTL %d exceeds configured "
   2090       1.5  christos 					   "max-zone-ttl %d",
   2091       1.5  christos 					   source, line, lctx->ttl,
   2092       1.5  christos 					   lctx->maxttl);
   2093       1.1  christos 			result = ISC_R_RANGE;
   2094       1.1  christos 			goto log_and_cleanup;
   2095       1.1  christos 		}
   2096       1.1  christos 
   2097       1.1  christos 		ISC_LIST_APPEND(this->rdata, &rdata[rdcount], link);
   2098       1.5  christos 		if (ictx->glue != NULL) {
   2099       1.1  christos 			ictx->glue_line = line;
   2100       1.5  christos 		} else {
   2101       1.1  christos 			ictx->current_line = line;
   2102       1.5  christos 		}
   2103       1.1  christos 		rdcount++;
   2104       1.1  christos 
   2105       1.1  christos 		/*
   2106       1.1  christos 		 * We must have at least 64k as rdlen is 16 bits.
   2107       1.1  christos 		 * If we don't commit everything we have so far.
   2108       1.1  christos 		 */
   2109       1.5  christos 		if ((target.length - target.used) < MINTSIZ) {
   2110       1.1  christos 			COMMITALL;
   2111       1.5  christos 		}
   2112       1.5  christos 	next_line:;
   2113  1.12.2.1  perseant 	}
   2114       1.1  christos 
   2115       1.1  christos 	/*
   2116       1.1  christos 	 * Commit what has not yet been committed.
   2117       1.1  christos 	 */
   2118       1.5  christos 	result = commit(callbacks, lctx, &current_list, ictx->current, source,
   2119       1.5  christos 			ictx->current_line);
   2120       1.1  christos 	if (MANYERRS(lctx, result)) {
   2121       1.1  christos 		SETRESULT(lctx, result);
   2122       1.5  christos 	} else if (result != ISC_R_SUCCESS) {
   2123       1.1  christos 		goto insist_and_cleanup;
   2124       1.5  christos 	}
   2125       1.5  christos 	result = commit(callbacks, lctx, &glue_list, ictx->glue, source,
   2126       1.5  christos 			ictx->glue_line);
   2127       1.1  christos 	if (MANYERRS(lctx, result)) {
   2128       1.1  christos 		SETRESULT(lctx, result);
   2129       1.5  christos 	} else if (result != ISC_R_SUCCESS) {
   2130       1.1  christos 		goto insist_and_cleanup;
   2131  1.12.2.1  perseant 	} else if (lctx->result != ISC_R_SUCCESS) {
   2132       1.1  christos 		result = lctx->result;
   2133  1.12.2.1  perseant 	} else if (lctx->seen_include) {
   2134       1.1  christos 		result = DNS_R_SEENINCLUDE;
   2135       1.5  christos 	}
   2136  1.12.2.1  perseant 
   2137       1.1  christos 	goto cleanup;
   2138       1.1  christos 
   2139       1.5  christos log_and_cleanup:
   2140       1.1  christos 	LOGIT(result);
   2141       1.1  christos 
   2142       1.5  christos insist_and_cleanup:
   2143       1.1  christos 	INSIST(result != ISC_R_SUCCESS);
   2144       1.1  christos 
   2145       1.5  christos cleanup:
   2146  1.12.2.1  perseant 	/* commit the database transaction */
   2147  1.12.2.1  perseant 	if (callbacks->commit != NULL) {
   2148  1.12.2.1  perseant 		callbacks->commit(callbacks->add_private);
   2149  1.12.2.1  perseant 	}
   2150  1.12.2.1  perseant 
   2151       1.5  christos 	while ((this = ISC_LIST_HEAD(current_list)) != NULL) {
   2152       1.1  christos 		ISC_LIST_UNLINK(current_list, this, link);
   2153       1.5  christos 	}
   2154       1.5  christos 	while ((this = ISC_LIST_HEAD(glue_list)) != NULL) {
   2155       1.1  christos 		ISC_LIST_UNLINK(glue_list, this, link);
   2156       1.5  christos 	}
   2157       1.5  christos 	if (rdatalist != NULL) {
   2158  1.12.2.1  perseant 		isc_mem_cput(mctx, rdatalist, rdatalist_size,
   2159  1.12.2.1  perseant 			     sizeof(*rdatalist));
   2160       1.5  christos 	}
   2161       1.5  christos 	if (rdata != NULL) {
   2162  1.12.2.1  perseant 		isc_mem_cput(mctx, rdata, rdata_size, sizeof(*rdata));
   2163       1.5  christos 	}
   2164       1.5  christos 	if (target_mem != NULL) {
   2165       1.1  christos 		isc_mem_put(mctx, target_mem, target_size);
   2166       1.5  christos 	}
   2167       1.5  christos 	if (include_file != NULL) {
   2168       1.1  christos 		isc_mem_free(mctx, include_file);
   2169       1.5  christos 	}
   2170       1.5  christos 	if (range != NULL) {
   2171       1.1  christos 		isc_mem_free(mctx, range);
   2172       1.5  christos 	}
   2173       1.5  christos 	if (lhs != NULL) {
   2174       1.1  christos 		isc_mem_free(mctx, lhs);
   2175       1.5  christos 	}
   2176       1.5  christos 	if (gtype != NULL) {
   2177       1.1  christos 		isc_mem_free(mctx, gtype);
   2178       1.5  christos 	}
   2179       1.5  christos 	if (rhs != NULL) {
   2180       1.1  christos 		isc_mem_free(mctx, rhs);
   2181       1.5  christos 	}
   2182  1.12.2.1  perseant 
   2183  1.12.2.1  perseant 	return result;
   2184       1.1  christos }
   2185       1.1  christos 
   2186       1.1  christos static isc_result_t
   2187       1.1  christos pushfile(const char *master_file, dns_name_t *origin, dns_loadctx_t *lctx) {
   2188       1.1  christos 	isc_result_t result;
   2189       1.1  christos 	dns_incctx_t *ictx;
   2190       1.1  christos 	dns_incctx_t *newctx = NULL;
   2191       1.1  christos 	isc_region_t r;
   2192       1.1  christos 
   2193       1.1  christos 	REQUIRE(master_file != NULL);
   2194       1.1  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
   2195       1.1  christos 
   2196       1.1  christos 	ictx = lctx->inc;
   2197       1.3  christos 	lctx->seen_include = true;
   2198       1.1  christos 
   2199  1.12.2.1  perseant 	incctx_create(lctx->mctx, origin, &newctx);
   2200       1.1  christos 
   2201       1.1  christos 	/*
   2202       1.1  christos 	 * Push origin_changed.
   2203       1.1  christos 	 */
   2204       1.1  christos 	newctx->origin_changed = ictx->origin_changed;
   2205       1.1  christos 
   2206       1.1  christos 	/* Set current domain. */
   2207       1.1  christos 	if (ictx->glue != NULL || ictx->current != NULL) {
   2208       1.1  christos 		newctx->current_in_use = find_free_name(newctx);
   2209       1.5  christos 		newctx->current = dns_fixedname_name(
   2210       1.5  christos 			&newctx->fixed[newctx->current_in_use]);
   2211       1.3  christos 		newctx->in_use[newctx->current_in_use] = true;
   2212       1.5  christos 		dns_name_toregion(
   2213       1.5  christos 			(ictx->glue != NULL) ? ictx->glue : ictx->current, &r);
   2214       1.1  christos 		dns_name_fromregion(newctx->current, &r);
   2215       1.1  christos 		newctx->drop = ictx->drop;
   2216       1.1  christos 	}
   2217       1.1  christos 
   2218       1.1  christos 	result = (lctx->openfile)(lctx, master_file);
   2219       1.5  christos 	if (result != ISC_R_SUCCESS) {
   2220       1.1  christos 		goto cleanup;
   2221       1.5  christos 	}
   2222       1.1  christos 	newctx->parent = ictx;
   2223       1.1  christos 	lctx->inc = newctx;
   2224       1.1  christos 
   2225       1.5  christos 	if (lctx->include_cb != NULL) {
   2226       1.1  christos 		lctx->include_cb(master_file, lctx->include_arg);
   2227       1.5  christos 	}
   2228  1.12.2.1  perseant 	return ISC_R_SUCCESS;
   2229       1.1  christos 
   2230       1.5  christos cleanup:
   2231       1.1  christos 	incctx_destroy(lctx->mctx, newctx);
   2232  1.12.2.1  perseant 	return result;
   2233       1.1  christos }
   2234       1.1  christos 
   2235       1.1  christos /*
   2236       1.1  christos  * Fill/check exists buffer with 'len' bytes.  Track remaining bytes to be
   2237       1.1  christos  * read when incrementally filling the buffer.
   2238       1.1  christos  */
   2239       1.9  christos static isc_result_t
   2240       1.5  christos read_and_check(bool do_read, isc_buffer_t *buffer, size_t len, FILE *f,
   2241       1.5  christos 	       uint32_t *totallen) {
   2242       1.1  christos 	isc_result_t result;
   2243       1.1  christos 
   2244       1.1  christos 	REQUIRE(totallen != NULL);
   2245       1.1  christos 
   2246       1.1  christos 	if (do_read) {
   2247       1.1  christos 		INSIST(isc_buffer_availablelength(buffer) >= len);
   2248       1.5  christos 		result = isc_stdio_read(isc_buffer_used(buffer), 1, len, f,
   2249       1.5  christos 					NULL);
   2250       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2251  1.12.2.1  perseant 			return result;
   2252       1.5  christos 		}
   2253       1.1  christos 		isc_buffer_add(buffer, (unsigned int)len);
   2254       1.5  christos 		if (*totallen < len) {
   2255  1.12.2.1  perseant 			return ISC_R_RANGE;
   2256       1.5  christos 		}
   2257       1.3  christos 		*totallen -= (uint32_t)len;
   2258       1.5  christos 	} else if (isc_buffer_remaininglength(buffer) < len) {
   2259  1.12.2.1  perseant 		return ISC_R_RANGE;
   2260       1.5  christos 	}
   2261       1.1  christos 
   2262  1.12.2.1  perseant 	return ISC_R_SUCCESS;
   2263       1.1  christos }
   2264       1.1  christos 
   2265       1.1  christos static isc_result_t
   2266       1.1  christos load_header(dns_loadctx_t *lctx) {
   2267       1.1  christos 	isc_result_t result = ISC_R_SUCCESS;
   2268       1.1  christos 	dns_masterrawheader_t header;
   2269       1.1  christos 	dns_rdatacallbacks_t *callbacks;
   2270       1.1  christos 	size_t commonlen = sizeof(header.format) + sizeof(header.version);
   2271       1.1  christos 	size_t remainder;
   2272       1.1  christos 	unsigned char data[sizeof(header)];
   2273       1.1  christos 	isc_buffer_t target;
   2274       1.1  christos 
   2275       1.1  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
   2276       1.1  christos 
   2277      1.12  christos 	if (lctx->format != dns_masterformat_raw) {
   2278  1.12.2.1  perseant 		return ISC_R_NOTIMPLEMENTED;
   2279       1.5  christos 	}
   2280       1.1  christos 
   2281       1.1  christos 	callbacks = lctx->callbacks;
   2282       1.1  christos 	dns_master_initrawheader(&header);
   2283       1.1  christos 
   2284       1.1  christos 	INSIST(commonlen <= sizeof(header));
   2285       1.1  christos 	isc_buffer_init(&target, data, sizeof(data));
   2286       1.1  christos 
   2287       1.1  christos 	result = isc_stdio_read(data, 1, commonlen, lctx->f, NULL);
   2288       1.1  christos 	if (result != ISC_R_SUCCESS) {
   2289      1.12  christos 		UNEXPECTED_ERROR("isc_stdio_read failed: %s",
   2290       1.1  christos 				 isc_result_totext(result));
   2291  1.12.2.1  perseant 		return result;
   2292       1.1  christos 	}
   2293       1.1  christos 
   2294       1.1  christos 	isc_buffer_add(&target, (unsigned int)commonlen);
   2295       1.1  christos 	header.format = isc_buffer_getuint32(&target);
   2296       1.1  christos 	if (header.format != lctx->format) {
   2297       1.5  christos 		(*callbacks->error)(callbacks,
   2298       1.5  christos 				    "dns_master_load: "
   2299      1.12  christos 				    "file format mismatch (not raw)");
   2300  1.12.2.1  perseant 		return ISC_R_NOTIMPLEMENTED;
   2301       1.1  christos 	}
   2302       1.1  christos 
   2303       1.1  christos 	header.version = isc_buffer_getuint32(&target);
   2304       1.1  christos 
   2305       1.1  christos 	switch (header.version) {
   2306       1.1  christos 	case 0:
   2307       1.1  christos 		remainder = sizeof(header.dumptime);
   2308       1.1  christos 		break;
   2309       1.1  christos 	case DNS_RAWFORMAT_VERSION:
   2310       1.1  christos 		remainder = sizeof(header) - commonlen;
   2311       1.1  christos 		break;
   2312       1.1  christos 	default:
   2313       1.5  christos 		(*callbacks->error)(callbacks, "dns_master_load: "
   2314       1.5  christos 					       "unsupported file format "
   2315       1.5  christos 					       "version");
   2316  1.12.2.1  perseant 		return ISC_R_NOTIMPLEMENTED;
   2317       1.1  christos 	}
   2318       1.1  christos 
   2319       1.1  christos 	result = isc_stdio_read(data + commonlen, 1, remainder, lctx->f, NULL);
   2320       1.1  christos 	if (result != ISC_R_SUCCESS) {
   2321      1.12  christos 		UNEXPECTED_ERROR("isc_stdio_read failed: %s",
   2322       1.1  christos 				 isc_result_totext(result));
   2323  1.12.2.1  perseant 		return result;
   2324       1.1  christos 	}
   2325       1.1  christos 
   2326       1.1  christos 	isc_buffer_add(&target, (unsigned int)remainder);
   2327       1.1  christos 	header.dumptime = isc_buffer_getuint32(&target);
   2328       1.1  christos 	if (header.version == DNS_RAWFORMAT_VERSION) {
   2329       1.1  christos 		header.flags = isc_buffer_getuint32(&target);
   2330       1.1  christos 		header.sourceserial = isc_buffer_getuint32(&target);
   2331       1.1  christos 		header.lastxfrin = isc_buffer_getuint32(&target);
   2332       1.1  christos 	}
   2333       1.1  christos 
   2334       1.3  christos 	lctx->first = false;
   2335       1.1  christos 	lctx->header = header;
   2336       1.1  christos 
   2337  1.12.2.1  perseant 	return ISC_R_SUCCESS;
   2338       1.1  christos }
   2339       1.1  christos 
   2340       1.1  christos static isc_result_t
   2341       1.1  christos openfile_raw(dns_loadctx_t *lctx, const char *master_file) {
   2342       1.1  christos 	isc_result_t result;
   2343       1.1  christos 
   2344       1.1  christos 	result = isc_stdio_open(master_file, "rb", &lctx->f);
   2345       1.1  christos 	if (result != ISC_R_SUCCESS && result != ISC_R_FILENOTFOUND) {
   2346      1.12  christos 		UNEXPECTED_ERROR("isc_stdio_open() failed: %s",
   2347       1.1  christos 				 isc_result_totext(result));
   2348       1.1  christos 	}
   2349       1.1  christos 
   2350  1.12.2.1  perseant 	return result;
   2351       1.1  christos }
   2352       1.1  christos 
   2353       1.1  christos static isc_result_t
   2354       1.1  christos load_raw(dns_loadctx_t *lctx) {
   2355       1.1  christos 	isc_result_t result = ISC_R_SUCCESS;
   2356       1.1  christos 	dns_rdatacallbacks_t *callbacks;
   2357       1.1  christos 	unsigned char namebuf[DNS_NAME_MAXWIRE];
   2358       1.1  christos 	dns_fixedname_t fixed;
   2359       1.1  christos 	dns_name_t *name;
   2360       1.1  christos 	rdatalist_head_t head, dummy;
   2361       1.1  christos 	dns_rdatalist_t rdatalist;
   2362       1.1  christos 	isc_mem_t *mctx = lctx->mctx;
   2363       1.1  christos 	dns_rdata_t *rdata = NULL;
   2364       1.1  christos 	unsigned int rdata_size = 0;
   2365       1.1  christos 	int target_size = TSIZ;
   2366       1.1  christos 	isc_buffer_t target, buf;
   2367       1.1  christos 	unsigned char *target_mem = NULL;
   2368       1.1  christos 	dns_decompress_t dctx;
   2369       1.1  christos 
   2370       1.1  christos 	callbacks = lctx->callbacks;
   2371  1.12.2.1  perseant 	dctx = DNS_DECOMPRESS_NEVER;
   2372       1.1  christos 
   2373       1.1  christos 	if (lctx->first) {
   2374       1.1  christos 		result = load_header(lctx);
   2375       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2376  1.12.2.1  perseant 			return result;
   2377       1.5  christos 		}
   2378       1.1  christos 	}
   2379       1.1  christos 
   2380       1.1  christos 	ISC_LIST_INIT(head);
   2381       1.1  christos 	ISC_LIST_INIT(dummy);
   2382       1.1  christos 
   2383       1.1  christos 	/*
   2384       1.1  christos 	 * Allocate target_size of buffer space.  This is greater than twice
   2385       1.1  christos 	 * the maximum individual RR data size.
   2386       1.1  christos 	 */
   2387       1.1  christos 	target_mem = isc_mem_get(mctx, target_size);
   2388       1.1  christos 	isc_buffer_init(&target, target_mem, target_size);
   2389       1.1  christos 
   2390       1.1  christos 	name = dns_fixedname_initname(&fixed);
   2391       1.1  christos 
   2392  1.12.2.1  perseant 	/* open a database transaction */
   2393  1.12.2.1  perseant 	if (callbacks->setup != NULL) {
   2394  1.12.2.1  perseant 		callbacks->setup(callbacks->add_private);
   2395  1.12.2.1  perseant 	}
   2396  1.12.2.1  perseant 
   2397       1.1  christos 	/*
   2398       1.1  christos 	 * In the following loop, we regard any error fatal regardless of
   2399       1.1  christos 	 * whether "MANYERRORS" is set in the context option.  This is because
   2400       1.1  christos 	 * normal errors should already have been checked at creation time.
   2401       1.1  christos 	 * Besides, it is very unlikely that we can recover from an error
   2402       1.1  christos 	 * in this format, and so trying to continue parsing erroneous data
   2403       1.1  christos 	 * does not really make sense.
   2404       1.1  christos 	 */
   2405  1.12.2.1  perseant 	while (true) {
   2406       1.1  christos 		unsigned int i, rdcount;
   2407       1.3  christos 		uint16_t namelen;
   2408       1.3  christos 		uint32_t totallen;
   2409       1.1  christos 		size_t minlen, readlen;
   2410       1.3  christos 		bool sequential_read = false;
   2411       1.1  christos 
   2412       1.1  christos 		/* Read the data length */
   2413       1.1  christos 		isc_buffer_clear(&target);
   2414       1.5  christos 		INSIST(isc_buffer_availablelength(&target) >= sizeof(totallen));
   2415       1.1  christos 		result = isc_stdio_read(target.base, 1, sizeof(totallen),
   2416       1.1  christos 					lctx->f, NULL);
   2417       1.1  christos 		if (result == ISC_R_EOF) {
   2418       1.1  christos 			result = ISC_R_SUCCESS;
   2419       1.1  christos 			break;
   2420       1.1  christos 		}
   2421       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2422       1.1  christos 			goto cleanup;
   2423       1.5  christos 		}
   2424       1.1  christos 		isc_buffer_add(&target, sizeof(totallen));
   2425       1.1  christos 		totallen = isc_buffer_getuint32(&target);
   2426       1.1  christos 
   2427       1.1  christos 		/*
   2428       1.1  christos 		 * Validation: the input data must at least contain the common
   2429       1.1  christos 		 * header.
   2430       1.1  christos 		 */
   2431       1.3  christos 		minlen = sizeof(totallen) + sizeof(uint16_t) +
   2432       1.5  christos 			 sizeof(uint16_t) + sizeof(uint16_t) +
   2433       1.5  christos 			 sizeof(uint32_t) + sizeof(uint32_t);
   2434       1.1  christos 		if (totallen < minlen) {
   2435       1.1  christos 			result = ISC_R_RANGE;
   2436       1.1  christos 			goto cleanup;
   2437       1.1  christos 		}
   2438       1.1  christos 		totallen -= sizeof(totallen);
   2439       1.1  christos 
   2440       1.1  christos 		isc_buffer_clear(&target);
   2441       1.1  christos 		if (totallen > isc_buffer_availablelength(&target)) {
   2442       1.1  christos 			/*
   2443       1.1  christos 			 * The default buffer size should typically be large
   2444       1.1  christos 			 * enough to store the entire RRset.  We could try to
   2445       1.1  christos 			 * allocate enough space if this is not the case, but
   2446       1.1  christos 			 * it might cause a hazardous result when "totallen"
   2447       1.1  christos 			 * is forged.  Thus, we'd rather take an inefficient
   2448       1.1  christos 			 * but robust approach in this atypical case: read
   2449       1.1  christos 			 * data step by step, and commit partial data when
   2450       1.1  christos 			 * necessary.  Note that the buffer must be large
   2451       1.1  christos 			 * enough to store the "header part", owner name, and
   2452       1.1  christos 			 * at least one rdata (however large it is).
   2453       1.1  christos 			 */
   2454       1.3  christos 			sequential_read = true;
   2455       1.1  christos 			readlen = minlen - sizeof(totallen);
   2456       1.1  christos 		} else {
   2457       1.1  christos 			/*
   2458       1.1  christos 			 * Typical case.  We can read the whole RRset at once
   2459       1.1  christos 			 * with the default buffer.
   2460       1.1  christos 			 */
   2461       1.1  christos 			readlen = totallen;
   2462       1.1  christos 		}
   2463       1.5  christos 		result = isc_stdio_read(target.base, 1, readlen, lctx->f, NULL);
   2464       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2465       1.1  christos 			goto cleanup;
   2466       1.5  christos 		}
   2467       1.1  christos 		isc_buffer_add(&target, (unsigned int)readlen);
   2468       1.3  christos 		totallen -= (uint32_t)readlen;
   2469       1.1  christos 
   2470       1.1  christos 		/* Construct RRset headers */
   2471       1.1  christos 		dns_rdatalist_init(&rdatalist);
   2472       1.1  christos 		rdatalist.rdclass = isc_buffer_getuint16(&target);
   2473       1.1  christos 		if (lctx->zclass != rdatalist.rdclass) {
   2474       1.1  christos 			result = DNS_R_BADCLASS;
   2475       1.1  christos 			goto cleanup;
   2476       1.1  christos 		}
   2477       1.1  christos 		rdatalist.type = isc_buffer_getuint16(&target);
   2478       1.1  christos 		rdatalist.covers = isc_buffer_getuint16(&target);
   2479       1.5  christos 		rdatalist.ttl = isc_buffer_getuint32(&target);
   2480       1.1  christos 		rdcount = isc_buffer_getuint32(&target);
   2481       1.1  christos 		if (rdcount == 0 || rdcount > 0xffff) {
   2482       1.1  christos 			result = ISC_R_RANGE;
   2483       1.1  christos 			goto cleanup;
   2484       1.1  christos 		}
   2485       1.1  christos 		INSIST(isc_buffer_consumedlength(&target) <= readlen);
   2486       1.1  christos 
   2487       1.1  christos 		/* Owner name: length followed by name */
   2488       1.1  christos 		result = read_and_check(sequential_read, &target,
   2489       1.1  christos 					sizeof(namelen), lctx->f, &totallen);
   2490       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2491       1.1  christos 			goto cleanup;
   2492       1.5  christos 		}
   2493       1.1  christos 		namelen = isc_buffer_getuint16(&target);
   2494       1.1  christos 		if (namelen > sizeof(namebuf)) {
   2495       1.1  christos 			result = ISC_R_RANGE;
   2496       1.1  christos 			goto cleanup;
   2497       1.1  christos 		}
   2498       1.1  christos 
   2499       1.1  christos 		result = read_and_check(sequential_read, &target, namelen,
   2500       1.1  christos 					lctx->f, &totallen);
   2501       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2502       1.1  christos 			goto cleanup;
   2503       1.5  christos 		}
   2504       1.1  christos 
   2505       1.1  christos 		isc_buffer_setactive(&target, (unsigned int)namelen);
   2506  1.12.2.1  perseant 		result = dns_name_fromwire(name, &target, dctx, NULL);
   2507       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2508       1.1  christos 			goto cleanup;
   2509       1.5  christos 		}
   2510       1.1  christos 
   2511       1.1  christos 		if ((lctx->options & DNS_MASTER_CHECKTTL) != 0 &&
   2512      1.10  christos 		    rdatalist.ttl > lctx->maxttl)
   2513      1.10  christos 		{
   2514       1.1  christos 			(callbacks->error)(callbacks,
   2515       1.1  christos 					   "dns_master_load: "
   2516       1.1  christos 					   "TTL %d exceeds configured "
   2517       1.1  christos 					   "max-zone-ttl %d",
   2518       1.1  christos 					   rdatalist.ttl, lctx->maxttl);
   2519       1.1  christos 			result = ISC_R_RANGE;
   2520       1.1  christos 			goto cleanup;
   2521       1.1  christos 		}
   2522       1.1  christos 
   2523       1.1  christos 		/* Rdata contents. */
   2524       1.1  christos 		if (rdcount > rdata_size) {
   2525       1.1  christos 			dns_rdata_t *new_rdata = NULL;
   2526       1.1  christos 
   2527       1.1  christos 			new_rdata = grow_rdata(rdcount + RDSZ, rdata,
   2528       1.5  christos 					       rdata_size, &head, &dummy, mctx);
   2529       1.1  christos 			if (new_rdata == NULL) {
   2530       1.1  christos 				result = ISC_R_NOMEMORY;
   2531       1.1  christos 				goto cleanup;
   2532       1.1  christos 			}
   2533       1.1  christos 			rdata_size = rdcount + RDSZ;
   2534       1.1  christos 			rdata = new_rdata;
   2535       1.1  christos 		}
   2536       1.1  christos 
   2537       1.1  christos 	continue_read:
   2538       1.1  christos 		for (i = 0; i < rdcount; i++) {
   2539       1.3  christos 			uint16_t rdlen;
   2540       1.1  christos 
   2541       1.1  christos 			dns_rdata_init(&rdata[i]);
   2542       1.1  christos 
   2543       1.1  christos 			if (sequential_read &&
   2544      1.10  christos 			    isc_buffer_availablelength(&target) < MINTSIZ)
   2545      1.10  christos 			{
   2546       1.1  christos 				unsigned int j;
   2547       1.1  christos 
   2548       1.1  christos 				INSIST(i > 0); /* detect an infinite loop */
   2549       1.1  christos 
   2550       1.1  christos 				/* Partial Commit. */
   2551       1.1  christos 				ISC_LIST_APPEND(head, &rdatalist, link);
   2552       1.1  christos 				result = commit(callbacks, lctx, &head, name,
   2553       1.1  christos 						NULL, 0);
   2554       1.1  christos 				for (j = 0; j < i; j++) {
   2555       1.1  christos 					ISC_LIST_UNLINK(rdatalist.rdata,
   2556       1.1  christos 							&rdata[j], link);
   2557       1.1  christos 					dns_rdata_reset(&rdata[j]);
   2558       1.1  christos 				}
   2559       1.5  christos 				if (result != ISC_R_SUCCESS) {
   2560       1.1  christos 					goto cleanup;
   2561       1.5  christos 				}
   2562       1.1  christos 
   2563       1.1  christos 				/* Rewind the buffer and continue */
   2564       1.1  christos 				isc_buffer_clear(&target);
   2565       1.1  christos 
   2566       1.1  christos 				rdcount -= i;
   2567       1.1  christos 
   2568       1.1  christos 				goto continue_read;
   2569       1.1  christos 			}
   2570       1.1  christos 
   2571       1.1  christos 			/* rdata length */
   2572       1.1  christos 			result = read_and_check(sequential_read, &target,
   2573       1.1  christos 						sizeof(rdlen), lctx->f,
   2574       1.1  christos 						&totallen);
   2575       1.5  christos 			if (result != ISC_R_SUCCESS) {
   2576       1.1  christos 				goto cleanup;
   2577       1.5  christos 			}
   2578       1.1  christos 			rdlen = isc_buffer_getuint16(&target);
   2579       1.1  christos 
   2580       1.1  christos 			/* rdata */
   2581       1.5  christos 			result = read_and_check(sequential_read, &target, rdlen,
   2582       1.5  christos 						lctx->f, &totallen);
   2583       1.5  christos 			if (result != ISC_R_SUCCESS) {
   2584       1.1  christos 				goto cleanup;
   2585       1.5  christos 			}
   2586       1.1  christos 			isc_buffer_setactive(&target, (unsigned int)rdlen);
   2587       1.1  christos 			/*
   2588       1.1  christos 			 * It is safe to have the source active region and
   2589       1.1  christos 			 * the target available region be the same if
   2590       1.1  christos 			 * decompression is disabled (see dctx above) and we
   2591       1.1  christos 			 * are not downcasing names (options == 0).
   2592       1.1  christos 			 */
   2593       1.1  christos 			isc_buffer_init(&buf, isc_buffer_current(&target),
   2594       1.1  christos 					(unsigned int)rdlen);
   2595       1.5  christos 			result = dns_rdata_fromwire(
   2596       1.5  christos 				&rdata[i], rdatalist.rdclass, rdatalist.type,
   2597  1.12.2.1  perseant 				&target, dctx, &buf);
   2598       1.5  christos 			if (result != ISC_R_SUCCESS) {
   2599       1.1  christos 				goto cleanup;
   2600       1.5  christos 			}
   2601       1.1  christos 			ISC_LIST_APPEND(rdatalist.rdata, &rdata[i], link);
   2602       1.1  christos 		}
   2603       1.1  christos 
   2604       1.1  christos 		/*
   2605       1.1  christos 		 * Sanity check.  Still having remaining space is not
   2606       1.1  christos 		 * necessarily critical, but it very likely indicates broken
   2607       1.1  christos 		 * or malformed data.
   2608       1.1  christos 		 */
   2609       1.1  christos 		if (isc_buffer_remaininglength(&target) != 0 || totallen != 0) {
   2610       1.1  christos 			result = ISC_R_RANGE;
   2611       1.1  christos 			goto cleanup;
   2612       1.1  christos 		}
   2613       1.1  christos 
   2614       1.1  christos 		ISC_LIST_APPEND(head, &rdatalist, link);
   2615       1.1  christos 
   2616       1.1  christos 		/* Commit this RRset.  rdatalist will be unlinked. */
   2617       1.1  christos 		result = commit(callbacks, lctx, &head, name, NULL, 0);
   2618       1.1  christos 
   2619       1.1  christos 		for (i = 0; i < rdcount; i++) {
   2620       1.1  christos 			ISC_LIST_UNLINK(rdatalist.rdata, &rdata[i], link);
   2621       1.1  christos 			dns_rdata_reset(&rdata[i]);
   2622       1.1  christos 		}
   2623       1.1  christos 
   2624       1.5  christos 		if (result != ISC_R_SUCCESS) {
   2625       1.1  christos 			goto cleanup;
   2626       1.5  christos 		}
   2627       1.1  christos 	}
   2628       1.1  christos 
   2629  1.12.2.1  perseant 	if (result == ISC_R_SUCCESS && lctx->result != ISC_R_SUCCESS) {
   2630       1.1  christos 		result = lctx->result;
   2631       1.5  christos 	}
   2632       1.1  christos 
   2633       1.5  christos 	if (result == ISC_R_SUCCESS && callbacks->rawdata != NULL) {
   2634       1.1  christos 		(*callbacks->rawdata)(callbacks->zone, &lctx->header);
   2635       1.5  christos 	}
   2636       1.1  christos 
   2637       1.5  christos cleanup:
   2638  1.12.2.1  perseant 	/* commit the database transaction */
   2639  1.12.2.1  perseant 	if (callbacks->commit != NULL) {
   2640  1.12.2.1  perseant 		callbacks->commit(callbacks->add_private);
   2641  1.12.2.1  perseant 	}
   2642  1.12.2.1  perseant 
   2643       1.5  christos 	if (rdata != NULL) {
   2644  1.12.2.1  perseant 		isc_mem_cput(mctx, rdata, rdata_size, sizeof(*rdata));
   2645       1.5  christos 	}
   2646       1.5  christos 	if (target_mem != NULL) {
   2647       1.1  christos 		isc_mem_put(mctx, target_mem, target_size);
   2648       1.5  christos 	}
   2649  1.12.2.1  perseant 	if (result != ISC_R_SUCCESS) {
   2650       1.1  christos 		(*callbacks->error)(callbacks, "dns_master_load: %s",
   2651      1.12  christos 				    isc_result_totext(result));
   2652       1.1  christos 	}
   2653       1.1  christos 
   2654  1.12.2.1  perseant 	return result;
   2655       1.1  christos }
   2656       1.1  christos 
   2657       1.1  christos isc_result_t
   2658       1.1  christos dns_master_loadfile(const char *master_file, dns_name_t *top,
   2659       1.3  christos 		    dns_name_t *origin, dns_rdataclass_t zclass,
   2660       1.3  christos 		    unsigned int options, uint32_t resign,
   2661       1.3  christos 		    dns_rdatacallbacks_t *callbacks,
   2662       1.3  christos 		    dns_masterincludecb_t include_cb, void *include_arg,
   2663       1.3  christos 		    isc_mem_t *mctx, dns_masterformat_t format,
   2664       1.5  christos 		    dns_ttl_t maxttl) {
   2665       1.1  christos 	dns_loadctx_t *lctx = NULL;
   2666       1.1  christos 	isc_result_t result;
   2667       1.1  christos 
   2668  1.12.2.1  perseant 	loadctx_create(format, mctx, options, resign, top, zclass, origin,
   2669  1.12.2.1  perseant 		       callbacks, NULL, NULL, include_cb, include_arg, NULL,
   2670  1.12.2.1  perseant 		       &lctx);
   2671       1.1  christos 
   2672       1.1  christos 	lctx->maxttl = maxttl;
   2673       1.1  christos 
   2674       1.1  christos 	result = (lctx->openfile)(lctx, master_file);
   2675       1.5  christos 	if (result != ISC_R_SUCCESS) {
   2676       1.1  christos 		goto cleanup;
   2677       1.5  christos 	}
   2678       1.1  christos 
   2679       1.1  christos 	result = (lctx->load)(lctx);
   2680       1.1  christos 	INSIST(result != DNS_R_CONTINUE);
   2681       1.1  christos 
   2682       1.5  christos cleanup:
   2683       1.1  christos 	dns_loadctx_detach(&lctx);
   2684  1.12.2.1  perseant 	return result;
   2685  1.12.2.1  perseant }
   2686  1.12.2.1  perseant 
   2687  1.12.2.1  perseant static void
   2688  1.12.2.1  perseant load(void *arg) {
   2689  1.12.2.1  perseant 	dns_loadctx_t *lctx = arg;
   2690  1.12.2.1  perseant 	lctx->result = (lctx->load)(lctx);
   2691  1.12.2.1  perseant }
   2692  1.12.2.1  perseant 
   2693  1.12.2.1  perseant static void
   2694  1.12.2.1  perseant load_done(void *arg) {
   2695  1.12.2.1  perseant 	dns_loadctx_t *lctx = arg;
   2696  1.12.2.1  perseant 
   2697  1.12.2.1  perseant 	(lctx->done)(lctx->done_arg, lctx->result);
   2698  1.12.2.1  perseant 	dns_loadctx_detach(&lctx);
   2699       1.1  christos }
   2700       1.1  christos 
   2701       1.1  christos isc_result_t
   2702  1.12.2.1  perseant dns_master_loadfileasync(const char *master_file, dns_name_t *top,
   2703  1.12.2.1  perseant 			 dns_name_t *origin, dns_rdataclass_t zclass,
   2704  1.12.2.1  perseant 			 unsigned int options, uint32_t resign,
   2705  1.12.2.1  perseant 			 dns_rdatacallbacks_t *callbacks, isc_loop_t *loop,
   2706  1.12.2.1  perseant 			 dns_loaddonefunc_t done, void *done_arg,
   2707  1.12.2.1  perseant 			 dns_loadctx_t **lctxp,
   2708  1.12.2.1  perseant 			 dns_masterincludecb_t include_cb, void *include_arg,
   2709  1.12.2.1  perseant 			 isc_mem_t *mctx, dns_masterformat_t format,
   2710  1.12.2.1  perseant 			 uint32_t maxttl) {
   2711       1.1  christos 	dns_loadctx_t *lctx = NULL;
   2712       1.1  christos 	isc_result_t result;
   2713       1.1  christos 
   2714  1.12.2.1  perseant 	REQUIRE(loop != NULL);
   2715       1.1  christos 	REQUIRE(done != NULL);
   2716       1.1  christos 
   2717  1.12.2.1  perseant 	loadctx_create(format, mctx, options, resign, top, zclass, origin,
   2718  1.12.2.1  perseant 		       callbacks, done, done_arg, include_cb, include_arg, NULL,
   2719  1.12.2.1  perseant 		       &lctx);
   2720       1.1  christos 
   2721       1.1  christos 	lctx->maxttl = maxttl;
   2722       1.1  christos 
   2723       1.1  christos 	result = (lctx->openfile)(lctx, master_file);
   2724       1.5  christos 	if (result != ISC_R_SUCCESS) {
   2725  1.12.2.1  perseant 		dns_loadctx_detach(&lctx);
   2726  1.12.2.1  perseant 		return result;
   2727       1.5  christos 	}
   2728       1.1  christos 
   2729  1.12.2.1  perseant 	dns_loadctx_attach(lctx, lctxp);
   2730  1.12.2.1  perseant 	isc_work_enqueue(loop, load, load_done, lctx);
   2731       1.1  christos 
   2732  1.12.2.1  perseant 	return ISC_R_SUCCESS;
   2733       1.1  christos }
   2734       1.1  christos 
   2735       1.1  christos isc_result_t
   2736       1.1  christos dns_master_loadstream(FILE *stream, dns_name_t *top, dns_name_t *origin,
   2737       1.1  christos 		      dns_rdataclass_t zclass, unsigned int options,
   2738       1.5  christos 		      dns_rdatacallbacks_t *callbacks, isc_mem_t *mctx) {
   2739       1.1  christos 	isc_result_t result;
   2740       1.1  christos 	dns_loadctx_t *lctx = NULL;
   2741       1.1  christos 
   2742       1.1  christos 	REQUIRE(stream != NULL);
   2743       1.1  christos 
   2744  1.12.2.1  perseant 	loadctx_create(dns_masterformat_text, mctx, options, 0, top, zclass,
   2745  1.12.2.1  perseant 		       origin, callbacks, NULL, NULL, NULL, NULL, NULL, &lctx);
   2746       1.1  christos 
   2747       1.1  christos 	result = isc_lex_openstream(lctx->lex, stream);
   2748       1.5  christos 	if (result != ISC_R_SUCCESS) {
   2749       1.1  christos 		goto cleanup;
   2750       1.5  christos 	}
   2751       1.1  christos 
   2752       1.1  christos 	result = (lctx->load)(lctx);
   2753       1.1  christos 	INSIST(result != DNS_R_CONTINUE);
   2754       1.1  christos 
   2755       1.5  christos cleanup:
   2756  1.12.2.1  perseant 	dns_loadctx_detach(&lctx);
   2757  1.12.2.1  perseant 	return result;
   2758       1.1  christos }
   2759       1.1  christos 
   2760       1.1  christos isc_result_t
   2761       1.5  christos dns_master_loadbuffer(isc_buffer_t *buffer, dns_name_t *top, dns_name_t *origin,
   2762       1.5  christos 		      dns_rdataclass_t zclass, unsigned int options,
   2763       1.5  christos 		      dns_rdatacallbacks_t *callbacks, isc_mem_t *mctx) {
   2764       1.1  christos 	isc_result_t result;
   2765       1.1  christos 	dns_loadctx_t *lctx = NULL;
   2766       1.1  christos 
   2767       1.1  christos 	REQUIRE(buffer != NULL);
   2768       1.1  christos 
   2769  1.12.2.1  perseant 	loadctx_create(dns_masterformat_text, mctx, options, 0, top, zclass,
   2770  1.12.2.1  perseant 		       origin, callbacks, NULL, NULL, NULL, NULL, NULL, &lctx);
   2771       1.1  christos 
   2772       1.1  christos 	result = isc_lex_openbuffer(lctx->lex, buffer);
   2773       1.5  christos 	if (result != ISC_R_SUCCESS) {
   2774       1.1  christos 		goto cleanup;
   2775       1.5  christos 	}
   2776       1.1  christos 
   2777       1.1  christos 	result = (lctx->load)(lctx);
   2778       1.1  christos 	INSIST(result != DNS_R_CONTINUE);
   2779       1.1  christos 
   2780       1.5  christos cleanup:
   2781       1.1  christos 	dns_loadctx_detach(&lctx);
   2782  1.12.2.1  perseant 	return result;
   2783       1.1  christos }
   2784       1.1  christos 
   2785       1.1  christos /*
   2786       1.1  christos  * Grow the slab of dns_rdatalist_t structures.
   2787       1.1  christos  * Re-link glue and current list.
   2788       1.1  christos  */
   2789       1.1  christos static dns_rdatalist_t *
   2790       1.1  christos grow_rdatalist(int new_len, dns_rdatalist_t *oldlist, int old_len,
   2791       1.1  christos 	       rdatalist_head_t *current, rdatalist_head_t *glue,
   2792       1.5  christos 	       isc_mem_t *mctx) {
   2793       1.1  christos 	dns_rdatalist_t *newlist;
   2794       1.1  christos 	int rdlcount = 0;
   2795       1.1  christos 	ISC_LIST(dns_rdatalist_t) save;
   2796       1.1  christos 	dns_rdatalist_t *this;
   2797       1.1  christos 
   2798  1.12.2.1  perseant 	newlist = isc_mem_cget(mctx, new_len, sizeof(newlist[0]));
   2799       1.1  christos 
   2800       1.1  christos 	ISC_LIST_INIT(save);
   2801       1.1  christos 	while ((this = ISC_LIST_HEAD(*current)) != NULL) {
   2802       1.1  christos 		ISC_LIST_UNLINK(*current, this, link);
   2803       1.1  christos 		ISC_LIST_APPEND(save, this, link);
   2804       1.1  christos 	}
   2805       1.1  christos 	while ((this = ISC_LIST_HEAD(save)) != NULL) {
   2806       1.1  christos 		ISC_LIST_UNLINK(save, this, link);
   2807       1.1  christos 		INSIST(rdlcount < new_len);
   2808       1.1  christos 		newlist[rdlcount] = *this;
   2809       1.1  christos 		ISC_LIST_APPEND(*current, &newlist[rdlcount], link);
   2810       1.1  christos 		rdlcount++;
   2811       1.1  christos 	}
   2812       1.1  christos 
   2813       1.1  christos 	ISC_LIST_INIT(save);
   2814       1.1  christos 	while ((this = ISC_LIST_HEAD(*glue)) != NULL) {
   2815       1.1  christos 		ISC_LIST_UNLINK(*glue, this, link);
   2816       1.1  christos 		ISC_LIST_APPEND(save, this, link);
   2817       1.1  christos 	}
   2818       1.1  christos 	while ((this = ISC_LIST_HEAD(save)) != NULL) {
   2819       1.1  christos 		ISC_LIST_UNLINK(save, this, link);
   2820       1.1  christos 		INSIST(rdlcount < new_len);
   2821       1.1  christos 		newlist[rdlcount] = *this;
   2822       1.1  christos 		ISC_LIST_APPEND(*glue, &newlist[rdlcount], link);
   2823       1.1  christos 		rdlcount++;
   2824       1.1  christos 	}
   2825       1.1  christos 
   2826       1.1  christos 	INSIST(rdlcount == old_len);
   2827       1.5  christos 	if (oldlist != NULL) {
   2828  1.12.2.1  perseant 		isc_mem_cput(mctx, oldlist, old_len, sizeof(*oldlist));
   2829       1.5  christos 	}
   2830  1.12.2.1  perseant 	return newlist;
   2831       1.1  christos }
   2832       1.1  christos 
   2833       1.1  christos /*
   2834       1.1  christos  * Grow the slab of rdata structs.
   2835       1.1  christos  * Re-link the current and glue chains.
   2836       1.1  christos  */
   2837       1.1  christos static dns_rdata_t *
   2838       1.1  christos grow_rdata(int new_len, dns_rdata_t *oldlist, int old_len,
   2839       1.5  christos 	   rdatalist_head_t *current, rdatalist_head_t *glue, isc_mem_t *mctx) {
   2840       1.1  christos 	dns_rdata_t *newlist;
   2841       1.1  christos 	int rdcount = 0;
   2842       1.1  christos 	ISC_LIST(dns_rdata_t) save;
   2843       1.1  christos 	dns_rdatalist_t *this;
   2844       1.1  christos 	dns_rdata_t *rdata;
   2845       1.1  christos 
   2846  1.12.2.1  perseant 	newlist = isc_mem_cget(mctx, new_len, sizeof(*newlist));
   2847       1.1  christos 
   2848       1.1  christos 	/*
   2849       1.1  christos 	 * Copy current relinking.
   2850       1.1  christos 	 */
   2851       1.1  christos 	this = ISC_LIST_HEAD(*current);
   2852       1.1  christos 	while (this != NULL) {
   2853       1.1  christos 		ISC_LIST_INIT(save);
   2854       1.1  christos 		while ((rdata = ISC_LIST_HEAD(this->rdata)) != NULL) {
   2855       1.1  christos 			ISC_LIST_UNLINK(this->rdata, rdata, link);
   2856       1.1  christos 			ISC_LIST_APPEND(save, rdata, link);
   2857       1.1  christos 		}
   2858       1.1  christos 		while ((rdata = ISC_LIST_HEAD(save)) != NULL) {
   2859       1.1  christos 			ISC_LIST_UNLINK(save, rdata, link);
   2860       1.1  christos 			INSIST(rdcount < new_len);
   2861       1.1  christos 			newlist[rdcount] = *rdata;
   2862       1.1  christos 			ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
   2863       1.1  christos 			rdcount++;
   2864       1.1  christos 		}
   2865       1.1  christos 		this = ISC_LIST_NEXT(this, link);
   2866       1.1  christos 	}
   2867       1.1  christos 
   2868       1.1  christos 	/*
   2869       1.1  christos 	 * Copy glue relinking.
   2870       1.1  christos 	 */
   2871       1.1  christos 	this = ISC_LIST_HEAD(*glue);
   2872       1.1  christos 	while (this != NULL) {
   2873       1.1  christos 		ISC_LIST_INIT(save);
   2874       1.1  christos 		while ((rdata = ISC_LIST_HEAD(this->rdata)) != NULL) {
   2875       1.1  christos 			ISC_LIST_UNLINK(this->rdata, rdata, link);
   2876       1.1  christos 			ISC_LIST_APPEND(save, rdata, link);
   2877       1.1  christos 		}
   2878       1.1  christos 		while ((rdata = ISC_LIST_HEAD(save)) != NULL) {
   2879       1.1  christos 			ISC_LIST_UNLINK(save, rdata, link);
   2880       1.1  christos 			INSIST(rdcount < new_len);
   2881       1.1  christos 			newlist[rdcount] = *rdata;
   2882       1.1  christos 			ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
   2883       1.1  christos 			rdcount++;
   2884       1.1  christos 		}
   2885       1.1  christos 		this = ISC_LIST_NEXT(this, link);
   2886       1.1  christos 	}
   2887       1.1  christos 	INSIST(rdcount == old_len || rdcount == 0);
   2888       1.5  christos 	if (oldlist != NULL) {
   2889  1.12.2.1  perseant 		isc_mem_cput(mctx, oldlist, old_len, sizeof(*oldlist));
   2890       1.5  christos 	}
   2891  1.12.2.1  perseant 	return newlist;
   2892       1.1  christos }
   2893       1.1  christos 
   2894       1.3  christos static uint32_t
   2895       1.1  christos resign_fromlist(dns_rdatalist_t *this, dns_loadctx_t *lctx) {
   2896       1.1  christos 	dns_rdata_t *rdata;
   2897       1.1  christos 	dns_rdata_rrsig_t sig;
   2898       1.3  christos 	uint32_t when;
   2899       1.1  christos 
   2900       1.1  christos 	rdata = ISC_LIST_HEAD(this->rdata);
   2901       1.1  christos 	INSIST(rdata != NULL);
   2902       1.1  christos 	(void)dns_rdata_tostruct(rdata, &sig, NULL);
   2903       1.5  christos 	if (isc_serial_gt(sig.timesigned, lctx->now)) {
   2904       1.1  christos 		when = lctx->now;
   2905       1.5  christos 	} else {
   2906       1.1  christos 		when = sig.timeexpire - lctx->resign;
   2907       1.5  christos 	}
   2908       1.1  christos 
   2909       1.1  christos 	rdata = ISC_LIST_NEXT(rdata, link);
   2910       1.1  christos 	while (rdata != NULL) {
   2911       1.1  christos 		(void)dns_rdata_tostruct(rdata, &sig, NULL);
   2912       1.5  christos 		if (isc_serial_gt(sig.timesigned, lctx->now)) {
   2913       1.1  christos 			when = lctx->now;
   2914       1.5  christos 		} else if (sig.timeexpire - lctx->resign < when) {
   2915       1.1  christos 			when = sig.timeexpire - lctx->resign;
   2916       1.5  christos 		}
   2917       1.1  christos 		rdata = ISC_LIST_NEXT(rdata, link);
   2918       1.1  christos 	}
   2919  1.12.2.1  perseant 	return when;
   2920       1.1  christos }
   2921       1.1  christos 
   2922       1.1  christos /*
   2923       1.1  christos  * Convert each element from a rdatalist_t to rdataset then call commit.
   2924       1.1  christos  * Unlink each element as we go.
   2925       1.1  christos  */
   2926       1.1  christos 
   2927       1.1  christos static isc_result_t
   2928       1.1  christos commit(dns_rdatacallbacks_t *callbacks, dns_loadctx_t *lctx,
   2929       1.5  christos        rdatalist_head_t *head, dns_name_t *owner, const char *source,
   2930       1.5  christos        unsigned int line) {
   2931       1.1  christos 	dns_rdatalist_t *this;
   2932       1.1  christos 	dns_rdataset_t dataset;
   2933  1.12.2.1  perseant 	isc_result_t result = ISC_R_SUCCESS;
   2934       1.1  christos 	char namebuf[DNS_NAME_FORMATSIZE];
   2935       1.5  christos 	void (*error)(struct dns_rdatacallbacks *, const char *, ...);
   2936       1.1  christos 
   2937       1.1  christos 	this = ISC_LIST_HEAD(*head);
   2938       1.1  christos 	error = callbacks->error;
   2939       1.1  christos 
   2940  1.12.2.1  perseant 	while (this != NULL) {
   2941       1.1  christos 		dns_rdataset_init(&dataset);
   2942  1.12.2.1  perseant 		dns_rdatalist_tordataset(this, &dataset);
   2943       1.1  christos 		dataset.trust = dns_trust_ultimate;
   2944       1.1  christos 		/*
   2945       1.1  christos 		 * If this is a secure dynamic zone set the re-signing time.
   2946       1.1  christos 		 */
   2947       1.1  christos 		if (dataset.type == dns_rdatatype_rrsig &&
   2948       1.5  christos 		    (lctx->options & DNS_MASTER_RESIGN) != 0)
   2949       1.5  christos 		{
   2950       1.1  christos 			dataset.attributes |= DNS_RDATASETATTR_RESIGN;
   2951       1.1  christos 			dataset.resign = resign_fromlist(this, lctx);
   2952       1.1  christos 		}
   2953  1.12.2.1  perseant 		result = callbacks->add(callbacks->add_private, owner,
   2954  1.12.2.1  perseant 					&dataset DNS__DB_FILELINE);
   2955       1.1  christos 		if (result == ISC_R_NOMEMORY) {
   2956       1.1  christos 			(*error)(callbacks, "dns_master_load: %s",
   2957      1.12  christos 				 isc_result_totext(result));
   2958       1.1  christos 		} else if (result != ISC_R_SUCCESS) {
   2959       1.1  christos 			dns_name_format(owner, namebuf, sizeof(namebuf));
   2960       1.1  christos 			if (source != NULL) {
   2961       1.1  christos 				(*error)(callbacks, "%s: %s:%lu: %s: %s",
   2962       1.1  christos 					 "dns_master_load", source, line,
   2963      1.12  christos 					 namebuf, isc_result_totext(result));
   2964       1.1  christos 			} else {
   2965       1.1  christos 				(*error)(callbacks, "%s: %s: %s",
   2966       1.1  christos 					 "dns_master_load", namebuf,
   2967      1.12  christos 					 isc_result_totext(result));
   2968       1.1  christos 			}
   2969       1.1  christos 		}
   2970       1.5  christos 		if (MANYERRS(lctx, result)) {
   2971       1.1  christos 			SETRESULT(lctx, result);
   2972       1.5  christos 		} else if (result != ISC_R_SUCCESS) {
   2973  1.12.2.1  perseant 			break;
   2974       1.5  christos 		}
   2975       1.1  christos 		ISC_LIST_UNLINK(*head, this, link);
   2976       1.1  christos 		this = ISC_LIST_HEAD(*head);
   2977  1.12.2.1  perseant 	}
   2978  1.12.2.1  perseant 
   2979  1.12.2.1  perseant 	return result;
   2980       1.1  christos }
   2981       1.1  christos 
   2982       1.1  christos /*
   2983       1.3  christos  * Returns true if one of the NS rdata's contains 'owner'.
   2984       1.1  christos  */
   2985       1.1  christos 
   2986       1.3  christos static bool
   2987       1.1  christos is_glue(rdatalist_head_t *head, dns_name_t *owner) {
   2988       1.1  christos 	dns_rdatalist_t *this;
   2989       1.1  christos 	dns_rdata_t *rdata;
   2990       1.1  christos 	isc_region_t region;
   2991       1.1  christos 	dns_name_t name;
   2992       1.1  christos 
   2993       1.1  christos 	/*
   2994       1.1  christos 	 * Find NS rrset.
   2995       1.1  christos 	 */
   2996       1.1  christos 	this = ISC_LIST_HEAD(*head);
   2997       1.1  christos 	while (this != NULL) {
   2998       1.5  christos 		if (this->type == dns_rdatatype_ns) {
   2999       1.1  christos 			break;
   3000       1.5  christos 		}
   3001       1.1  christos 		this = ISC_LIST_NEXT(this, link);
   3002       1.1  christos 	}
   3003       1.5  christos 	if (this == NULL) {
   3004  1.12.2.1  perseant 		return false;
   3005       1.5  christos 	}
   3006       1.1  christos 
   3007       1.1  christos 	rdata = ISC_LIST_HEAD(this->rdata);
   3008       1.1  christos 	while (rdata != NULL) {
   3009       1.1  christos 		dns_name_init(&name, NULL);
   3010       1.1  christos 		dns_rdata_toregion(rdata, &region);
   3011       1.1  christos 		dns_name_fromregion(&name, &region);
   3012       1.3  christos 		if (dns_name_equal(&name, owner)) {
   3013  1.12.2.1  perseant 			return true;
   3014       1.3  christos 		}
   3015       1.1  christos 		rdata = ISC_LIST_NEXT(rdata, link);
   3016       1.1  christos 	}
   3017  1.12.2.1  perseant 	return false;
   3018       1.1  christos }
   3019       1.1  christos 
   3020       1.1  christos void
   3021       1.1  christos dns_loadctx_cancel(dns_loadctx_t *lctx) {
   3022       1.1  christos 	REQUIRE(DNS_LCTX_VALID(lctx));
   3023       1.1  christos 
   3024       1.5  christos 	atomic_store_release(&lctx->canceled, true);
   3025       1.1  christos }
   3026       1.1  christos 
   3027       1.1  christos void
   3028       1.1  christos dns_master_initrawheader(dns_masterrawheader_t *header) {
   3029       1.1  christos 	memset(header, 0, sizeof(dns_masterrawheader_t));
   3030       1.1  christos }
   3031