| /freebsd/contrib/unbound/dnstap/ |
| H A D | dnstap.m4 | 1 # dnstap.m4 5 # Check for required dnstap libraries and add dnstap configure args. 8 AC_ARG_ENABLE([dnstap], optenable 9 AS_HELP_STRING([--enable-dnstap], 10 [Enable dnstap support (requires protobuf-c)]), 14 AC_ARG_WITH([dnstap-socket-path], 15 AS_HELP_STRING([--with-dnstap-socket-path=pathname], 16 [set default dnstap socket path]), 30 …he protoc or protoc-c program was not found. It is needed for dnstap, use --disable-dnstap, or ins… 36 …ROR([[The protoc-gen-c plugin was not found. It is needed for dnstap, use --disable-dnstap, or ins… [all …]
|
| H A D | dnstap.proto | 1 // dnstap: flexible, structured event replication format for DNS software 3 // This file contains the protobuf schemas for the "dnstap" structured event 18 package dnstap; package 20 // "Dnstap": this is the top-level dnstap type, which is a "union" type that 21 // contains other kinds of dnstap payloads, although currently only one type 22 // of dnstap payload is defined.
|
| H A D | dnstap.c | 160 if(cfg->dnstap && cfg->dnstap_socket_path && cfg->dnstap_socket_path[0] && in dt_create() 298 if (!cfg->dnstap) in dt_apply_cfg()
|
| H A D | dtstream.c | 339 if(!cfg->dnstap) { in dt_io_thread_apply_cfg()
|
| /freebsd/contrib/unbound/doc/ |
| H A D | unbound-control.rst | 187 For :ref:`dnstap<unbound.conf.dnstap>` these options can be changed: 188 … :ref:`dnstap-log-resolver-query-messages<unbound.conf.dnstap.dnstap-log-resolver-query-messages>`, 189 …:ref:`dnstap-log-resolver-response-messages<unbound.conf.dnstap.dnstap-log-resolver-response-messa… 190 :ref:`dnstap-log-client-query-messages<unbound.conf.dnstap.dnstap-log-client-query-messages>`, 191 …:ref:`dnstap-log-client-response-messages<unbound.conf.dnstap.dnstap-log-client-response-messages>… 192 …:ref:`dnstap-log-forwarder-query-messages<unbound.conf.dnstap.dnstap-log-forwarder-query-messages>… 193 …:ref:`dnstap-log-forwarder-response-messages<unbound.conf.dnstap.dnstap-log-forwarder-response-mes… 196 :ref:`dnstap-enable<unbound.conf.dnstap.dnstap-enable>`, 197 :ref:`dnstap-bidirectional<unbound.conf.dnstap.dnstap-bidirectional>`, 198 :ref:`dnstap-socket-path<unbound.conf.dnstap.dnstap-socket-path>`, [all …]
|
| H A D | example.conf.in | 1411 # Dnstap logging support, if compiled in by using --enable-dnstap to configure. 1412 # To enable, set the dnstap-enable to yes and also some of 1413 # dnstap-log-..-messages to yes. And select an upstream log destination, by 1415 # dnstap: 1416 # dnstap-enable: no 1418 # dnstap-bidirectional: yes 1419 # dnstap-socket-path: "@DNSTAP_SOCKET_PATH@" 1420 # # if "" use the unix socket in dnstap-socket-path, otherwise, 1422 # dnstap-ip: "" 1423 # # if set to yes if you want to use TLS to dnstap-ip, no for TCP. [all …]
|
| H A D | CREDITS | 23 Robert Edmonds - dnstap code.
|
| H A D | unbound.conf.rst | 153 :ref:`dnstap:<unbound.conf.dnstap>` 154 Configuration of the optional dnstap logging feature; a flexible, 4921 .. _unbound.conf.dnstap: 4926 These options are part of the ``dnstap:`` section. 4929 When compiled in by using ``--enable-dnstap``, it can be enabled in the 4930 ``dnstap:`` section. 4937 @@UAHL@unbound.conf.dnstap@dnstap-enable@@: *<yes or no>* 4938 If dnstap is enabled. 4940 *dnstap-log-..-messages:* options is enabled it sends logs for those 4946 @@UAHL@unbound.conf.dnstap@dnstap-bidirectional@@: *<yes or no>* [all …]
|
| H A D | README | 7 The DNSTAP code has BSD license in dnstap/dnstap.c.
|
| H A D | Changelog | 194 dnstap, and fast_reload. 249 on malloc failure for dnstap, or if gethostname fails. 1231 - Fix to improve dnstap discovery on Fedora. 1336 - Fix for parallel build of dnstap protoc-c output. 1337 - Fix dnstap to use protoc. 1394 - Fix ub_event and include dnstap and win_svc headers. 1408 fast reload, doq, windows-stop and dnstap. 1622 - Fix for dnsoverquic and dnstap to use the correct dnstap 1626 - Fix for dnstap with dnscrypt and dnstap without dnsoverquic. 1659 - Fix for dnstap compile of doqclient with doq disabled. [all …]
|
| /freebsd/contrib/unbound/util/ |
| H A D | configlexer.lex | 494 dnstap{COLON} { YDVAR(0, VAR_DNSTAP) } 495 dnstap-enable{COLON} { YDVAR(1, VAR_DNSTAP_ENABLE) } 496 dnstap-bidirectional{COLON} { YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) } 497 dnstap-socket-path{COLON} { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } 498 dnstap-ip{COLON} { YDVAR(1, VAR_DNSTAP_IP) } 499 dnstap-tls{COLON} { YDVAR(1, VAR_DNSTAP_TLS) } 500 dnstap-tls-server-name{COLON} { YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) } 501 dnstap-tls-cert-bundle{COLON} { YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) } 502 dnstap-tls-client-key-file{COLON} { 504 dnstap-tls-client-cert-file{COLON} { [all …]
|
| H A D | config_file.h | 584 int dnstap; member
|
| H A D | config_file.c | 831 else S_YNO("dnstap-enable:", dnstap) in config_set_option() 1326 else O_YNO(opt, "dnstap-enable", dnstap) in config_get_option()
|
| H A D | configparser.y | 3591 else cfg_parser->cfg->dnstap = (strcmp($2, "yes")==0);
|
| H A D | configparser.c | 7184 else cfg_parser->cfg->dnstap = (strcmp((yyvsp[0].str), "yes")==0); in yyparse()
|
| /freebsd/contrib/unbound/ |
| H A D | Makefile.in | 261 DNSTAP_SOCKET_SRC=dnstap/unbound-dnstap-socket.c 262 DNSTAP_SOCKET_OBJ=unbound-dnstap-socket.lo 446 dnstap.lo dnstap.o: $(srcdir)/dnstap/dnstap.c config.h dnstap/dnstap_config.h \ 447 dnstap/dnstap.pb-c.c dnstap/dnstap.pb-c.h $(srcdir)/dnstap/dnstap.h \ 454 dnstap/dnstap.pb-c.c: $(srcdir)/dnstap/dnstap.proto 455 @-if test ! -d dnstap; then $(INSTALL) -d dnstap; fi 456 $(PROTOC_C) --c_out=. --proto_path=$(srcdir) $(srcdir)/dnstap/dnstap.proto 457 dnstap/dnstap.pb-c.h: dnstap/dnstap.pb-c.c 460 unbound-dnstap-socket$(EXEEXT): $(DNSTAP_SOCKET_OBJ_LINK) 463 dnstap.pb-c.lo dnstap.pb-c.o: dnstap/dnstap.pb-c.c dnstap/dnstap.pb-c.h [all …]
|
| H A D | configure.ac | 9 sinclude(dnstap/dnstap.m4) 2122 # check for dnstap if requested 2123 dt_DNSTAP([$UNBOUND_RUN_DIR/dnstap.sock], 2125 AC_DEFINE([USE_DNSTAP], [1], [Define to 1 to enable dnstap support]) 2131 ["$hdr_dnstap_socket_path"], [default dnstap socket path]) 2133 AC_SUBST(DNSTAP_SOCKET_TESTBIN,['unbound-dnstap-socket$(EXEEXT)']) 2134 …AC_SUBST([DNSTAP_SRC], ["dnstap/dnstap.c dnstap/dnstap.pb-c.c dnstap/dnstap_fstrm.c dnstap/dtstrea… 2135 AC_SUBST([DNSTAP_OBJ], ["dnstap.lo dnstap.pb-c.lo dnstap_fstrm.lo dtstream.lo"]) 2595 …c/unbound-control.8 doc/unbound-host.1 smallapp/unbound-control-setup.sh dnstap/dnstap_config.h dn…
|
| H A D | config.h.in | 43 /* default dnstap socket path */ 1045 /* Define to 1 to enable dnstap support */
|
| H A D | configure | 1646 --enable-dnstap Enable dnstap support (requires protobuf-c) 27491 "dnstap/dnstap_config.h") CONFIG_FILES="$CONFIG_FILES dnstap/dnstap_config.h" ;;
|
| /freebsd/contrib/unbound/daemon/ |
| H A D | worker.c | 2331 if(cfg->dnstap) { in worker_init() 2471 if(worker->daemon->cfg->dnstap in worker_init() 2526 if(worker->daemon->cfg->dnstap in worker_delete()
|
| H A D | daemon.c | 853 if(daemon->cfg->dnstap) { in daemon_create_workers()
|
| H A D | remote.c | 6494 COPY_VAR_int(dnstap); in fr_atomic_copy_cfg() 6838 if(env->cfg->dnstap) { in fr_reload_config() 8140 log_assert(d_dtenv != NULL || !worker->daemon->cfg->dnstap); in fr_worker_pickup_dnstap_changes()
|
| /freebsd/contrib/unbound/contrib/ |
| H A D | fastrpz.patch | 71 sinclude(dnstap/dnstap.m4) 103 fatal_exit("dnstap enabled in config but not built with dnstap support"); 3207 @@ -467,6 +467,10 @@ dnstap-log-forwarder-query-messages{COLON} { 3209 dnstap-log-forwarder-response-messages{COLON} {
|