mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-27 23:20:31 +01:00
We use clang-format for automatic formatting of our source files. Since clang-format is actively maintained software, the actual formatting depends on the used version of clang-format. That is unfortunate and painful, but really unavoidable unless clang-format would be strictly bug-compatible. So the version that we must use is from the current Fedora release, which is also tested by our gitlab-ci. Previously, we were using Fedora 34 with clang-tools-extra-12.0.1-1.fc34.x86_64. As Fedora 35 comes along, we need to update our formatting as Fedora 35 comes with version "13.0.0~rc1-1.fc35". An alternative would be to freeze on version 12, but that has different problems (like, it's cumbersome to rebuild clang 12 on Fedora 35 and it would be cumbersome for our developers which are on Fedora 35 to use a clang that they cannot easily install). The (differently painful) solution is to reformat from time to time, as we switch to a new Fedora (and thus clang) version. Usually we would expect that such a reformatting brings minor changes. But this time, the changes are huge. That is mentioned in the release notes [1] as Makes PointerAligment: Right working with AlignConsecutiveDeclarations. (Fixes https://llvm.org/PR27353) [1] https://releases.llvm.org/13.0.0/tools/clang/docs/ReleaseNotes.html#clang-format
293 lines
9.6 KiB
C
293 lines
9.6 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2020 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "libnm-core-impl/nm-default-libnm-core.h"
|
|
|
|
#include "nm-setting-hostname.h"
|
|
|
|
#include "nm-setting-private.h"
|
|
#include "nm-utils-private.h"
|
|
|
|
/**
|
|
* SECTION:nm-setting-hostname
|
|
* @short_description: Contains properties related to the hostname
|
|
* @include: nm-setting-hostname.h
|
|
**/
|
|
|
|
/*****************************************************************************/
|
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE(NMSettingHostname,
|
|
PROP_PRIORITY,
|
|
PROP_FROM_DHCP,
|
|
PROP_FROM_DNS_LOOKUP,
|
|
PROP_ONLY_FROM_DEFAULT, );
|
|
|
|
/**
|
|
* NMSettingHostname:
|
|
*
|
|
* Hostname settings
|
|
*
|
|
* Since: 1.30
|
|
*/
|
|
struct _NMSettingHostname {
|
|
NMSetting parent;
|
|
int priority;
|
|
int from_dhcp;
|
|
int from_dns_lookup;
|
|
int only_from_default;
|
|
};
|
|
|
|
struct _NMSettingHostnameClass {
|
|
NMSettingClass parent;
|
|
};
|
|
|
|
G_DEFINE_TYPE(NMSettingHostname, nm_setting_hostname, NM_TYPE_SETTING)
|
|
|
|
/**
|
|
* nm_setting_hostname_get_priority:
|
|
* @setting: the #NMSettingHostname
|
|
*
|
|
* Returns the value contained in the #NMSettingHostname:priority
|
|
* property.
|
|
*
|
|
* Returns: the 'priority' property value
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
int
|
|
nm_setting_hostname_get_priority(NMSettingHostname *setting)
|
|
{
|
|
g_return_val_if_fail(NM_IS_SETTING_HOSTNAME(setting), 0);
|
|
|
|
return setting->priority;
|
|
}
|
|
|
|
/**
|
|
* nm_setting_hostname_get_from_dhcp:
|
|
* @setting: the #NMSettingHostname
|
|
*
|
|
* Returns the value contained in the #NMSettingHostname:from-dhcp
|
|
* property.
|
|
*
|
|
* Returns: the 'from-dhcp' property value
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
NMTernary
|
|
nm_setting_hostname_get_from_dhcp(NMSettingHostname *setting)
|
|
{
|
|
g_return_val_if_fail(NM_IS_SETTING_HOSTNAME(setting), NM_TERNARY_DEFAULT);
|
|
|
|
return setting->from_dhcp;
|
|
}
|
|
|
|
/**
|
|
* nm_setting_hostname_get_from_dns_lookup:
|
|
* @setting: the #NMSettingHostname
|
|
*
|
|
* Returns the value contained in the #NMSettingHostname:from-dns-lookup
|
|
* property.
|
|
*
|
|
* Returns: the 'from-dns-lookup' property value
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
NMTernary
|
|
nm_setting_hostname_get_from_dns_lookup(NMSettingHostname *setting)
|
|
{
|
|
g_return_val_if_fail(NM_IS_SETTING_HOSTNAME(setting), NM_TERNARY_DEFAULT);
|
|
|
|
return setting->from_dns_lookup;
|
|
}
|
|
|
|
/**
|
|
* nm_setting_hostname_get_only_from_default:
|
|
* @setting: the #NMSettingHostname
|
|
*
|
|
* Returns the value contained in the #NMSettingHostname:only-from-default
|
|
* property.
|
|
*
|
|
* Returns: the 'only-from-default' property value
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
NMTernary
|
|
nm_setting_hostname_get_only_from_default(NMSettingHostname *setting)
|
|
{
|
|
g_return_val_if_fail(NM_IS_SETTING_HOSTNAME(setting), NM_TERNARY_DEFAULT);
|
|
|
|
return setting->only_from_default;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
nm_setting_hostname_init(NMSettingHostname *setting)
|
|
{}
|
|
|
|
/**
|
|
* nm_setting_hostname_new:
|
|
*
|
|
* Creates a new #NMSettingHostname object with default values.
|
|
*
|
|
* Returns: (transfer full): the new empty #NMSettingHostname object
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
NMSetting *
|
|
nm_setting_hostname_new(void)
|
|
{
|
|
return g_object_new(NM_TYPE_SETTING_HOSTNAME, NULL);
|
|
}
|
|
|
|
static void
|
|
nm_setting_hostname_class_init(NMSettingHostnameClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS(klass);
|
|
NMSettingClass *setting_class = NM_SETTING_CLASS(klass);
|
|
GArray *properties_override = _nm_sett_info_property_override_create_array();
|
|
|
|
object_class->get_property = _nm_setting_property_get_property_direct;
|
|
object_class->set_property = _nm_setting_property_set_property_direct;
|
|
|
|
/**
|
|
* NMSettingHostname:priority
|
|
*
|
|
* The relative priority of this connection to determine the
|
|
* system hostname. A lower numerical value is better (higher
|
|
* priority). A connection with higher priority is considered
|
|
* before connections with lower priority.
|
|
*
|
|
* If the value is zero, it can be overridden by a global value
|
|
* from NetworkManager configuration. If the property doesn't have
|
|
* a value in the global configuration, the value is assumed to be
|
|
* 100.
|
|
*
|
|
* Negative values have the special effect of excluding other
|
|
* connections with a greater numerical priority value; so in
|
|
* presence of at least one negative priority, only connections
|
|
* with the lowest priority value will be used to determine the
|
|
* hostname.
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
/* ---ifcfg-rh---
|
|
* property: priority
|
|
* variable: HOSTNAME_PRIORITY(+)
|
|
* default: missing variable means global value or 100
|
|
* description: hostname priority
|
|
* example: HOSTNAME_PRIORITY=50
|
|
* ---end---
|
|
*/
|
|
_nm_setting_property_define_direct_int32(properties_override,
|
|
obj_properties,
|
|
NM_SETTING_HOSTNAME_PRIORITY,
|
|
PROP_PRIORITY,
|
|
G_MININT32,
|
|
G_MAXINT32,
|
|
0,
|
|
NM_SETTING_PARAM_NONE,
|
|
NMSettingHostname,
|
|
priority);
|
|
|
|
/**
|
|
* NMSettingHostname:from-dhcp
|
|
*
|
|
* Whether the system hostname can be determined from DHCP on
|
|
* this connection.
|
|
*
|
|
* When set to %NM_TERNARY_DEFAULT, the value from global configuration
|
|
* is used. If the property doesn't have a value in the global
|
|
* configuration, NetworkManager assumes the value to be %NM_TERNARY_TRUE.
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
/* ---ifcfg-rh---
|
|
* property: from-dhcp
|
|
* variable: HOSTNAME_FROM_DHCP(+)
|
|
* default: missing variable means global default or 1
|
|
* description: whether the system hostname can be determined from DHCP
|
|
* example: HOSTNAME_FROM_DHCP=0,1
|
|
* ---end---
|
|
*/
|
|
_nm_setting_property_define_direct_ternary_enum(properties_override,
|
|
obj_properties,
|
|
NM_SETTING_HOSTNAME_FROM_DHCP,
|
|
PROP_FROM_DHCP,
|
|
NM_SETTING_PARAM_FUZZY_IGNORE,
|
|
NMSettingHostname,
|
|
from_dhcp);
|
|
|
|
/**
|
|
* NMSettingHostname:from-dns-lookup
|
|
*
|
|
* Whether the system hostname can be determined from reverse
|
|
* DNS lookup of addresses on this device.
|
|
*
|
|
* When set to %NM_TERNARY_DEFAULT, the value from global configuration
|
|
* is used. If the property doesn't have a value in the global
|
|
* configuration, NetworkManager assumes the value to be %NM_TERNARY_TRUE.
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
/* ---ifcfg-rh---
|
|
* property: from-dhcp
|
|
* variable: HOSTNAME_FROM_DNS_LOOKUP(+)
|
|
* default: missing variable means global default or 1
|
|
* description: whether the system hostname can be determined from reverse
|
|
* DNS lookup
|
|
* example: HOSTNAME_FROM_DNS_LOOKUP=0,1
|
|
* ---end---
|
|
*/
|
|
_nm_setting_property_define_direct_ternary_enum(properties_override,
|
|
obj_properties,
|
|
NM_SETTING_HOSTNAME_FROM_DNS_LOOKUP,
|
|
PROP_FROM_DNS_LOOKUP,
|
|
NM_SETTING_PARAM_FUZZY_IGNORE,
|
|
NMSettingHostname,
|
|
from_dns_lookup);
|
|
|
|
/**
|
|
* NMSettingHostname:only-from-default
|
|
*
|
|
* If set to %NM_TERNARY_TRUE, NetworkManager attempts to get
|
|
* the hostname via DHCPv4/DHCPv6 or reverse DNS lookup on this
|
|
* device only when the device has the default route for the given
|
|
* address family (IPv4/IPv6).
|
|
*
|
|
* If set to %NM_TERNARY_FALSE, the hostname can be set from this
|
|
* device even if it doesn't have the default route.
|
|
*
|
|
* When set to %NM_TERNARY_DEFAULT, the value from global configuration
|
|
* is used. If the property doesn't have a value in the global
|
|
* configuration, NetworkManager assumes the value to be %NM_TERNARY_FALSE.
|
|
*
|
|
* Since: 1.30
|
|
**/
|
|
/* ---ifcfg-rh---
|
|
* property: only-best-device
|
|
* variable: HOSTNAME_ONLY_FROM_DEFAULT(+)
|
|
* default: missing variable means global default or 1
|
|
* description: whether the hostname can be determined only from
|
|
* devices with the default route
|
|
* example: HOSTNAME_ONLY_FROM_DEFAULT=0,1
|
|
* ---end---
|
|
*/
|
|
_nm_setting_property_define_direct_ternary_enum(properties_override,
|
|
obj_properties,
|
|
NM_SETTING_HOSTNAME_ONLY_FROM_DEFAULT,
|
|
PROP_ONLY_FROM_DEFAULT,
|
|
NM_SETTING_PARAM_FUZZY_IGNORE,
|
|
NMSettingHostname,
|
|
only_from_default);
|
|
|
|
g_object_class_install_properties(object_class, _PROPERTY_ENUMS_LAST, obj_properties);
|
|
|
|
_nm_setting_class_commit(setting_class,
|
|
NM_META_SETTING_TYPE_HOSTNAME,
|
|
NULL,
|
|
properties_override,
|
|
0);
|
|
}
|