Commit graph

16 commits

Author SHA1 Message Date
Kim Alvefur
b4e8a8c6c4 net.adns: Collect DNS lookup timing metrics
Nice to have this in OpenMetricts instead of debug logs
2025-02-07 09:22:52 +01:00
Kim Alvefur
f29bc1c119 net.unbound: Show canonical name in textual format (e.g. in shell)
libunbound does not tell us the whole chain of CNAMEs, only the final
canonical name.

This is to aid in debugging since it will only be shown in the shell.
2024-04-14 14:06:57 +02:00
Kim Alvefur
869581384d net: Prefix module imports with prosody namespace 2023-03-17 16:23:12 +01:00
Kim Alvefur
4f3ba05b4d net.unbound: Merge luaunbound and prosody defaults in absence of user config (fixes #1763) (thanks rgd)
add_defaults() is supposed to merge 3 tables, the defaults in
luaunbound, the defaults from prosody and any config from the prosody
config file.  In the case where no `unbound={}` has been in the config,
it skips over the merge and returns only the prosody built-in defaults.

This results in libunbound skipping reading resolv.conf and uses its
default behavior of full recursive resolution.

Prior to #1737 there were only two tables, the luaunbound defaults and
the prosody config, where bypassing the merge and returning the former
did the right thing.
2022-06-19 19:49:32 +02:00
Kim Alvefur
24288146ae net.unbound: Adjust log level of error to error to error
This error is an error, therefore it should be at the error level
2022-05-16 14:51:01 +02:00
Kim Alvefur
5e95ed633a net.unbound: Disable use of hosts file by default (fixes #1737)
This mirrors the behaviour with net.dns and avoids the initialization
issue in #1737
2022-05-16 12:45:51 +02:00
Kim Alvefur
a3ea469ed9 util.id: Adjust entropy levels, with rationales
Modules using ids for logging should not need the now pretty large
medium one.
2021-12-02 01:14:55 +01:00
Kim Alvefur
77ee71daa7 net.unbound: Fix to initialize under prosodyctl
Lazy initialization only worked for async queries, but prosodyctl check
dns uses sync queries.
2021-01-21 23:33:59 +01:00
Kim Alvefur
de5e7a9c77 net.unbound: Delay loading until server has started or first query
Shouldn't need a DNS resolver until later anyways. Might even be
sensible to only initialize if a query is actually attempted.
2021-01-05 21:40:06 +01:00
Kim Alvefur
c69f675965 net.unbound: Move libunbound initialization into a function
Prepare for lazy-loading it.
2021-01-05 21:36:04 +01:00
Kim Alvefur
147835b1ec net.unbound: Allow tracing individual queries with a logger per query 2021-01-05 20:04:07 +01:00
Kim Alvefur
b4403aaddd net.unbound: Don't pass error as logger formatting string
This could cause weirdness if the error contains formatting options, but
should be reasonably safe with util.format
2021-01-05 20:02:46 +01:00
Kim Alvefur
a698496ef2 net.unbound: Log net.server interactions
Noticed the potential need for this thanks to Ge0rG
2021-01-05 19:53:40 +01:00
Kim Alvefur
02c3cc978d net.unbound: Remove compat for missing promises (pre-0.11)
Code existed in a separate project before merged into Prosody, so
util.promise was not always around.
2020-06-25 18:20:51 +02:00
Kim Alvefur
9be5cb3fbd net.unbound: Strip support for legacy net.server APIs
These are not needed since the watchfd API is provided by all net.server
backends.
2020-06-25 17:56:48 +02:00
Kim Alvefur
b96535b6ae net.unbound: Async DNS resolver library based on libunbound via luaunbound 2019-03-09 21:19:24 +01:00