| /src/external/mpl/bind/dist/lib/dns/ |
| ede.c | 1 /* $NetBSD: ede.c,v 1.3 2026/08/29 14:55:16 christos Exp $ */ 23 #include <dns/ede.h> 50 "ignoring duplicate ede %u %s", code, 58 "too many ede, ignoring %u %s", code, 62 INSIST(edectx->ede[edectx->nextede] == NULL); 66 "set ede: info-code %u extra-text %s", code, 75 "truncate EDE code %hu text: %s", code, 94 edectx->ede[edectx->nextede] = edns; 117 dns_ednsopt_t *edns = edectx->ede[i]; 123 edectx->ede[i] = NULL [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/rpz/ns7/ |
| named.conf.j2 | 23 zone "policy2" add-soa no ede none;
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| ede.h | 1 /* $NetBSD: ede.h,v 1.3 2026/08/29 14:55:17 christos Exp $ */ 55 * given the supplemental nature of EDE), implementers and operators creating 56 * EDE options SHOULD avoid lengthy EXTRA-TEXT contents. 68 dns_ednsopt_t *ede[DNS_EDE_MAX_ERRORS]; member in struct:dns_edectx 73 * Multiple extended DNS errors (EDE) (defined in RFC 8914) can be raised during 75 * abstract and holds pending EDE and the set of dns_ede_ API enable to 76 * manipulate its state (adding EDE, transfer to another context, etc.). EDE are 85 * Make sure we can fit the currently supported EDE codes in the edeused bitmap. 103 * Reset "edectx" internal state and free all its EDE from memory. "edectx" i [all...] |
| resolver.h | 61 #include <dns/ede.h>
|
| rpz.h | 155 uint16_t ede; /* Extended DNS Error */ member in struct:dns_rpz_zone
|
| /src/external/bsd/unbound/dist/testdata/ede.tdir/ |
| ede.conf | 18 ede: yes
|
| /src/external/mpl/bind/dist/bin/tests/system/checkconf/ |
| bad-rpz-ede.conf | 21 zone "example.com." ede unsupported;
|
| good-rpz-ede-none.conf | 21 zone "example.com." ede none;
|
| good-rpz-ede.conf | 21 zone "example.com." ede filtered;
|
| /src/external/bsd/nsd/dist/ |
| edns.h | 70 int ede; /* RFC 8914 - Extended DNS Errors */ member in struct:edns_record 88 #define ASSIGN_EDE_CODE_AND_STRING_LITERAL(EDE, CODE, LITERAL) \ 90 EDE = (CODE); \ 91 EDE ## _text = (LITERAL ""); \ 92 EDE ## _text_len = sizeof(LITERAL) - 1; \
|
| axfr.c | 206 q->edns.ede = EDE_PROHIBITED; 232 q->edns.ede = EDE_PROHIBITED; 254 q->edns.ede = EDE_PROHIBITED;
|
| query.c | 605 q->edns.ede = EDE_PROHIBITED; 624 q->edns.ede = EDE_PROHIBITED; 630 q->edns.ede = EDE_NOT_SUPPORTED; 638 q->edns.ede = EDE_NOT_SUPPORTED; 1230 ASSIGN_EDE_CODE_AND_STRING_LITERAL(q->edns.ede, 1371 q->edns.ede = EDE_NOT_AUTHORITATIVE; 1403 q->edns.ede = EDE_PROHIBITED; 1446 q->edns.ede = EDE_PROHIBITED; 1457 q->edns.ede = EDE_NOT_READY; 1458 ASSIGN_EDE_CODE_AND_STRING_LITERAL(q->edns.ede, [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/rpz/ns3/ |
| named.conf.j2 | 46 zone "manual-update-rpz" ede forged; 49 zone "evil-cname" policy cname a12.tld2. ede blocked; 50 zone "wild-cname" ede blocked;
|
| named1.conf.j2 | 46 zone "manual-update-rpz" ede forged; 49 zone "evil-cname" policy cname a12.tld2. ede blocked; 50 zone "wild-cname" ede blocked;
|
| /src/external/mpl/bind/dist/tests/dns/ |
| ede_test.c | 31 #include <dns/ede.h> 33 #include "../../lib/dns/ede.c" 48 dns_ednsopt_t *edns = edectx->ede[i];
|
| /src/external/bsd/unbound/dist/testdata/fast_reload_most_options.tdir/ |
| fast_reload_most_options.conf | 94 ede: yes 95 ede-serve-expired: yes
|
| /src/external/bsd/unbound/dist/util/ |
| module.c | 164 sldns_ede_code ede = LDNS_EDE_NONE; local 167 if(ede != LDNS_EDE_NONE 168 && ede != LDNS_EDE_DNSSEC_BOGUS 170 ede = s->reason_bogus; 172 return ede;
|
| /src/external/mpl/bind/dist/bin/tests/system/serve_stale/ |
| tests_serve_stale_tcp.py | 76 """Verify SERVFAIL carries EDE 22 (and not EDE 3) when auth is unreachable. 79 serve stale, the resolver must return SERVFAIL with EDE 22 (No 80 Reachable Authority) and must not attach EDE 3 (Stale Answer) 88 isctest.check.ede(res, dns.edns.EDECode.NO_REACHABLE_AUTHORITY) 90 opt.otype == dns.edns.OptionType.EDE 93 ), "unexpected stale-answer EDE in SERVFAIL response" 103 authoritative NOERROR answer with no EDE attached, not a stale
|
| /src/external/bsd/unbound/dist/cachedb/ |
| cachedb.c | 415 /* The EDE is added to the out-list so it is encoded in the cached message */ 416 if (qstate->env->cfg->ede && qstate->return_msg->rep->reason_bogus != LDNS_EDE_NONE) { 548 struct edns_option* ede; local 589 /* We find the EDE in the in-list after parsing */ 590 if(qstate->env->cfg->ede && 591 (ede = edns_opt_list_find(edns.opt_list_in, LDNS_EDNS_EDE))) { 592 if(ede->opt_len >= 2) { 594 sldns_read_uint16(ede->opt_data); 597 if(ede->opt_len > 2) { 598 size_t ede_len = ede->opt_len - 2 [all...] |
| /src/usr.sbin/installboot/ |
| ext2fs.c | 333 struct ext2fs_direct *de, *ede; local 351 ede = (struct ext2fs_direct *)&dirbuf[blksize]; 352 while (de < ede) {
|
| ffs.c | 397 struct direct *de, *ede; local 415 ede = (struct direct *)&dirbuf[blksize]; 416 while (de < ede) {
|
| /src/external/bsd/unbound/dist/util/data/ |
| msgreply.h | 185 * EDE (rfc8914) code with reason for DNSSEC bogus status. 186 * Used for caching the EDE. 191 * EDE (rfc8914) NULL-terminated string with human-readable reason 193 * Used for caching the EDE. 599 * Append edns EDE option to edns options list. 601 * string (TXT) when assigning to ede.text; it silences compiler nonstring 605 * @param CODE: the EDE code. 613 } ede = { htons(CODE), TXT }; \ 614 verbose(VERB_ALGO, "attached EDE code: %d with" \ 618 (void *)&ede, (REGION)); [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ |
| tests_dig.py | 528 param("ede:0000666f6f", "; EDE: 0 (Other): (foo)", id="first-defined-code"), 529 param("ede:0018", "; EDE: 24 (Invalid Data)", id="last-defined-code"), 530 param("ede:0019666f6f", "; EDE: 25: (foo)", id="undefined-code"), 531 param("ede", "; EDE:", id="empty"), 532 param("ede:00", '; EDE: 00 (".")', id="too-short") [all...] |
| /src/external/bsd/unbound/dist/daemon/ |
| worker.c | 641 /* Attach the cached EDE (RFC8914) */ 642 if(worker->env.cfg->ede && 682 /* Attach the cached EDE (RFC8914) if CD bit is set and the answer is 684 if(worker->env.cfg->ede && has_cd_bit && 846 /* Attach the cached EDE (RFC8914) */ 847 if(worker->env.cfg->ede && rep->reason_bogus != LDNS_EDE_NONE) { 915 worker->env.cfg->ede_serve_expired && worker->env.cfg->ede) { 919 /* Attach the cached EDE (RFC8914) if CD bit is set and the 922 worker->env.cfg->ede && has_cd_bit && 1247 struct acl_addr* acladdr, int ede, [all...] |
| /src/external/mpl/bind/lib/libdns/ |
| Makefile | 49 dnssec.c ds.c ede.c fixedname.c forward.c ipkeylist.c iptable.c \
|