Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 2173219 - iscsi installs fail due to incorrect call: NM.SettingIPConfig.get_dns_search() takes exactly 2 arguments (1 given)
Summary: iscsi installs fail due to incorrect call: NM.SettingIPConfig.get_dns_search(...
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: anaconda
Version: rawhide
Hardware: All
OS: Linux
unspecified
high
Target Milestone: ---
Assignee: Vladimír Slávik
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: openqa
: 2176226 (view as bug list)
Depends On:
Blocks: F39FinalBlocker
TreeView+ depends on / blocked
 
Reported: 2023-02-24 20:15 UTC by Adam Williamson
Modified: 2023-04-03 14:26 UTC (History)
5 users (show)

Fixed In Version: anaconda-39.6-1
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2023-04-03 14:26:07 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Adam Williamson 2023-02-24 20:15:59 UTC
Since ff8e1c37a5eb86b9cc45fb2b68c8fd33b79de64c landed, iSCSI installs fail. A crash happens near the end of the install process. The logs show this (not including all the context as the ultimate error is clear):

  File "/usr/lib/python3.11/site-packages/dasbus/client/handler.py", line 483, in _get_method_reply
    return self._handle_method_error(error)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "/usr/lib/python3.11/site-packages/dasbus/client/handler.py", line 509, in _handle_method_error
    raise exception from None

pyanaconda.modules.common.errors.general.AnacondaError: NM.SettingIPConfig.get_dns_search() takes exactly 2 arguments (1 given)

Per a random copy of the API docs I found at https://lazka.github.io/pgi-docs/NM-1.0/classes/SettingIPConfig.html - I can't seem to find an 'official' copy - that function requires a parameter: "idx (int) – index number of the DNS search domain to return", but we're calling it just as `get_dns_search()`.

Comment 1 Adam Williamson 2023-02-24 20:17:39 UTC
Proposing as an F39 Final blocker: "The installer must be able to detect (if possible) and install to supported network-attached storage devices", with footnote "Supported network-attached storage types include iSCSI, Fibre Channel and Fibre Channel over Ethernet (FCoE)."

Comment 2 Adam Williamson 2023-03-03 18:51:07 UTC
The underlying C function here is https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/libnm-core-impl/nm-setting-ip-config.c#L4242 . It has behaved the same way since it was added in 2014:

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/commit/3f30c6f1c2f

and the similar functions it replaced behaved the same too (they both required an index to be specified).

There is a `get_num_dns_searches()`, so we should probably call that first to find out how many search domains there are, then retrieve them all. Right now we're expecting `get_dns_search()` to return a comma-separated list, but it...doesn't. It never has.

Comment 3 Adam Williamson 2023-03-03 18:57:46 UTC
untested patch:

diff --git a/pyanaconda/modules/network/nm_client.py b/pyanaconda/modules/network/nm_client.py
index 455caa5a2e..4e4c351b40 100644
--- a/pyanaconda/modules/network/nm_client.py
+++ b/pyanaconda/modules/network/nm_client.py
@@ -1601,9 +1601,9 @@ def _update_ip4_config_kickstart_network_data(connection, network_data):
 
     # dns
     network_data.ipv4_ignore_auto_dns = s_ip4_config.get_ignore_auto_dns()
-    ip4_dns_search = s_ip4_config.get_dns_search()
-    if ip4_dns_search:
-        network_data.ipv4_dns_search = ip4_dns_search
+    domains = [s_ip4_config.get_dns_search(idx) for idx in range(0, s_ip4_config.get_num_dns_searches())]
+    if domains:
+        network_data.ipv4_dns_search = ",".join(domains)
 
 
 def _update_ip6_config_kickstart_network_data(connection, network_data):
@@ -1634,9 +1634,9 @@ def _update_ip6_config_kickstart_network_data(connection, network_data):
 
     # dns
     network_data.ipv6_ignore_auto_dns = s_ip6_config.get_ignore_auto_dns()
-    ip6_dns_search = s_ip6_config.get_dns_search()
-    if ip6_dns_search:
-        network_data.ipv6_dns_search = ip6_dns_search
+    domains = [s_ip6_config.get_dns_search(idx) for idx in range(0, s_ip6_config.get_num_dns_searches())]
+    if domains:
+        network_data.ipv6_dns_search = ",".join(domains)
 
 
 def _update_vlan_kickstart_network_data(nm_client, connection, network_data):

Comment 4 Adam Williamson 2023-03-04 02:06:52 UTC
unfortunately I can't test the patch very easily in openQA because the test uses static networking and usually sets it up in the anaconda GUI, I'd have to remember the params to set it up on the cmdline so it could grab the updates.img...

Comment 5 Vladimír Slávik 2023-03-06 18:14:30 UTC
Oops, sorry. But it's as you say - there are no good docs for this.

https://github.com/rhinstaller/anaconda/pull/4594

Comment 6 Vladimír Slávik 2023-03-17 17:31:14 UTC
With https://github.com/rhinstaller/anaconda/pull/4614 as well, all should be fixed.

...or rather, I believe so.

Comment 7 Adam Williamson 2023-03-17 18:15:31 UTC
Awesome. Once we get a Rawhide compose with the fixes in, openQA will let us know.

Comment 8 Vladimír Slávik 2023-03-21 14:07:06 UTC
*** Bug 2176226 has been marked as a duplicate of this bug. ***


Note You need to log in before you can comment on or make changes to this bug.