mirror of
https://github.com/cmur2/dyndnsd.git
synced 2025-08-08 08:33:56 +02:00
Compare commits
42 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
84429c066f | ||
![]() |
9768424628 | ||
![]() |
882fcbe13b | ||
![]() |
7580e87a30 | ||
![]() |
6c1d44b388 | ||
![]() |
a67418653d | ||
![]() |
b1f9e39fc4 | ||
b8fd42fd85 | |||
e806517b18 | |||
![]() |
7a2d3a90ac | ||
![]() |
c5929bbbbd | ||
![]() |
98e6b3a711 | ||
![]() |
3d4bfc0158 | ||
afd95a81c3 | |||
![]() |
f3cc8fc03a | ||
![]() |
dcd4201523 | ||
![]() |
781379d879 | ||
![]() |
429bbff838 | ||
![]() |
bc97a0fc05 | ||
![]() |
47a73fd149 | ||
fe2ef47675 | |||
fc0fe3c6d5 | |||
![]() |
d4bcac2d5b | ||
![]() |
0f57c6f305 | ||
![]() |
50d71f5e54 | ||
![]() |
2120450659 | ||
![]() |
fdb3274785 | ||
![]() |
5d41a1b77e | ||
f716afe84d | |||
b73416d775 | |||
![]() |
43dd527485 | ||
![]() |
2c629f8bbc | ||
![]() |
1db9c4a6ee | ||
![]() |
b1eca52235 | ||
![]() |
4987ec2264 | ||
ad01f9a9dd | |||
6aa8c10ae0 | |||
6afed2049a | |||
199ccf7665 | |||
7c77b7304a | |||
243f679d7f | |||
085f75c6dd |
40
.github/renovate.json5
vendored
Normal file
40
.github/renovate.json5
vendored
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
extends: [
|
||||||
|
"config:base",
|
||||||
|
":dependencyDashboard",
|
||||||
|
":prHourlyLimitNone",
|
||||||
|
":prConcurrentLimitNone",
|
||||||
|
":label(dependency-upgrade)",
|
||||||
|
],
|
||||||
|
schedule: ["before 8am on thursday"],
|
||||||
|
branchPrefix: "renovate-",
|
||||||
|
dependencyDashboardHeader: "View repository job log [here](https://app.renovatebot.com/dashboard#github/cmur2/dyndnsd).",
|
||||||
|
commitMessagePrefix: "project: ",
|
||||||
|
commitMessageAction: "update",
|
||||||
|
commitMessageTopic: "{{depName}}",
|
||||||
|
commitMessageExtra: "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
||||||
|
packageRules: [
|
||||||
|
// Ruby dependencies are managed by depfu
|
||||||
|
{
|
||||||
|
matchManagers: ["bundler"],
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
// Commit message formats
|
||||||
|
{
|
||||||
|
matchDatasources: ["docker"],
|
||||||
|
commitMessagePrefix: "docker: ",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
matchDatasources: ["github-actions"],
|
||||||
|
commitMessagePrefix: "ci: ",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
regexManagers: [
|
||||||
|
{
|
||||||
|
fileMatch: ["\.rb$", "^Rakefile$"],
|
||||||
|
matchStrings: [
|
||||||
|
"renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s.*_version = '(?<currentValue>.*)'\\s"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
14
.github/workflows/cd.yml
vendored
14
.github/workflows/cd.yml
vendored
@@ -11,10 +11,24 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Extract dyndnsd version from tag name
|
- name: Extract dyndnsd version from tag name
|
||||||
run: |
|
run: |
|
||||||
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Wait for dyndnsd ${{ env.DYNDNSD_VERSION }} gem to be available
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
for retry in $(seq 1 5); do
|
||||||
|
echo "Checking if dyndnsd $DYNDNSD_VERSION gem is retrievable from rubygems.org (try #$retry)..."
|
||||||
|
sudo gem install dyndnsd -v "$DYNDNSD_VERSION"
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
sleep 60
|
||||||
|
done
|
||||||
|
exit 1
|
||||||
|
|
||||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
# https://github.com/marketplace/actions/build-and-push-docker-images
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -27,6 +27,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ruby-version: ${{ matrix.ruby-version }}
|
ruby-version: ${{ matrix.ruby-version }}
|
||||||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||||||
|
|
||||||
- name: Lint and Test
|
- name: Lint and Test
|
||||||
run: |
|
run: |
|
||||||
bundle exec rake ci
|
bundle exec rake ci
|
||||||
@@ -38,4 +39,5 @@ jobs:
|
|||||||
- name: Test building Docker image for dyndnsd
|
- name: Test building Docker image for dyndnsd
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: docker
|
context: .
|
||||||
|
file: docker/ci/Dockerfile
|
||||||
|
31
CHANGELOG.md
31
CHANGELOG.md
@@ -1,5 +1,34 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.4.4 (August 26th, 2021)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.3 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
|
||||||
|
## 3.4.3 (August 20th, 2021)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.2 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
|
||||||
|
## 3.4.2 (July 30, 2021)
|
||||||
|
|
||||||
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
- move from OpenTracing to OpenTelemetry for experimental tracing feature
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.1 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
- adopt Renovate for dependency updates
|
||||||
|
|
||||||
|
## 3.4.1 (April 15, 2021)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- update base of Docker image to Alpine 3.13.5 to fix security vulnerabilities
|
||||||
|
|
||||||
## 3.4.0 (April 2, 2021)
|
## 3.4.0 (April 2, 2021)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
@@ -169,7 +198,7 @@ IMPROVEMENTS:
|
|||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
- Support dropping priviliges on startup, also affects external commands run
|
- Support dropping privileges on startup, also affects external commands run
|
||||||
- Add [metriks](https://github.com/eric/metriks) support for basic metrics in the process title
|
- Add [metriks](https://github.com/eric/metriks) support for basic metrics in the process title
|
||||||
- Detach from child processes running external commands to avoid zombie processes
|
- Detach from child processes running external commands to avoid zombie processes
|
||||||
|
|
||||||
|
40
README.md
40
README.md
@@ -75,7 +75,7 @@ There is an officially maintained [Docker image for dyndnsd](https://hub.docker.
|
|||||||
|
|
||||||
Users can make extensions by deriving from the official Docker image or building their own.
|
Users can make extensions by deriving from the official Docker image or building their own.
|
||||||
|
|
||||||
The Docker image consumes the same configuration file in YAML format as the gem, inside the container it needs to be mounted/available as `/etc/dyndnsd/config.yml`. the following YAML should be used as a base and extended with user's settings:
|
The Docker image consumes the same configuration file in YAML format as the gem, inside the container it needs to be mounted/available as `/etc/dyndnsd/config.yml`. The following YAML should be used as a base and extended with user's settings:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
@@ -98,7 +98,7 @@ docker run -d --name dyndnsd \
|
|||||||
cmur2/dyndnsd:vX.Y.Z
|
cmur2/dyndnsd:vX.Y.Z
|
||||||
```
|
```
|
||||||
|
|
||||||
*Note*: You may need to expose more then just port 8080 e.g. if you use the `zone_transfer_server` which can be done by appending additional `-p 5353:5353` flags to the `docker run` command.
|
*Note*: You may need to expose more than just port 8080 e.g. if you use the `zone_transfer_server` which can be done by appending additional `-p 5353:5353` flags to the `docker run` command.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -106,7 +106,7 @@ docker run -d --name dyndnsd \
|
|||||||
|
|
||||||
By using [DNS zone transfers via AXFR (RFC5936)](https://tools.ietf.org/html/rfc5936) any secondary nameserver can retrieve the DNS zone contents from dyndnsd.rb and serve them to clients.
|
By using [DNS zone transfers via AXFR (RFC5936)](https://tools.ietf.org/html/rfc5936) any secondary nameserver can retrieve the DNS zone contents from dyndnsd.rb and serve them to clients.
|
||||||
To speedup propagation after changes dyndnsd.rb can issue a [DNS NOTIFY (RFC1996)](https://tools.ietf.org/html/rfc1996) to inform the nameserver that the DNS zone contents changed and should be fetched even before the time indicated in the SOA record is up.
|
To speedup propagation after changes dyndnsd.rb can issue a [DNS NOTIFY (RFC1996)](https://tools.ietf.org/html/rfc1996) to inform the nameserver that the DNS zone contents changed and should be fetched even before the time indicated in the SOA record is up.
|
||||||
Currently dyndnsd.rb does not support any authentication for incoming DNS zone transfer requests so it should be isolated from the internet on these ports.
|
Currently, dyndnsd.rb does not support any authentication for incoming DNS zone transfer request, so it should be isolated from the internet on these ports.
|
||||||
|
|
||||||
This approach has several advantages:
|
This approach has several advantages:
|
||||||
- dyndnsd.rb can be used in *hidden primary* fashion isolated from client's DNS traffic and does not need to implement full nameserver features
|
- dyndnsd.rb can be used in *hidden primary* fashion isolated from client's DNS traffic and does not need to implement full nameserver features
|
||||||
@@ -151,7 +151,7 @@ users:
|
|||||||
|
|
||||||
NSD is a nice, open source, authoritative-only, low-memory DNS server that reads BIND-style zone files (and converts them into its own database) and has a simple configuration file.
|
NSD is a nice, open source, authoritative-only, low-memory DNS server that reads BIND-style zone files (and converts them into its own database) and has a simple configuration file.
|
||||||
|
|
||||||
A feature NSD is lacking is the [Dynamic DNS update (RFC2136)](https://tools.ietf.org/html/rfc2136) functionality BIND offers but one can fake it using the following dyndnsd.rb configuration:
|
A feature NSD is lacking is the [Dynamic DNS update (RFC2136)](https://tools.ietf.org/html/rfc2136) functionality BIND offers, but one can fake it using the following dyndnsd.rb configuration:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
@@ -198,23 +198,23 @@ The update URL you want to tell your clients (humans or scripts ^^) consists of
|
|||||||
where:
|
where:
|
||||||
|
|
||||||
* the protocol depends on your (web server/proxy) settings
|
* the protocol depends on your (web server/proxy) settings
|
||||||
* USER and PASSWORD are needed for HTTP Basic Auth and valid combinations are defined in your config.yaml
|
* `USER` and `PASSWORD` are needed for HTTP Basic Auth and valid combinations are defined in your config.yaml
|
||||||
* DOMAIN should match what you defined in your config.yaml as domain but may be anything else when using a webserver as proxy
|
* `DOMAIN` should match what you defined in your config.yaml as domain but may be anything else when using a web server as proxy
|
||||||
* PORT depends on your (webserver/proxy) settings
|
* `PORT` depends on your (web server/proxy) settings
|
||||||
* HOSTNAMES is a required list of comma-separated FQDNs (they all have to end with your config.yaml domain) the user wants to update
|
* `HOSTNAMES` is a required list of comma-separated FQDNs (they all have to end with your config.yaml domain) the user wants to update
|
||||||
* MYIP is optional and the HTTP client's IP address will be used if missing
|
* `MYIP` is optional and the HTTP client's IP address will be used if missing
|
||||||
* MYIP6 is optional but if present also requires presence of MYIP
|
* `MYIP6` is optional but if present also requires presence of `MYIP`
|
||||||
|
|
||||||
|
|
||||||
### IP address determination
|
### IP address determination
|
||||||
|
|
||||||
The following rules apply:
|
The following rules apply:
|
||||||
|
|
||||||
* use any IP address provided via the myip parameter when present, or
|
* use any IP address provided via the `myip` parameter when present, or
|
||||||
* use any IP address provided via the X-Real-IP header e.g. when used behind HTTP reverse proxy such as nginx, or
|
* use any IP address provided via the `X-Real-IP` header e.g. when used behind HTTP reverse proxy such as nginx, or
|
||||||
* use any IP address used by the connecting HTTP client
|
* use any IP address used by the connecting HTTP client
|
||||||
|
|
||||||
If you want to provide an additional IPv6 address as myip6 parameter, the myip parameter containing an IPv4 address has to be present, too! No automatism is applied then.
|
If you want to provide an additional IPv6 address as myip6 parameter, the `myip` parameter containing an IPv4 address has to be present, too! No automatism is applied then.
|
||||||
|
|
||||||
|
|
||||||
### SSL, multiple listen ports
|
### SSL, multiple listen ports
|
||||||
@@ -231,7 +231,7 @@ The [Debian 6 init.d script](docs/debian-6-init-dyndnsd) assumes that dyndnsd.rb
|
|||||||
|
|
||||||
### Monitoring
|
### Monitoring
|
||||||
|
|
||||||
For monitoring dyndnsd.rb uses the [metriks](https://github.com/eric/metriks) framework and exposes several metrics like the number of unauthenticated requests, requests that did (not) update a hostname, etc. By default the most important metrics are shown in the [proctitle](https://github.com/eric/metriks#proc-title-reporter) but you can also configure a [Graphite](https://graphiteapp.org/) backend for central monitoring or the [textfile_reporter](https://github.com/prometheus/node_exporter/#textfile-collector) which outputs Graphite-style metrics that are also compatible with Prometheus to a file.
|
For monitoring dyndnsd.rb uses the [metriks](https://github.com/eric/metriks) framework and exposes several metrics like the number of unauthenticated requests, requests that did (not) update a hostname, etc. By default, the most important metrics are shown in the [proctitle](https://github.com/eric/metriks#proc-title-reporter, butt you can also configure a [Graphite](https://graphiteapp.org/) backend for central monitoring or the [textfile_reporter](https://github.com/prometheus/node_exporter/#textfile-collector) which outputs Graphite-style metrics that are also compatible with Prometheus to a file.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
@@ -271,9 +271,9 @@ users:
|
|||||||
|
|
||||||
### Tracing (experimental)
|
### Tracing (experimental)
|
||||||
|
|
||||||
For tracing, dyndnsd.rb is instrumented using the [OpenTracing](http://opentracing.io/) framework and will emit span tracing data for the most important operations happening during the request/response cycle. Using a middleware for Rack allows handling incoming OpenTracing span information properly.
|
For tracing, dyndnsd.rb is instrumented using the [OpenTelemetry](https://opentelemetry.io/docs/ruby/) framework and will emit span tracing data for the most important operations happening during the request/response cycle. Using an [instrumentation for Rack](https://github.com/open-telemetry/opentelemetry-ruby/tree/main/instrumentation/rack) allows handling incoming OpenTelemetry parent span information properly (when desired, turned off by default to reduce attack surface).
|
||||||
|
|
||||||
Currently only one OpenTracing-compatible tracer implementation named [CNCF Jaeger](https://github.com/jaegertracing/jaeger) can be configured to use with dyndnsd.rb.
|
Currently, the [OpenTelemetry trace exporter](https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/jaeger) for [CNCF Jaeger](https://github.com/jaegertracing/jaeger) can be enabled via dyndnsd.rb configuration. Alternatively, you can also enable other exporters via the environment variable `OTEL_TRACES_EXPORTER`, e.g. `OTEL_TRACES_EXPORTER=console`.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
@@ -282,11 +282,9 @@ db: "/opt/dyndnsd/db.json"
|
|||||||
domain: "dyn.example.org"
|
domain: "dyn.example.org"
|
||||||
# enable and configure tracing using the (currently only) tracer jaeger
|
# enable and configure tracing using the (currently only) tracer jaeger
|
||||||
tracing:
|
tracing:
|
||||||
trust_incoming_span: false # default value, change to accept incoming OpenTracing spans as parents
|
trust_incoming_span: false # default value, change to accept incoming OpenTelemetry spans as parents
|
||||||
jaeger:
|
service_name: "my.dyndnsd.identifier" # default unset, will be populated by OpenTelemetry
|
||||||
host: 127.0.0.1 # defaults for host and port of local jaeger-agent
|
jaeger: true # enables the Jaeger AgentExporter
|
||||||
port: 6831
|
|
||||||
service_name: "my.dyndnsd.identifier"
|
|
||||||
# configure the updater, here we use command_with_bind_zone, params are updater-specific
|
# configure the updater, here we use command_with_bind_zone, params are updater-specific
|
||||||
updater:
|
updater:
|
||||||
name: "command_with_bind_zone"
|
name: "command_with_bind_zone"
|
||||||
|
7
Rakefile
7
Rakefile
@@ -21,12 +21,15 @@ namespace :solargraph do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# renovate: datasource=github-tags depName=hadolint/hadolint
|
||||||
|
hadolint_version = 'v2.6.0'
|
||||||
|
|
||||||
desc 'Run hadolint for Dockerfile linting'
|
desc 'Run hadolint for Dockerfile linting'
|
||||||
task :hadolint do
|
task :hadolint do
|
||||||
sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile'
|
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3017 --ignore DL3018 - < docker/Dockerfile"
|
||||||
end
|
end
|
||||||
|
|
||||||
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
||||||
|
|
||||||
desc 'Run all tasks desired for CI'
|
desc 'Run all tasks desired for CI'
|
||||||
task ci: ['solargraph:init', :default, :hadolint]
|
task ci: ['solargraph:init', :default, :hadolint, :build]
|
||||||
|
@@ -1,13 +1,15 @@
|
|||||||
FROM alpine:3.13.4
|
FROM alpine:3.13.5
|
||||||
|
|
||||||
EXPOSE 5353 8080
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
ARG DYNDNSD_VERSION=3.4.0
|
ARG DYNDNSD_VERSION
|
||||||
|
|
||||||
RUN apk --no-cache add openssl ca-certificates && \
|
RUN apk --no-cache add openssl ca-certificates && \
|
||||||
|
apk upgrade apk-tools && \
|
||||||
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \
|
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \
|
||||||
apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
|
apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
|
||||||
gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \
|
gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \
|
||||||
|
rm -rf /usr/lib/ruby/gems/*/cache/ && \
|
||||||
# set timezone to Berlin
|
# set timezone to Berlin
|
||||||
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
|
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
|
||||||
apk del .build-deps
|
apk del .build-deps
|
||||||
|
22
docker/ci/Dockerfile
Normal file
22
docker/ci/Dockerfile
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
FROM alpine:3.13.5
|
||||||
|
|
||||||
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
|
COPY pkg/dyndnsd-*.gem /tmp/dyndnsd.gem
|
||||||
|
|
||||||
|
RUN apk --no-cache add openssl ca-certificates && \
|
||||||
|
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \
|
||||||
|
apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
|
||||||
|
gem install --no-document /tmp/dyndnsd.gem && \
|
||||||
|
rm -rf /usr/lib/ruby/gems/*/cache/ && \
|
||||||
|
# set timezone to Berlin
|
||||||
|
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
|
||||||
|
apk del .build-deps
|
||||||
|
|
||||||
|
# Follow the principle of least privilege: run as unprivileged user.
|
||||||
|
# Running as non-root enables running this image in platforms like OpenShift
|
||||||
|
# that do not allow images running as root.
|
||||||
|
# User ID 65534 is usually user 'nobody'.
|
||||||
|
USER 65534
|
||||||
|
|
||||||
|
ENTRYPOINT ["dyndnsd", "/etc/dyndnsd/config.yml"]
|
@@ -28,11 +28,11 @@ Gem::Specification.new do |s|
|
|||||||
s.required_ruby_version = '>= 2.5'
|
s.required_ruby_version = '>= 2.5'
|
||||||
|
|
||||||
s.add_runtime_dependency 'async-dns', '~> 1.2.0'
|
s.add_runtime_dependency 'async-dns', '~> 1.2.0'
|
||||||
s.add_runtime_dependency 'jaeger-client', '~> 1.1.0'
|
|
||||||
s.add_runtime_dependency 'metriks'
|
s.add_runtime_dependency 'metriks'
|
||||||
s.add_runtime_dependency 'opentracing', '~> 0.5.0'
|
s.add_runtime_dependency 'opentelemetry-exporter-jaeger', '~> 0.20.0'
|
||||||
|
s.add_runtime_dependency 'opentelemetry-instrumentation-rack', '~> 0.19.0'
|
||||||
|
s.add_runtime_dependency 'opentelemetry-sdk', '~> 1.0.0.rc2'
|
||||||
s.add_runtime_dependency 'rack', '~> 2.0'
|
s.add_runtime_dependency 'rack', '~> 2.0'
|
||||||
s.add_runtime_dependency 'rack-tracer', '~> 0.9.0'
|
|
||||||
s.add_runtime_dependency 'webrick', '>= 1.6.1'
|
s.add_runtime_dependency 'webrick', '>= 1.6.1'
|
||||||
|
|
||||||
s.add_development_dependency 'bundler'
|
s.add_development_dependency 'bundler'
|
||||||
@@ -40,8 +40,8 @@ Gem::Specification.new do |s|
|
|||||||
s.add_development_dependency 'rack-test'
|
s.add_development_dependency 'rack-test'
|
||||||
s.add_development_dependency 'rake'
|
s.add_development_dependency 'rake'
|
||||||
s.add_development_dependency 'rspec'
|
s.add_development_dependency 'rspec'
|
||||||
s.add_development_dependency 'rubocop', '~> 1.12.0'
|
s.add_development_dependency 'rubocop', '~> 1.19.0'
|
||||||
s.add_development_dependency 'rubocop-rake', '~> 0.5.1'
|
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
|
||||||
s.add_development_dependency 'rubocop-rspec', '~> 2.2.0'
|
s.add_development_dependency 'rubocop-rspec', '~> 2.4.0'
|
||||||
s.add_development_dependency 'solargraph', '~> 0.40.0'
|
s.add_development_dependency 'solargraph', '~> 0.43.0'
|
||||||
end
|
end
|
||||||
|
@@ -8,9 +8,9 @@ require 'json'
|
|||||||
require 'yaml'
|
require 'yaml'
|
||||||
require 'rack'
|
require 'rack'
|
||||||
require 'metriks'
|
require 'metriks'
|
||||||
|
require 'opentelemetry/instrumentation/rack'
|
||||||
|
require 'opentelemetry/sdk'
|
||||||
require 'metriks/reporter/graphite'
|
require 'metriks/reporter/graphite'
|
||||||
require 'opentracing'
|
|
||||||
require 'rack/tracer'
|
|
||||||
|
|
||||||
require 'dyndnsd/generator/bind'
|
require 'dyndnsd/generator/bind'
|
||||||
require 'dyndnsd/updater/command_with_bind_zone'
|
require 'dyndnsd/updater/command_with_bind_zone'
|
||||||
@@ -69,7 +69,7 @@ module Dyndnsd
|
|||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def authorized?(username, password)
|
def authorized?(username, password)
|
||||||
Helper.span('check_authorized') do |span|
|
Helper.span('check_authorized') do |span|
|
||||||
span.set_tag('dyndnsd.user', username)
|
span.set_attribute('enduser.id', username)
|
||||||
|
|
||||||
allow = Helper.user_allowed?(username, password, @users)
|
allow = Helper.user_allowed?(username, password, @users)
|
||||||
if !allow
|
if !allow
|
||||||
@@ -112,7 +112,7 @@ module Dyndnsd
|
|||||||
|
|
||||||
Dyndnsd.logger.info 'Starting...'
|
Dyndnsd.logger.info 'Starting...'
|
||||||
|
|
||||||
# drop priviliges as soon as possible
|
# drop privileges as soon as possible
|
||||||
# NOTE: first change group than user
|
# NOTE: first change group than user
|
||||||
if config['group']
|
if config['group']
|
||||||
group = Etc.getgrnam(config['group'])
|
group = Etc.getgrnam(config['group'])
|
||||||
@@ -170,7 +170,7 @@ module Dyndnsd
|
|||||||
def process_changes(hostnames, myips)
|
def process_changes(hostnames, myips)
|
||||||
changes = []
|
changes = []
|
||||||
Helper.span('process_changes') do |span|
|
Helper.span('process_changes') do |span|
|
||||||
span.set_tag('dyndnsd.hostnames', hostnames.join(','))
|
span.set_attribute('dyndnsd.hostnames', hostnames.join(','))
|
||||||
|
|
||||||
hostnames.each do |hostname|
|
hostnames.each do |hostname|
|
||||||
# myips order is always deterministic
|
# myips order is always deterministic
|
||||||
@@ -252,6 +252,8 @@ module Dyndnsd
|
|||||||
Dyndnsd.logger.progname = 'dyndnsd'
|
Dyndnsd.logger.progname = 'dyndnsd'
|
||||||
Dyndnsd.logger.formatter = LogFormatter.new
|
Dyndnsd.logger.formatter = LogFormatter.new
|
||||||
Dyndnsd.logger.level = config['debug'] ? Logger::DEBUG : Logger::INFO
|
Dyndnsd.logger.level = config['debug'] ? Logger::DEBUG : Logger::INFO
|
||||||
|
|
||||||
|
OpenTelemetry.logger = Dyndnsd.logger
|
||||||
end
|
end
|
||||||
|
|
||||||
# @return [void]
|
# @return [void]
|
||||||
@@ -296,16 +298,31 @@ module Dyndnsd
|
|||||||
# @param config [Hash{String => Object}]
|
# @param config [Hash{String => Object}]
|
||||||
# @return [void]
|
# @return [void]
|
||||||
private_class_method def self.setup_tracing(config)
|
private_class_method def self.setup_tracing(config)
|
||||||
# configure OpenTracing
|
# by default do not try to emit any traces until the user opts in
|
||||||
if config.dig('tracing', 'jaeger')
|
ENV['OTEL_TRACES_EXPORTER'] ||= 'none'
|
||||||
require 'jaeger/client'
|
|
||||||
|
|
||||||
host = config['tracing']['jaeger']['host'] || '127.0.0.1'
|
# configure OpenTelemetry
|
||||||
port = config['tracing']['jaeger']['port'] || 6831
|
OpenTelemetry::SDK.configure do |c|
|
||||||
service_name = config['tracing']['jaeger']['service_name'] || 'dyndnsd'
|
if config.dig('tracing', 'jaeger')
|
||||||
OpenTracing.global_tracer = Jaeger::Client.build(
|
require 'opentelemetry/exporter/jaeger'
|
||||||
host: host, port: port, service_name: service_name, flush_interval: 1
|
|
||||||
|
c.add_span_processor(
|
||||||
|
OpenTelemetry::SDK::Trace::Export::BatchSpanProcessor.new(
|
||||||
|
OpenTelemetry::Exporter::Jaeger::AgentExporter.new
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
if config.dig('tracing', 'service_name')
|
||||||
|
c.service_name = config['tracing']['service_name']
|
||||||
|
end
|
||||||
|
|
||||||
|
c.service_version = Dyndnsd::VERSION
|
||||||
|
c.use('OpenTelemetry::Instrumentation::Rack')
|
||||||
|
end
|
||||||
|
|
||||||
|
if !config.dig('tracing', 'trust_incoming_span')
|
||||||
|
OpenTelemetry.propagation = OpenTelemetry::Context::Propagation::NoopTextMapPropagator.new
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -331,8 +348,7 @@ module Dyndnsd
|
|||||||
app = Responder::DynDNSStyle.new(app)
|
app = Responder::DynDNSStyle.new(app)
|
||||||
end
|
end
|
||||||
|
|
||||||
trust_incoming_span = config.dig('tracing', 'trust_incoming_span') || false
|
app = OpenTelemetry::Instrumentation::Rack::Middlewares::TracerMiddleware.new(app)
|
||||||
app = Rack::Tracer.new(app, trust_incoming_span: trust_incoming_span)
|
|
||||||
|
|
||||||
Rack::Handler::WEBrick.run app, Host: config['host'], Port: config['port']
|
Rack::Handler::WEBrick.run app, Host: config['host'], Port: config['port']
|
||||||
end
|
end
|
||||||
|
@@ -45,24 +45,17 @@ module Dyndnsd
|
|||||||
# @param block [Proc]
|
# @param block [Proc]
|
||||||
# @return [void]
|
# @return [void]
|
||||||
def self.span(operation, &block)
|
def self.span(operation, &block)
|
||||||
scope = OpenTracing.start_active_span(operation)
|
tracer = OpenTelemetry.tracer_provider.tracer(Dyndnsd.name, Dyndnsd::VERSION)
|
||||||
span = scope.span
|
tracer.in_span(
|
||||||
span.set_tag('component', 'dyndnsd')
|
operation,
|
||||||
span.set_tag('span.kind', 'server')
|
attributes: {'component' => 'dyndnsd'},
|
||||||
begin
|
kind: :server
|
||||||
|
) do |span|
|
||||||
|
Dyndnsd.logger.debug "Creating span ID #{span.context.hex_span_id} for trace ID #{span.context.hex_trace_id}"
|
||||||
block.call(span)
|
block.call(span)
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
span.set_tag('error', true)
|
span.record_exception(e)
|
||||||
span.log_kv(
|
|
||||||
event: 'error',
|
|
||||||
'error.kind': e.class.to_s,
|
|
||||||
'error.object': e,
|
|
||||||
message: e.message,
|
|
||||||
stack: e.backtrace&.join("\n") || ''
|
|
||||||
)
|
|
||||||
raise e
|
raise e
|
||||||
ensure
|
|
||||||
scope.close
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@@ -18,7 +18,7 @@ module Dyndnsd
|
|||||||
return if !db.changed?
|
return if !db.changed?
|
||||||
|
|
||||||
Helper.span('updater_update') do |span|
|
Helper.span('updater_update') do |span|
|
||||||
span.set_tag('dyndnsd.updater.name', self.class.name&.split('::')&.last || 'None')
|
span.set_attribute('dyndnsd.updater.name', self.class.name&.split('::')&.last || 'None')
|
||||||
|
|
||||||
# write zone file in bind syntax
|
# write zone file in bind syntax
|
||||||
File.open(@zone_file, 'w') { |f| f.write(@generator.generate(db)) }
|
File.open(@zone_file, 'w') { |f| f.write(@generator.generate(db)) }
|
||||||
|
@@ -35,7 +35,7 @@ module Dyndnsd
|
|||||||
# @return [void]
|
# @return [void]
|
||||||
def update(db)
|
def update(db)
|
||||||
Helper.span('updater_update') do |span|
|
Helper.span('updater_update') do |span|
|
||||||
span.set_tag('dyndnsd.updater.name', self.class.name&.split('::')&.last || 'None')
|
span.set_attribute('dyndnsd.updater.name', self.class.name&.split('::')&.last || 'None')
|
||||||
|
|
||||||
soa_rr = Resolv::DNS::Resource::IN::SOA.new(
|
soa_rr = Resolv::DNS::Resource::IN::SOA.new(
|
||||||
@zone_nameservers[0], @zone_email_address,
|
@zone_nameservers[0], @zone_email_address,
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Dyndnsd
|
module Dyndnsd
|
||||||
VERSION = '3.4.0'
|
VERSION = '3.4.4'
|
||||||
end
|
end
|
||||||
|
@@ -24,9 +24,7 @@ describe Dyndnsd::Daemon do
|
|||||||
|
|
||||||
app = Rack::Auth::Basic.new(daemon, 'DynDNS', &daemon.method(:authorized?))
|
app = Rack::Auth::Basic.new(daemon, 'DynDNS', &daemon.method(:authorized?))
|
||||||
|
|
||||||
app = Dyndnsd::Responder::DynDNSStyle.new(app)
|
Dyndnsd::Responder::DynDNSStyle.new(app)
|
||||||
|
|
||||||
Rack::Tracer.new(app, trust_incoming_span: false)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'requires authentication' do
|
it 'requires authentication' do
|
||||||
|
13
upgrade-version.sh
Executable file
13
upgrade-version.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash -eux
|
||||||
|
|
||||||
|
sed -i "s/$1/$2/g" lib/dyndnsd/version.rb
|
||||||
|
|
||||||
|
release_date=$(LC_ALL=en_US.utf8 date +"%B %-d, %Y")
|
||||||
|
|
||||||
|
if grep "## $2 (" CHANGELOG.md; then
|
||||||
|
true
|
||||||
|
elif grep "## $2" CHANGELOG.md; then
|
||||||
|
sed -i "s/## $2/## $2 ($release_date)/g" CHANGELOG.md
|
||||||
|
else
|
||||||
|
echo "## $2 ($release_date)" >> CHANGELOG.md
|
||||||
|
fi
|
Reference in New Issue
Block a user