1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
|
Change Log
==========
All notable changes to the project are documented in this file.
[v2.11.0][] - 2023-05-20
------------------------
> **Note:** this releases replaces built-in default checkip server
> http://api.ipify.org with the more reliable http://ifconfig.me/ip
### Changes
- Add custom provider example for dnsmadeeasy.com
- Add wildcard support for Cloudflare
- New DDNS providers from DD-WRT, courtesy of Sebastian Gottschall:
- goip.de
- myonlineportal.net
- desec.io (a.k.a. dedyn.io)
- domaindiscount24.com
- dy.fi
- do.de (Domain-Offensive)
- Domopoli.de
- inwx
- It's DNS
- Joker.com
- all-inkl.com
- core-networks.de
- dnsever.com
- dnshome.de
- dnsmadeeasy.com
- dnsmax.com
- schokokeks.org
- variomedia.de
- udmedia.de
- moniker.com
- dyndns.it
- infomaniak.com
- oray.com
- simply.com
- mydns.jp
- myonlineportal.net
- namecheap.com
- regfish.de
- twodns.de
- Initial support for updating both ipv4 and ipv6 address for the same
provider, also by Sebastian Gottschall
- Add new command line options `-L` and `-S NAME` to list supported
providers and their respective details
### Fixes
- Issue #398: add `success` as a valid generic response to DNS update
- Issue #402: fix use after free in logger at inadyn exit
- Issue #416: use dynv6 'auto' IP only if we have not detected an address
- Issue #424: replace unstable api.ipify.org with http://ifconfig.me
- Fix default checkip server for dnsexit.com
- Fix easydns response code problem
[v2.10.0][] - 2022-11-12
------------------------
### Changes
- Add support for MbedTLS, courtesy of Vicente Bergas
- Add support for per-provider interface to bind to, by Iain Henderson
- Use HTTP-only for api.ipify.org, default (fallback) checkip service
- Mention static builds and how to stop a systemd service in README
### Fixes
- Issue #374: handle easyDNS `no update required` as OK status
- Issue #382: update docs on how to use IPv6 and dynv6
- Issue #385: use configured server:port, don't force port 443 for HTTPS
- Issue #388: update docs on how to use custom config with format
specifiers, and fix the Namecheap URL in the process, by Martin Butt
- Issue #390: serious memory leak in GnuTLS backend (Debian default)
- Issue #391: ca-trust-file has no effect for GnuTLS
[v2.9.1][] - 2021-12-09
-----------------------
### Changes
- `debian/` directory and packaging dropped in favor of downstream
official packaging. Too difficult to support different versions and
derivatives, not just Debian but also Ubuntu, etc. Issue #366
- Source `$INADYN_ARGS`, or `$INADYN_OPTS`, for the command line from an
`EnvironmentFile` in the systemd unit file
- Reference the README in the systemd unit file instead of home page
### Fixes
- Issue #367: fix multiple hostname composition in custom providers when
using `printf(3)` style format specifiers in `ddns-path`
- Issue #368: fix build with GCC 4.8, by Fabrice Fontaine
[v2.9.0][] - 2021-11-21
-----------------------
### Changes
- Support for including provider config, e.g. username & password
from an external file: `include("~/.freedns.pw")`
- Support for a test framework, initial test cases: DynDNS and FreeDNS
- Use native Google Domains checkip server instead of generic from Dyn
- Code size reduction for embedded systems, by Dan Fandrich. Enable in
configure script with `--enable-reduce`
- Disable logging of base64 encoded password in debug mode
- Drop deprecated autoconf macros
- Ignore `SIGPIPE` so `SSL_read()`, `read()` et al return error with
`EPIPE` instead of having inadyn exiting (crashing) when the remote
end suddenly closes its HTTP/HTTPS connection on us
- Update maintainer last name and copyright years
- Add support for GitHub Container Registry
### Fixes
- Issue #347: default checkip server for DuckDNS, FreeMyIP and GiraDNS
changed from ipv4.wtfismyip.com to wtfismyip.com
- Issue #351: update examples for Google Domains
- Issue #352: add missing sub_domain=%s (prefix) to dnspod plugin
- Issue #356: handle FreeDNS authentication errors and improve logging
- Issue #361: unclear example for NameCheap DDNS
- Issue #365: memory leak in OpenSSL backend when connection fails
[v2.8.1][] - 2021-01-31
-----------------------
### Fixes
- Issue #340: the new settings `ttl` and `proxied`, introduced in
[v2.8][], were missing from custom provider sections. Found and
fixed by André Colomb
[v2.8][] - 2021-01-31
---------------------
Improved `--exec SCRIPT` support and massive Cloudflare plugin updates.
### Changes
- Issue #306: New keyword `default` to use the built-in In-a-dyn default
`checkip-server` in the configuration file
- Issue #306: Automatically fall back to use built-in checkip-server if
the provider's server fails. Warnings added to log so user can change
their preferences
- Issue #310: Extended support for external script. By default it runs
only on successful DDNS update (`compat` mode). New `event` mode
calls the script on any action, with added new environment variables.
- Cloudflare plugin, curated by Simon Pilkington:
- Increased size of response buffer, JSON reply is quite big and
In-a-dyn is used to one-liner replies from most servers
- Add `ttl` option, by なつき
- Add `proxied` option, by なつき
- Use 1.1.1.1 as default checkip server, by なつき
- Updated examples for IPv4 and IPv6, by なつき
- New multi-arch docker image, by なつき
### Fixes
- Issue #309: Do not attempt to `chown(2)` the cache or pidfile dirs,
because this may fail and cause In-a-dyn to fail. Users that want to
drop-privs must ensure the cache and pidfile directories are writable
by the `-p uid:gid` specified
- Issue #313: Cloudflare, get zone name from username field in config
- Issue #314: twoDNS changed API, drop support and remove custom example
- Issue #327: Fix duiadns.net plugin, by Sergey Aleynikov
- Issue #328: Fix TLS regression with multiple data packets, by なつき
- Issue #329: Fix creation of new Cloudflare record, by なつき
- Fix default install prefix, regression introduced in v2.6
[v2.7][] - 2020-03-22
---------------------
### Changes
- Issue #301: Add `broken-rtc = <true | false>` .conf file setting, by
Vladislav Grishenko
- Issue #302: Add common authentication failure error code handling, by
Vladislav Grishenko
- Issue #308: Improve Dockerfile by using the same commit of the current
Dockerfile to to build inadyn. Previously the Dockerfile always pulled
the latest git master, by Dominik Courcelles
### Fixes
- Fix #300: `--force` option not being recognized, by Eric Sauvageau
- Fix #305: Fix hash generation regression in FreeDNS plugin, found and
fixed by Eric Sauvageau and Vladislav Grishenko
[v2.6][] - 2020-02-22
---------------------
**NOTE:** The `-1, --once` mode has changed semantics, it no longer
defaults to forced update, for that you now need `--force`
### Changes
- Add support for Cloudflare, by Simon Pilkington and Jo Rhett
- Add Yandex PDD (Yandex.Connect) plugin, by Timur Birsh
- Add Dockerfile for running In-a-Dyn from an Alpine container, by
Jean-Ralph Aviles with fixes by Robin Bürkli and Richard Powell
- Drop support for TZO, acqured by Dyn in 2012 and no longer works
- Drop support for DtDNS, shut down August 1, 2018
- Drop support for DynSIP, dropped off the Internet in 2014
- Drop support for Zerigo, shut down in 2017
### Fixes
- Fix #222: Simplify `utimensat()` replacement for macOS Sierra
- Fix #223: Sync up with accepted Homebrew formula, by Jo Rhett
- Fix #231: Update build requirements and recommendations
- Fix #233: Fix building with OpenSSL >1.1, by Rosen Penev
- Fix #235: dynv6, don't signal error on unchanged address
- Fix #239: Boundary check of MAX supported hostname aliases,
bumped max aliases from 20 -> 50 per provider
- Fix #241: OpenBSD header ordering, tested on OpenBSD 6.1
- Fix #242: Mention libtool requirement when building from GIT
- Fix #247: Check if PID is actually running if PID file exists
- Fix internal buffer size warnings, found by GCC-9 (freeDNS)
- Fix #256: Document how to use Google Domains plugin
- Fix #262: Use .com TLD instead of .org for DynDNS, because the latter
cannot be resolved in China, by Eric Sauvageau
- Fix #268: Set SIGCHLD to SIG_IGN to reap children, by Markus Gothe
- Fixes to socket leaks, memory corrupions, buffer overflows and more,
found by Coverity Scan
- Fix configure script to allow `--prefix=` for install to `/sbin`
- Fix #274: D.U.I.A. DNS basic authentication, by Markus Gothe
- Fix #276: Change `--once` behavior, now requires `--force` to update
- Fix default checkip server for PubYun/3322, bliao.com not working.
This patch adds support for the official 3322 checkip server
- Fix #277: See #235 but also for IPv4 ...
- Fix #297: api.ipify.org default checkip server for custom providers
[v2.5][] - 2018-09-30
---------------------
### Changes
- macOS changes by Jo Rhett:
- Add linking with `-lresolv`
- Use Homebrew's CA trust store
- Update REDAME with install help
- Add support for selfhost.de DDNS
### Fixes
- Fix #211: Only show DDNS server response on successful transaction
- Fix #211: Improved error handling in OpenSSL back-end
- Fix #214: Add `nochg` to list of good responses for custom providers
- Fixes by Eric Sauvageau:
- Fix #216: Add DNS lookup exception for `all.dnsomatic.com`
- Fix #219: Add DNS lookup exception for `default@tunnelbrooker.net`
[v2.4][] - 2018-08-18
---------------------
### Changes
- Add support for Dynu DDNS provider
### Fixes
- Add missing defines for `LLONG_MAX` and `LLONG_MIN` on some platforms
- Fix #209: Update FreeDNS plugin to use v2 of their API to fetch update key
- Fix #210: Use `~/.cache/inadyn` or `~/.inadyn` when running unprivileged
[v2.3.1][] - 2018-02-12
-----------------------
This minor bug fix release holds Debian packaging fixes by André Colomb.
### Changes
- Make .deb files an official part of releases
### Fixes
- Fix installation of `inadyn` in `/usr/sbin` and symlink in `/usr/bin`
- Rename debian/inadyn.links to be standards-compliant
- Update deprecated build dependency for dh-systemd
- Fix lintian warning about unsafe symlinks for build scripts
- Version numbers containing a dash are inappropriate for 'native'
packages, bump revision instead
[v2.3][] - 2018-01-05
---------------------
### Changes
- Distribute `CONTRIBUTING.md` in release tarballs, by André Colomb
- Clean up debug messages for HTTPS connections, by André Colomb
- New build-depends, `libgnutls28-dev` for Debian/Ubuntu users and
GnuTLS >= 3.0 for others, by André Colomb
- Issue #192: Add `examples/*.conf` to source distribution, by André Colomb
### Fixes
- TCP, not UDP, for `getaddrinfo()` hints + numeric lookups, by André Colomb
- Disable SSL for checkip connections to SPDYN service, by André Colomb
- Issue #186: Allow IPv6 for HTTP(S) connections, by André Colomb
- Issue #189: Ignore premature session termination in GnuTLS, by André Colomb
- Issue #193: Fix broken internal links in README.md, by André Colomb
[v2.2.1][] - 2017-10-06
-----------------------
### Fixes
- Issue #174: `gnutls.c` missing `stdint.h`, fix for ArchLinux
- Issue #179: Update easyDNS plugin to new API, by Nicholas Alipaz
[v2.2][] - 2017-08-09
---------------------
### Changes
- Use HTTP by default for DYN.com checkip server, used by many DDNS
providers that do not have their own. This change is far more user
friendly since you no longer have to explicitly set `checkip-ssl =
false` for the most common use-case.
- Some DDNS providers have multiple IP addresses registered for the same
service, as of this release Inadyn immediately tries to connect to the
next listed addresses on connection problems.
- Issue #153: Support for custom HTTP User Agent. Useful with providers
that require using a specific brower. Set to, e.g. "Mozilla/4.0", or
rely on the default "inadyn/VERSION" user agent.
- Support for the `%%` format specifier in custom server URL's, as
mentioned in issue #152.
- Add support for a `.conf` syntax checker: `inadyn --check-config`
- Add support for logging to `stderr` when running in foreground or
without syslog enabled
- Simplified provider name lookup in `.conf` file. Now substring match
is used, resulting in support for `provider Dyn { ... }`.
- Remove libite dependency by importing all its used files into inadyn.
This should ease adoption by distributions and end users. All code
is under free licenses: BSD, ISC.
- Import Timur's Debian packaging, adding debconf support
### Fixes
- Issue #152: Do not attempt to create PID file in oneshot mode (`-1`)
- Issue #152: Must URL encode custom server URL's
- Issue #170: Use configured `--prefix` not hard coded `/etc/inadyn.conf`
- Issue #172: Use separate variable for `--iface` command line option and
`.conf` file option
[v2.1][] - 2016-12-04
---------------------
### Changes
- Use HTTPS instead of HTTP by default
- Support for disabling HTTPS for `checkip-server`, per provider.
Idea from Valery Frolov
- Add `-I,--ident=NAME` option for syslog+pidfile name
- Deprecate `--pidfile=NAME` option in favor of `--ident=NAME`
### Fixes
- Issue #150: Custom update URL parser fixes
- Issue #151: Support for detecting OpenSSL v1.1
- Issue #144: Clarify use of public vs private IP. It is possible
to register private IP addresses in a public DNS
- Clarify `--foreground` option in man page
- Document minimum required versions of libite and libConfuse
- Portability fixes, replace `__progname` with a small function,
replace `%m` with `%s` and `strerror(errno)`.
[v2.0][] - 2016-09-12
---------------------
New configuration file format, changed command line options, improved
HTTPS support using GnuTLS and Open/LibreSSL. Inadyn now comes with
certificate validation enabled by default.
### Changes
- New configuration file format using [libConfuse][]
- Radically simplified command line, a .conf file is now required
- Reorganized SSL code, split `ssl.c` into `openssl.c` and `gnutls.c`
- Strict HTTPS certificate validation is now default. To disable this
use `strict-ssl = false` in the .conf file.
- Certificate validation uses trusted CA certificates from the system
with fall-backs to certain known locations. To override this default
handling a `ca-trust-file = FILE` setting in `inadyn.conf` can be used
to provide the path to another CA cert bundle, in PEM format.
- Massive overhaul of `inadyn(8)` and `inadyn.conf(5)` man pages
- Support for reading address from interface, including IPv6 addresses
- Support for calling an external script to get the IP address
- Support for multiple users @ same provider, idea from Valery Frolov:
provider default@no-ip.com:1 {
username = ian
password = secret
alias = flemming.no-ip.com
}
provider default@no-ip.com:2 {
username = james
password = bond
alias = spectre.no-ip.com
}
- Support for ddnss.de and dynv6.com, contributed by Sven Hoefer
- Support for spdyn.de, on request from Frank Röhm
- Support for strato.com, contributed by Duncan Overbruck
- Support for disabling IP address validation: `verify-address = false`
- Refactored memory handling and privilige separation to simplify code
- Refactored logging and backgrounding to simplify code
- Removed old compatibility symlinks and other required GNU specific
files, we now distribute and install README.md and ChangeLog.md
### Fixes
- Fix issue #61: Add HTTPS certificate validation for OpenSSL/LibreSSL
- Fix issue #67: Use GnuTLS native API for HTTPS
- Fix DuckDNS: now requires 'www.' prefix in server URL. By Frank Aurich
- Fix issue #110: Poodle `SSL_MODE_SEND_FALLBACK_SCSV` not needed
- Fix issue #101: Remove support for custom pidfile
- Fix issue #102: Relocate cache files `/var/run/inadyn` to `/var/cache/inadyn`
- Fix issue #113: `--drop-privs` does not work
- Add actual permissions check to `os_check_perms()`
- Fix issue #121: Support for fully customizable update URL
- Fix issue #122: Only use HTTPS connection for DNS update, not checkip
- Fix issue #131: Use FreeDNS' own checkip server instead of DYN.com's
- Fix issue #134: Support wildcard cert with GnuTLS backend
[1.99.15][] - 2015-09-09
------------------------
Minor bugfix release.
### Changes
- Support for new API at https://tunnelbroker.net, fixes issue #83.
Use `default@tunnelbroker.net` to use the DYN.com API to update
the IPv4 address for your IPv6-in-IPv4 tunnel. Thanks goes to
Horst Venzke @hvenzke for reporting this problem!
- The old API for the IPv6-in-IPv4 system `ipv6tb@he.net` is now
deprecated. Users should migrate to `default@tunnelbroker.net`
- Files generated by the GNU Configure & Build System is now no longer
stored in GIT. Instead, users that rely on GIT must run the new
`./autogen.sh` script to generate the necessary files (`configure`).
### Fixes
- Fix issue #100: regression from [1.99.13][] pidfile is no longer
created. Inadyn 1.x semantics incompatible with OpenBSD `pidfile()`
that replaced local version in [1.99.14][]. Problem found by David
Schury @daersc.
- Fix issue #107: If an IP address update fails, e.g. due to temporary
connectivity, HTTP transmission problems, etc. then Inadyn now forces
an update in the next IP check cycle. (This is the configurable
`period` interval in `inadyn.conf`.) Reported by Oliver Graute
@redbrain17 and audited by @BulldozerBSG, thanks!
- Fix issue #108: Update README with correct alias syntax for Namecheap,
issue reported by @quazar0
[1.99.14][] - 2015-07-14
------------------------
Improved support for configuring custom DDNS providers and support for
running in Windows, using Cygwin!
### Changes
- New setting `append-myip` which, instead of appending your hostname
alias, appends the current IP to the server GET update URL. See
[README][README.md] or the man pages for more details.
- Prevent Inadyn from bugging out if it cannot write a cache file when
the `-o, --once` flag is given.
- Inadyn now defaults to a silent build, use V=1 (like Linux) to get a
verbose build. Useful for auto-builders etc.
- Migrate to [libite][] for functions like `pidfile()`, `strlcpy()` etc.
- Add support for <http://GiraDNS.com>, thanks to Thorsten Mühlfelder!
- Add support for <https://www.duiadns.net>, thanks to Ionut Slaveanu!
- Add Cygwin support for running Inadyn in Windows, thanks to Scott Mann!
### Fixes
- Issue #89: Fix Duck DNS support, thanks to Ismani Nieuweboer!
- Issue #82: No rule to build target CHANGELOG, regression introduced in
[1.99.13][].
- Issue #84: Sanitized default logs by placing conditions for debug
logs. Big thanks to Frank Aurich for this work!
[1.99.13][] - 2015-02-08
------------------------
### Changes
- Add support for <https://domains.google.com> DDNS, by Justin McManus
- Add support for <https://www.ovh.com> DDNS service, by Andres Gomez
- Add support for <http://dtdns.com> DDNS, by Denton Gentry
- Rename `NEWS.md` to `CHANGELOG.md` and update formatting in an attempt
to align with <http://keepachangelog.com> -- this also means using ISO
date format, finally!
### Fixes
- Fix issue #78: Parsing checkip responses may fail, by Andy Padavan
- Fix issue #79: Don't treat inline '#' as comment if not preceeded by
space, by Andy Padavan
[1.99.12][] - 2014-10-20
------------------------
### Changes
- Add custom support for <http://Namecheap.com>, by Terzeus S. Dominguez
### Fixes
- Fix cross compilation issues with OpenSSL (depends on libcrypto)
- Fix cross compilation issues with `malloc` vs. `rpl_malloc` (removed
autoconf check completely)
[1.99.11][] - 2014-10-15
------------------------
### Changes
- Add support for <https://nsupdate.info>, thanks to Thomas Waldmann
- Add support for <https://www.loopia.com> DynDNS service extension
- Add support for <https://duckdns.org>, thanks to Andy Padavan
- Updated man pages, both `inadyn(8)` and `inadyn.conf(5)` with examples
### Fixes
- Fix building on FreeBSD by converting to use GNU Configure & Build system
- Fixes to add support for TLS 1.x with SNI, thanks to Thomas Waldmann
- SSL mitigation fixes for POODLE
[1.99.10][] - 2014-09-13
------------------------
### Changes
- Refactor string functions `strcat()` and `strcpy()` to use secure
OpenBSD replacements `strlcat()` and `strlcpy()` instead.
### Fixes
- Fix issue #57: `snprintf()` causes loss of \= from password string
- Fix issue #58: Add support for GnuTLS as the default SSL library
- Fix bugs found by Coverity Scan
- Fix memory leaks found by GLIBC (!) on PowerPC
- Fix include order problem with `error.h`
[1.99.9][] - 2014-05-21
-----------------------
### Changes
- Support for <http://www.zerigo.com> DDNS provider
- Support for <http://www.dhis.org> DDNS provider
### Fixes
- Fix memory leak in new HTTPS support, found by Valgrind
- Other misc. Valgrind and Cppcheck fixes
[1.99.8][] - 2014-05-20
-----------------------
### Changes
- Support for HTTPS to secure login credentials at DNS update, issue #36
- Support for persistent cache files with new `--cache-dir PATH`
- Support for <http://twoDNS.de> in generic plugin, see
[README][README.md] for details
- Man page updates
[1.99.7][] - 2014-05-14
-----------------------
### Changes
- Support for multiple cache files, one per DDNS provider, issue #35
- Refactor DDNS providers as plugins, issue #30
[1.99.6][] - 2013-12-25
-----------------------
### Changes
- Update documentation for custom servers and add missing compatibility
entry for custom servers.
### Fixes
- Fix nasty socket leak.
[1.99.5][] - 2013-11-27
-----------------------
### Changes
- Support for `--fake-address` on new `SIGUSR1` (forced update)
- Support for `SIGUSR2` (check now),
- Support for `--startup-delay SEC`, for embedded systems
- Man page updates
### Fixes
- Many minor bug fixes
[1.99.4][] - 2013-08-08
-----------------------
This release fixes a base64 password encoding regression in [1.99.3][]
[1.99.3][] - 2013-07-15 [YANKED]
--------------------------------
This release adds the ability to specify the cache file and the ability
to check the IP of the interface (UNIX only). If no interface is
specified, no external IP check is performed. The old `--iface` option
has been renamed `--bind`. changeip.com support has been added. Minor
bugfixes and code optimizations have been made.
### Changes
- Add ability to specify cache file
- Add ability to check IP of interface (UNIX only). If interface is
specified, no external IP check performed Old `--iface` option renamed
to `--bind`
- Specify IP address in freedns.afraid.org update request (only
autodetect was used)
- Add changeip.com support
### Fixes
- Minor bugfixes and code optimization
[1.99.2][] - 2012-09-07
-----------------------
### Changes
- Get HTTP status description
### Fixes
- Fix inability to change update period (broken in 1.99.0)
- Fix debug output description
[1.99.1][] - 2012-09-01
-----------------------
### Changes
- Make HTTP status code check server-specific
- Update maintainer e-mail address
[1.99.0][] - 2012-08-17
-----------------------
### Changes
- Merge wl500g patches from <http://code.google.com/p/wl500g>:
- `120-heipv6tb.patch` adds support for tunnelbroker
- `121-hedyndns.patch` adds support for HE dyndns
- `210-wildcard.patch` makes wildcard option account specific
- For ddns services that have their own checkip service, use it instead of
dyndns.org checkip service
- Add ability to handle non-fatal temporary errors ("update too often",
system error etc.)
- Warn if initial DNS request failed
- Add dnsexit.com support
- Modify http client to parse response for http status code and response
body
- Remove DynDNS ignored and deprecated parameters (wildcard, mx, backmx,
system). Wildcard kept for easydns.com
- Report detected IP to sitelutions and dynsip servers (only autodetect
was used)
- Update TZO support
- Check HTTP status code before validating response
- Remake zoneedit response validation
- Little code cleanup
### Fixes
- Fix malformed HTTP request
[1.98.1][] - 2011-07-18
-----------------------
### Changes
- Preserve time since last update (forced update counter) and num
interations from being reset by `SIGHUP` restart command
- Extend `--drop-privs` to support hyphens
- Cleanup of inadyn log messages, reformat & clarification
### Fixes
- Bug fix segfault at initial DNS lookup
- Bug fix `--drop-privs` uid/gid was swapped and a possible buffer overflow
- Typo fixes and polish to man pages inadyn(8) and inadyn.conf(5)
[1.98.0][] - 2011-02-28
-----------------------
### Changes
- New config file, command line, syntax (still backwards compatible!)
- New option `--drop-privs USER[:GROUP]` to support privilege separation
- Drop privileges before creating any files
- Documentation updates
[1.97.4][] - 2010-11-02
-----------------------
### Changes
- Support for dynsip.org by milkfish, from DD-WRT
- Add support for sitelutions.com, from inadyn-mt (untested)
### Fixes
- Clear DNS cache before calling `getaddrinfo()`, fixes GitHub issue #3
[1.97.3][] - 2010-11-02
-----------------------
### Changes
- Merge wl500g patches from <http://code.google.com/p/wl500g>:
- `101-http-request.patch`. This cleans up the DDNS server defintions
and callbacks, evidently originating from ideas implemented by
DD-WRT.
- `102-zoneedit.patch`. This fixes issues in what appears to be both
request and response formats in ZoneEdit DDNS. Originating from
DD-WRT.
- `103-tzo.patch`. This patch adds support for tzo.com DDNS serivices.
- `110-dnsomatic.patch`. This patch adds support for DNS-O-Matic
<http://dnsomatic.com/>, an OpenDNS service which can act as a
"meta" update to several other DDNS service providers.
- `120-heipv6tb.patch`. This patch adds support for Hurricane Electric's
http://tunnelbroker.net/ DDNS services <https://dns.he.net/>.
- When starting: always use cache file, if it exists, or seed with DNS
lookup
### Fixes
- Fix Debian bug #575549: freedns.afraid.org example in `inadyn(8)` is
incorrect.
[1.97.2][] - 2010-10-30
-----------------------
### Changes
- Replace `gethostbyname()` with `getaddrinfo()` and improve logging at
`connect()`
### Fixes
- Fix missing man pages from install/uninstall targets
- Fix GitHub issue #2: `setsocktopt()` takes pointer to `struct
timeval`, not `int` as argument
[1.97.1][] - 2010-10-19
-----------------------
### Changes
- Add support for properly restarting inadyn on `SIGHUP`
- Remove `INADYN:` prefix in `MODULE_TAG` entirely - messes up syslog
output
[1.97.0][] - 2010-10-18
-----------------------
- Apply patches by Neufbox4 from <http://dev.efixo.net>:
- `100-inadyn-1.96.2.patch`, cache file support
- `100-inadyn-1.96.2.patch`, bind interface support
- `200-inadyn-1.96.2-64bits-fix.patch`
- `300-inadyn-1.96.2-pidfile-and-improve.patch`
- New [README][README.md], COPYING and LICENSE file, remove readme.html
- Refactor and cleanup Makefile (renamed from makefile)
- Add support for `SIGTERM` signal
- Relocate include files to include directory
- Apply patch for multiple accounts from Christian Eyrich
- Remove unused `uint typedef` causing trouble on ARM GCC 4.4.x
- Fix missing `strdup()` of input config file and free any preexisting
- Make sure `TYPE_TCP` enum relly is 0 on all compilers
- Improve error messages using `strerror()` and use `-1` as stale
socket, not `0`
- Fix nasty socket leak
- Merge with inadyn-advanced, <http://sf.net/projects/inadyn-advanced>:
- Add support for 3322.org and easydns.org
- Add support for domain wildcarding, `--wildcard` option NOTE: Domain
wildcarding is now *disabled* by default
- Add support for running an external command hook on IP update, new
`--exec` option
- Add support for datetime in debug messages
- Refactor `DBG_PRINTF((..))` --> `logit(..)`
- Update man page `inadyn(8)` with info on `--bind_interface`,
`--wildcard`, `--exec` options and support for easydns.org
and 3322.org services
- Misc fixes and cleanups
1.96.2 - 2007-03-12
-------------------
### Fixes
- If the Dynamic DNS server responds with an error Inadyn will abort.
This will prevent further retries with wrong dyndns credentials.
- Default port number included in the request, to support the requests
via Proxy, to ports different than 80.
- Simplified main inadyn update loop function. (there was no bug there)
1.96 - 2005-09-09
-----------------
### Changes
- zoneedit.com supported.
- no-ip.com supported.
- support for generic DNS services that support HTTP updates
### Fixes
- Immediate exit in case of --iterations=1 (not after a sleep period)
- Add missing option for specifying the path in the DNS server
1.95 - 2005-07-20
-----------------
### Changes
- UNIX signals supported - inadyn will stop gracefully in case of ALRM,
HUP, INT, ...
- New dynamic DNS service supported - www.zoneedit.com - Not tested!
- Makefile adjusted for Solaris - compilable under Solaris.
- Support for generic DYNDNS service that supports update via HTTP with
basic authentication not yet fully complete. Not known where might be
applicable.
1.90 - 2005-02-24
-----------------
### Changes
- New option `--change_persona uid:gid` - inadyn can switch the user
after launch. Typical feature for daemons
- Addition to `--ip_server_name` feature, now it has another parameter:
the URL to read from the given server name
- Reduced some error messages
- Manual pages updated. (thanks to Shaul Karl)
### Fixes
- Typo fixed (`--ip_server_name` option)
1.86 - 2005-01-30
-----------------
### Changes
- Updated UNIX man pages for inadyn. Even a page for `inadyn.conf`,
Thanks to Shaul Karl!
- Inadyn doesn't print anything (e.g. ver. number) anymore when goes to
background
- New config file parser. Accepts ESCAPE character: `\`
### Fixes
- Corrected check of the return code from `socket()` call
1.85 - 2005-01-10
-----------------
### Changes
- Config file related enhancements:
- Use default location for config file, when no arguments for inadyn
- More *NIX like format for the config file. Thanks to Jerome Benoit
### Fixes
- When 'iterations' option is specified as being '1', inadyn exits
immediately after first update, not after the sleep period as before
1.81 - 2004-11-23
-----------------
### Changes
- No new features, just a better integration with Linux. Reviewed usage
of syslog and fork to background in daemon mode, thanks to Shaul Karl.
1.80 - 2004-10-16
-----------------
### Changes
- Optional output to syslog for Linux, should work for all *nix systems
- Run in background for Linux, should work for all *nix systems
### Fixes
- Minor compile warnings removed
1.70 - 2004-07-05
-----------------
### Changes
- New `--iterations` cmd line option. Now one can run inadyn with only
one iteration. Untested. It was a debug option now made accessible
via cmd line. It should work.
### Fixes
- Custom DNS from dyndns option was not accepted by the cmd line parser.
"Copy-paste" error :-(
1.60 - 2004-06-05
-----------------
### Changes
- On users' request the inadyn can read the options from file.
1.51 - 2004-05-03
-----------------
### Changes
- Support for more aliases for DNS service offered by freedns.afraid.org
1.5 - 2004-05-01
----------------
### Changes
- Support for dynamic DNS service offered by freedns.afraid.org
- Support for http proxy
- GPL copyright notice added.
1.4 - 2004-03-01
----------------
### Changes
- Support for custom DNS and static DNS services offered by dyndns.org
- Support for forced IP update, so the account will not expire even
though the IP never changes
1.35 - 2004-02-04
-----------------
### Fixes
- Multiple aliases are AGAIN supported
- In case of error in IP update the OS signal handler is not installed again.
1.34 - 2003-11-06
-----------------
First port to *NIX - Linux running OK as console app.
### TODO
- Run as a background daemon in UNIX
- Better interface
### Fixes
- Various bug fixes.
1.2 - Jun 2003
--------------
Port to pSOS
**Note:** no DNS support under pSOS -- hard coded IP addresses of the
server.
1.0 - 20013-05-20
-----------------
First stable version.
### Features
- DYNDNS client
- free
- works fine behind a NAT router
- runs fine as a service
- has a nice log file
### TODO
- port to *NIX
- port to pSOS
[UNRELEASED]: https://github.com/troglobit/inadyn/compare/v2.11.0...HEAD
[v2.11.0]: https://github.com/troglobit/inadyn/compare/v2.10.0...v2.11.0
[v2.10.0]: https://github.com/troglobit/inadyn/compare/v2.9.1...v2.10.0
[v2.9.1]: https://github.com/troglobit/inadyn/compare/v2.9.0...v2.9.1
[v2.9.0]: https://github.com/troglobit/inadyn/compare/v2.8.1...v2.9.0
[v2.8.1]: https://github.com/troglobit/inadyn/compare/v2.8...v2.8.1
[v2.8]: https://github.com/troglobit/inadyn/compare/v2.7...v2.8
[v2.7]: https://github.com/troglobit/inadyn/compare/v2.6...v2.7
[v2.6]: https://github.com/troglobit/inadyn/compare/v2.5...v2.6
[v2.5]: https://github.com/troglobit/inadyn/compare/v2.4...v2.5
[v2.4]: https://github.com/troglobit/inadyn/compare/v2.3.1...v2.4
[v2.3.1]: https://github.com/troglobit/inadyn/compare/v2.3...v2.3.1
[v2.3]: https://github.com/troglobit/inadyn/compare/v2.2.1...v2.3
[v2.2.1]: https://github.com/troglobit/inadyn/compare/v2.2...v2.2.1
[v2.2]: https://github.com/troglobit/inadyn/compare/v2.1...v2.2
[v2.1]: https://github.com/troglobit/inadyn/compare/v2.0...v2.1
[v2.0]: https://github.com/troglobit/inadyn/compare/1.99.15...v2.0
[1.99.15]: https://github.com/troglobit/inadyn/compare/1.99.14...1.99.15
[1.99.14]: https://github.com/troglobit/inadyn/compare/1.99.13...1.99.14
[1.99.13]: https://github.com/troglobit/inadyn/compare/1.99.12...1.99.13
[1.99.12]: https://github.com/troglobit/inadyn/compare/1.99.11...1.99.12
[1.99.11]: https://github.com/troglobit/inadyn/compare/1.99.10...1.99.11
[1.99.10]: https://github.com/troglobit/inadyn/compare/1.99.9...1.99.10
[1.99.9]: https://github.com/troglobit/inadyn/compare/1.99.8...1.99.9
[1.99.8]: https://github.com/troglobit/inadyn/compare/1.99.7...1.99.8
[1.99.7]: https://github.com/troglobit/inadyn/compare/1.99.6...1.99.7
[1.99.6]: https://github.com/troglobit/inadyn/compare/1.99.5...1.99.6
[1.99.5]: https://github.com/troglobit/inadyn/compare/1.99.4...1.99.5
[1.99.4]: https://github.com/troglobit/inadyn/compare/1.99.3...1.99.4
[1.99.3]: https://github.com/troglobit/inadyn/compare/1.99.2...1.99.3
[1.99.1]: https://github.com/troglobit/inadyn/compare/1.99.1...1.99.2
[1.99.1]: https://github.com/troglobit/inadyn/compare/1.99.0...1.99.1
[1.99.0]: https://github.com/troglobit/inadyn/compare/1.98.1...1.99.0
[1.98.1]: https://github.com/troglobit/inadyn/compare/1.98.0...1.98.1
[1.98.0]: https://github.com/troglobit/inadyn/compare/1.97.4...1.98.0
[1.97.4]: https://github.com/troglobit/inadyn/compare/1.97.3...1.97.4
[1.97.3]: https://github.com/troglobit/inadyn/compare/1.97.2...1.97.3
[1.97.2]: https://github.com/troglobit/inadyn/compare/1.97.1...1.97.2
[1.97.1]: https://github.com/troglobit/inadyn/compare/1.97.0...1.97.1
[1.97.0]: https://github.com/troglobit/inadyn/compare/1.96.2...1.97.0
[libite]: https://github.com/troglobit/libite
[README.md]: https://github.com/troglobit/inadyn/blob/master/README.md
[libConfuse]: https://github.com/martinh/libconfuse
|