From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] ddns: Update to 014. Date: Mon, 12 Jul 2021 18:47:47 +0200 Message-ID: <20210712164747.3393-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2538201518489096710==" List-Id: --===============2538201518489096710== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is a major update to the latest available version of ddns. Remove patches which are part of the upstream release. Signed-off-by: Stefan Schantl --- lfs/ddns | 11 +- ...13-add-option-to-list-token-provider.patch | 292 ------------------ src/patches/ddns-013-duckdns-new-api.patch | 83 ----- src/patches/ddns-013-dyfi-use-https.patch | 22 -- ...13-fix-argparse-list-token-providers.patch | 23 -- .../ddns-013-proper-encode-string.patch | 24 -- 6 files changed, 3 insertions(+), 452 deletions(-) delete mode 100644 src/patches/ddns-013-add-option-to-list-token-provider.pa= tch delete mode 100644 src/patches/ddns-013-duckdns-new-api.patch delete mode 100644 src/patches/ddns-013-dyfi-use-https.patch delete mode 100644 src/patches/ddns-013-fix-argparse-list-token-providers.pa= tch delete mode 100644 src/patches/ddns-013-proper-encode-string.patch diff --git a/lfs/ddns b/lfs/ddns index 538cf7256..b1d0f2dbb 100644 --- a/lfs/ddns +++ b/lfs/ddns @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 013 +VER =3D 014 =20 THISAPP =3D ddns-$(VER) DL_FILE =3D $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D a988a808a08c810c41964ac6b0febbeb +$(DL_FILE)_MD5 =3D f10f7dfb29bd159db10e7a52c0a91d72 =20 install : $(TARGET) =20 @@ -72,12 +72,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) =20 # Apply upstream patches. - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-dyfi-use-htt= ps.patch - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-ddnss-fix-un= handled-exeption-on-update-patch - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-duckdns-new-= api.patch - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-add-option-t= o-list-token-provider.patch - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-proper-encod= e-string.patch - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-013-fix-argparse= -list-token-providers.patch + # No upstream patches at the moment. =20 cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh cd $(DIR_APP) && ./configure \ diff --git a/src/patches/ddns-013-add-option-to-list-token-provider.patch b/s= rc/patches/ddns-013-add-option-to-list-token-provider.patch deleted file mode 100644 index 7603422a2..000000000 --- a/src/patches/ddns-013-add-option-to-list-token-provider.patch +++ /dev/null @@ -1,292 +0,0 @@ -commit 287b2bfe7bf5e0639da9227a8c7893ce40d298ae -Author: Stefan Schantl -Date: Wed Dec 2 20:31:19 2020 +0100 - - Add option to list provider with token support. - =20 - This option can be used to get a list of all known provider which support - a token based authentication method. - =20 - In order to provide this feature the provider details has been extended - to contain the information if a provider supports this authentication - method or not. - =20 - Signed-off-by: Stefan Schantl - -diff --git a/ddns.in b/ddns.in -old mode 100644 -new mode 100755 -index 0e377e7..538e4b0 ---- a/ddns.in -+++ b/ddns.in -@@ -49,6 +49,10 @@ def main(): - p_list_providers =3D subparsers.add_parser("list-providers", - help=3D_("List all available providers")) -=20 -+ # list-token-provider -+ p_list_token_provider =3D subparsers.add_parser("list-token-provider", -+ help=3D_("List all providers which supports authentication via token")) -+ - # update - p_update =3D subparsers.add_parser("update", help=3D_("Update DNS record")) - p_update.add_argument("hostname") -@@ -85,6 +89,10 @@ def main(): - provider_names =3D d.get_provider_names() - print("\n".join(provider_names)) -=20 -+ elif args.subparsers_name =3D=3D "list-token-providers": -+ token_provider =3D d.get_provider_with_token_support() -+ print("\n".join(token_provider)) -+ - elif args.subparsers_name =3D=3D "update": - d.updateone(hostname=3Dargs.hostname, force=3Dargs.force) -=20 -diff --git a/src/ddns/__init__.py b/src/ddns/__init__.py -index 3e43fa7..ca232bf 100644 ---- a/src/ddns/__init__.py -+++ b/src/ddns/__init__.py -@@ -86,6 +86,20 @@ class DDNSCore(object): - """ - return sorted(self.providers.keys()) -=20 -+ def get_provider_with_token_support(self): -+ """ -+ Returns a list with names of all registered providers -+ which support token based authtentication. -+ """ -+ -+ token_provider =3D [] -+ -+ for handle, provider in sorted(self.providers.items()): -+ if provider.supports_token_auth is True: -+ token_provider.append(handle) -+ -+ return sorted(token_provider) -+ - def load_configuration(self, filename): - logger.debug(_("Loading configuration file %s") % filename) -=20 -diff --git a/src/ddns/providers.py b/src/ddns/providers.py -index a1ca3f3..b0066d5 100644 ---- a/src/ddns/providers.py -+++ b/src/ddns/providers.py -@@ -73,6 +73,10 @@ class DDNSProvider(object): - # Required to remove AAAA records if IPv6 is absent again. - can_remove_records =3D True -=20 -+ # True if the provider supports authentication via a random -+ # generated token instead of username and password. -+ supports_token_auth =3D True -+ - @staticmethod - def supported(): - """ -@@ -352,6 +356,10 @@ class DDNSProtocolDynDNS2(object): - # The DynDNS protocol version 2 does not allow to remove records - can_remove_records =3D False -=20 -+ # The DynDNS protocol version 2 only supports authentication via -+ # username and password. -+ supports_token_auth =3D False -+ - def prepare_request_data(self, proto): - data =3D { - "hostname" : self.hostname, -@@ -440,6 +448,7 @@ class DDNSProviderAllInkl(DDNSProvider): -=20 - url =3D "http://dyndns.kasserver.com" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update(self): - # There is no additional data required so we directly can -@@ -464,6 +473,8 @@ class DDNSProviderBindNsupdate(DDNSProvider): -=20 - DEFAULT_TTL =3D 60 -=20 -+ supports_token_auth =3D False -+ - @staticmethod - def supported(): - # Search if the nsupdate utility is available -@@ -550,6 +561,7 @@ class DDNSProviderChangeIP(DDNSProvider): -=20 - url =3D "https://nic.changeip.com/nic/update" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -616,6 +628,7 @@ class DDNSProviderDDNSS(DDNSProvider): -=20 - url =3D "http://www.ddnss.de/upd.php" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -678,6 +691,7 @@ class DDNSProviderDHS(DDNSProvider): -=20 - url =3D "http://members.dhs.org/nic/hosts" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -710,6 +724,7 @@ class DDNSProviderDNSpark(DDNSProvider): -=20 - url =3D "https://control.dnspark.com/api/dynamic/update.php" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -758,6 +773,7 @@ class DDNSProviderDtDNS(DDNSProvider): -=20 - url =3D "https://www.dtdns.com/api/autodns.cfm" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -813,6 +829,7 @@ class DDNSProviderDuckDNS(DDNSProvider): -=20 - url =3D "https://www.duckdns.org/update" - can_remove_records =3D False -+ supports_token_auth =3D True -=20 - def update(self): - # Raise an error if no auth details are given. -@@ -914,6 +931,7 @@ class DDNSProviderDynUp(DDNSProvider): -=20 - url =3D "https://dynup.de/dyn.php" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -979,6 +997,8 @@ class DDNSProviderEasyDNS(DDNSProvider): -=20 - url =3D "http://api.cp.easydns.com/dyn/tomato.php" -=20 -+ supports_token_auth =3D False -+ - def update_protocol(self, proto): - data =3D { - "myip" : self.get_address(proto, "-"), -@@ -1032,6 +1052,7 @@ class DDNSProviderDynsNet(DDNSProvider): - website =3D "http://www.dyns.net/" - protocols =3D ("ipv4",) - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - # There is very detailed informatio about how to send the update request a= nd - # the possible response codes. (Currently we are using the v1.1 proto) -@@ -1083,6 +1104,7 @@ class DDNSProviderEnomCom(DDNSResponseParserXML, DDNSP= rovider): -=20 - url =3D "https://dynamic.name-services.com/interface.asp" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -1125,6 +1147,7 @@ class DDNSProviderEntryDNS(DDNSProvider): - # here: https://entrydns.net/help - url =3D "https://entrydns.net/records/modify" - can_remove_records =3D False -+ supports_token_auth =3D True -=20 - def update_protocol(self, proto): - data =3D { -@@ -1165,6 +1188,7 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider): - # page. All used values have been collected by testing. - url =3D "https://freedns.afraid.org/dynamic/update.php" - can_remove_records =3D False -+ supports_token_auth =3D True -=20 - def update_protocol(self, proto): - data =3D { -@@ -1246,6 +1270,7 @@ class DDNSProviderKEYSYSTEMS(DDNSProvider): -=20 - url =3D "https://dynamicdns.key-systems.net/update.php" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - address =3D self.get_address(proto) -@@ -1297,6 +1322,8 @@ class DDNSProviderLightningWireLabs(DDNSProvider): - # Information about the format of the HTTPS request is to be found - # https://dns.lightningwirelabs.com/knowledge-base/api/ddns -=20 -+ supports_token_auth =3D True -+ - url =3D "https://dns.lightningwirelabs.com/update" -=20 - def update(self): -@@ -1365,6 +1392,7 @@ class DDNSProviderNamecheap(DDNSResponseParserXML, DDN= SProvider): -=20 - url =3D "https://dynamicdns.park-your-domain.com/update" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - # Namecheap requires the hostname splitted into a host and domain part. -@@ -1458,6 +1486,8 @@ class DDNSProviderNsupdateINFO(DDNSProtocolDynDNS2, DD= NSProvider): - # has not been implemented here, yet. - can_remove_records =3D False -=20 -+ supports_token_auth =3D True -+ - # After a failed update, there will be no retries - # https://bugzilla.ipfire.org/show_bug.cgi?id=3D10603 - holdoff_failure_days =3D None -@@ -1534,6 +1564,7 @@ class DDNSProviderRegfish(DDNSProvider): -=20 - url =3D "https://dyndns.regfish.de/" - can_remove_records =3D False -+ supports_token_auth =3D True -=20 - def update(self): - data =3D { -@@ -1630,6 +1661,7 @@ class DDNSProviderServercow(DDNSProvider): -=20 - url =3D "https://www.servercow.de/dnsupdate/update.php" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -1671,6 +1703,8 @@ class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvi= der): -=20 - url =3D "https://update.spdyn.de/nic/update" -=20 -+ supports_token_auth =3D True -+ - @property - def username(self): - return self.get("username") or self.hostname -@@ -1774,6 +1808,8 @@ class DDNSProviderZoneedit(DDNSProvider): - website =3D "http://www.zoneedit.com" - protocols =3D ("ipv4",) -=20 -+ supports_token_auth =3D False -+ - # Detailed information about the request and the response codes can be - # obtained here: - # http://www.zoneedit.com/doc/api/other.html -@@ -1821,6 +1857,7 @@ class DDNSProviderDNSmadeEasy(DDNSProvider): -=20 - url =3D "https://cp.dnsmadeeasy.com/servlet/updateip?" - can_remove_records =3D False -+ supports_token_auth =3D False -=20 - def update_protocol(self, proto): - data =3D { -@@ -1871,6 +1908,7 @@ class DDNSProviderZZZZ(DDNSProvider): -=20 - url =3D "https://zzzz.io/api/v1/update" - can_remove_records =3D False -+ supports_token_auth =3D True -=20 - def update_protocol(self, proto): - data =3D { diff --git a/src/patches/ddns-013-duckdns-new-api.patch b/src/patches/ddns-01= 3-duckdns-new-api.patch deleted file mode 100644 index a671bf917..000000000 --- a/src/patches/ddns-013-duckdns-new-api.patch +++ /dev/null @@ -1,83 +0,0 @@ -commit ebdb37245e2033b065cce5a19597be4ef1c8875c -Author: Carl Mascott -Date: Wed Dec 2 11:39:20 2020 +0100 - - DuckDNS: Update to use new API. - =20 - The new API supports IPv6 and a token based auth. - =20 - Reference #12415. - =20 - Signed-off-by: Stefan Schantl - -diff --git a/src/ddns/providers.py b/src/ddns/providers.py -index 46d8a67..a1ca3f3 100644 ---- a/src/ddns/providers.py -+++ b/src/ddns/providers.py -@@ -802,16 +802,62 @@ class DDNSProviderDtDNS(DDNSProvider): - raise DDNSUpdateError -=20 -=20 --class DDNSProviderDuckDNS(DDNSProtocolDynDNS2, DDNSProvider): -+class DDNSProviderDuckDNS(DDNSProvider): - handle =3D "duckdns.org" - name =3D "Duck DNS" - website =3D "http://www.duckdns.org/" -- protocols =3D ("ipv4",) -+ protocols =3D ("ipv6", "ipv4",) -=20 - # Information about the format of the request is to be found -- # https://www.duckdns.org/install.jsp -+ # https://www.duckdns.org/spec.jsp -+ -+ url =3D "https://www.duckdns.org/update" -+ can_remove_records =3D False -+ -+ def update(self): -+ # Raise an error if no auth details are given. -+ if not self.token: -+ raise DDNSConfigurationError -+ -+ data =3D { -+ "domains" : self.hostname, -+ "token" : self.token, -+ } -+ -+ # Check if we update an IPv4 address. -+ address4 =3D self.get_address("ipv4") -+ if address4: -+ data["ip"] =3D address4 -=20 -- url =3D "https://www.duckdns.org/nic/update" -+ # Check if we update an IPv6 address. -+ address6 =3D self.get_address("ipv6") -+ if address6: -+ data["ipv6"] =3D address6 -+ -+ # Raise an error if no address is given. -+ if "ip" not in data and "ipv6" not in data: -+ raise DDNSConfigurationError -+ -+ # Send update to the server. -+ response =3D self.send_request(self.url, data=3Ddata) -+ -+ # Get the full response message. -+ output =3D response.read().decode() -+ -+ # Remove all leading and trailing whitespace. -+ output =3D output.strip() -+ -+ # Handle success messages. -+ if output =3D=3D "OK": -+ return -+ -+ # The provider does not give detailed information -+ # if the update fails. Only a "KO" will be sent back. -+ if output =3D=3D "KO": -+ raise DDNSUpdateError -+ -+ # If we got here, some other update error happened. -+ raise DDNSUpdateError -=20 -=20 - class DDNSProviderDyFi(DDNSProtocolDynDNS2, DDNSProvider): diff --git a/src/patches/ddns-013-dyfi-use-https.patch b/src/patches/ddns-013= -dyfi-use-https.patch deleted file mode 100644 index f131c5b24..000000000 --- a/src/patches/ddns-013-dyfi-use-https.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit ce6e977f0ace7fe468411270ad07f1824a3aeaec -Author: Mauno Pirnes -Date: Fri Feb 7 12:25:00 2020 +0100 - - dy.fi: Use HTTPS to perform updates. - =20 - Signed-off-by: Mauno Pirnes - Signed-off-by: Stefan Schantl - -diff --git a/src/ddns/providers.py b/src/ddns/providers.py -index dcdc5da..f1fed22 100644 ---- a/src/ddns/providers.py -+++ b/src/ddns/providers.py -@@ -826,7 +826,7 @@ class DDNSProviderDyFi(DDNSProtocolDynDNS2, DDNSProvider= ): - # https://www.dy.fi/page/clients?lang=3Den - # https://www.dy.fi/page/specification?lang=3Den -=20 -- url =3D "http://www.dy.fi/nic/update" -+ url =3D "https://www.dy.fi/nic/update" -=20 - # Please only send automatic updates when your IP address changes, - # or once per 5 to 6 days to refresh the address mapping (they will diff --git a/src/patches/ddns-013-fix-argparse-list-token-providers.patch b/s= rc/patches/ddns-013-fix-argparse-list-token-providers.patch deleted file mode 100644 index 065dbb666..000000000 --- a/src/patches/ddns-013-fix-argparse-list-token-providers.patch +++ /dev/null @@ -1,23 +0,0 @@ -commit 5e075681008174839a47cae698ae459c0ea3a30a -Author: Stefan Schantl -Date: Wed May 12 19:59:01 2021 +0200 - - Fix argsparse string for listing token providers. - =20 - Signed-off-by: Stefan Schantl - -diff --git a/ddns.in b/ddns.in -index 538e4b0..20edd28 100755 ---- a/ddns.in -+++ b/ddns.in -@@ -49,8 +49,8 @@ def main(): - p_list_providers =3D subparsers.add_parser("list-providers", - help=3D_("List all available providers")) -=20 -- # list-token-provider -- p_list_token_provider =3D subparsers.add_parser("list-token-provider", -+ # list-token-providers -+ p_list_token_provider =3D subparsers.add_parser("list-token-providers", - help=3D_("List all providers which supports authentication via token")) -=20 - # update diff --git a/src/patches/ddns-013-proper-encode-string.patch b/src/patches/dd= ns-013-proper-encode-string.patch deleted file mode 100644 index b101913e8..000000000 --- a/src/patches/ddns-013-proper-encode-string.patch +++ /dev/null @@ -1,24 +0,0 @@ -commit 27aea61ba3c8e561c4a5921aeb0ea0986d4d234c -Author: Johannes Schwietzke -Date: Tue Dec 29 12:07:19 2020 +0100 - - providers.py: Proper encode string. - =20 - Python 3 memoryview requires an encoded string. - =20 - Signed-off-by: Johannes Schwietzke - Signed-off-by: Stefan Schantl - -diff --git a/src/ddns/providers.py b/src/ddns/providers.py -index b0066d5..56e6620 100644 ---- a/src/ddns/providers.py -+++ b/src/ddns/providers.py -@@ -547,7 +547,7 @@ class DDNSProviderBindNsupdate(DDNSProvider): -=20 - logger.debug(" %s" % line) -=20 -- return "\n".join(scriptlet) -+ return "\n".join(scriptlet).encode() -=20 -=20 - class DDNSProviderChangeIP(DDNSProvider): --=20 2.30.2 --===============2538201518489096710==--