dhcp: look for DUID in both private and global DHCP client lease files

Option to check just in NM private dhcp client specific lease files has
been dropped: either get DUID from specific DHCP plugin or just use the
provided one.

This reverts commit f054c3fcaa.
This commit is contained in:
Francesco Giudici 2018-06-18 16:37:31 +02:00
parent 0a662a3620
commit 08116409f3
3 changed files with 5 additions and 7 deletions

View file

@ -513,7 +513,7 @@ nm_dhcp_client_start_ip4 (NMDhcpClient *self,
}
static GBytes *
get_duid (NMDhcpClient *self, gboolean global)
get_duid (NMDhcpClient *self)
{
return NULL;
}
@ -542,7 +542,7 @@ nm_dhcp_client_start_ip6 (NMDhcpClient *self,
nm_assert (client_id);
if (!enforce_duid)
priv->duid = NM_DHCP_CLIENT_GET_CLASS (self)->get_duid (self, TRUE);
priv->duid = NM_DHCP_CLIENT_GET_CLASS (self)->get_duid (self);
if (!priv->duid)
priv->duid = g_bytes_ref (client_id);

View file

@ -96,15 +96,13 @@ typedef struct {
/**
* get_duid:
* @self: the #NMDhcpClient
* @global: if set to #true, the duid should be searched also in the
* DHCP client's system-wide persistent configuration.
*
* Attempts to find an existing DHCPv6 DUID for this client in the DHCP
* client's persistent configuration. Returned DUID should be the binary
* representation of the DUID. If no DUID is found, %NULL should be
* returned.
*/
GBytes *(*get_duid) (NMDhcpClient *self, gboolean global);
GBytes *(*get_duid) (NMDhcpClient *self);
/* Signals */
void (*state_changed) (NMDhcpClient *self,

View file

@ -582,7 +582,7 @@ state_changed (NMDhcpClient *client,
}
static GBytes *
get_duid (NMDhcpClient *client, gboolean global)
get_duid (NMDhcpClient *client)
{
NMDhcpDhclient *self = NM_DHCP_DHCLIENT (client);
NMDhcpDhclientPrivate *priv = NM_DHCP_DHCLIENT_GET_PRIVATE (self);
@ -607,7 +607,7 @@ get_duid (NMDhcpClient *client, gboolean global)
g_free (leasefile);
}
if (!duid && global) {
if (!duid) {
/* Otherwise read the default machine-wide DUID */
_LOGD ("looking for default DUID in '%s'", priv->def_leasefile);
duid = nm_dhcp_dhclient_read_duid (priv->def_leasefile, &error);